Skip to content

Commit 36cdc44

Browse files
committed
netcore test version upgrade and file operations separate
1 parent 24bc0f7 commit 36cdc44

25 files changed

+125
-27
lines changed

src/Adapter/PlatformServices.NetCore/PlatformServices.NetCore.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<Compile Include="..\PlatformServices.Shared\netstandard1.0\MarshalByRefObject.cs" Link="MarshalByRefObject.cs" />
2020
<Compile Include="..\PlatformServices.Shared\netstandard1.0\ns10RecursiveDirectoryPath.cs" Link="ns10RecursiveDirectoryPath.cs" />
2121
<Compile Include="..\PlatformServices.Shared\netstandard1.0\SerializableAttribute.cs" Link="SerializableAttribute.cs" />
22-
<Compile Include="..\PlatformServices.Shared\netstandard1.0\Services\ns10FileOperations.cs" Link="Services\ns10FileOperations.cs" />
22+
<Compile Include="Services\NetCoreFileOperations.cs" />
2323
<Compile Include="..\PlatformServices.Shared\netstandard1.0\Services\ns10DiaSessionOperations.cs" Link="Services\ns10DiaSessionOperations.cs" />
2424
<Compile Include="..\PlatformServices.Shared\netstandard1.0\Services\ns10MSTestSettingsProvider.cs" Link="Services\ns10MSTestSettingsProvider.cs" />
2525
<Compile Include="..\PlatformServices.Shared\netstandard1.0\Services\ns10ReflectionOperations.cs" Link="Services\ns10ReflectionOperations.cs" />
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
namespace Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices
5+
{
6+
using System;
7+
using System.Collections.Generic;
8+
using System.IO;
9+
using System.Reflection;
10+
using Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface;
11+
12+
#pragma warning disable SA1649 // SA1649FileNameMustMatchTypeName
13+
14+
public class FileOperations : IFileOperations
15+
{
16+
/// <summary>
17+
/// Loads an assembly.
18+
/// </summary>
19+
/// <param name="assemblyName"> The assembly name. </param>
20+
/// <param name="isReflectionOnly">Indicates whether this should be a reflection only load.</param>
21+
/// <returns> The <see cref="Assembly"/>. </returns>
22+
/// <exception cref="NotImplementedException"> This is currently not implemented. </exception>
23+
public Assembly LoadAssembly(string assemblyName, bool isReflectionOnly)
24+
{
25+
return Assembly.LoadFrom(assemblyName);
26+
}
27+
28+
/// <summary>
29+
/// Gets the path to the .DLL of the assembly.
30+
/// </summary>
31+
/// <param name="assembly">The assembly.</param>
32+
/// <returns>Path to the .DLL of the assembly.</returns>
33+
public string GetAssemblyPath(Assembly assembly)
34+
{
35+
#if NETSTANDARD2_0
36+
return assembly.Location;
37+
#else
38+
return null;
39+
#endif
40+
}
41+
42+
/// <summary>
43+
/// Verifies if file exists in context.
44+
/// </summary>
45+
/// <param name="assemblyFileName"> The assembly file name. </param>
46+
/// <returns> true if file exists. </returns>
47+
/// <exception cref="NotImplementedException"> This is currently not implemented. </exception>
48+
public bool DoesFileExist(string assemblyFileName)
49+
{
50+
// For projectK these assemblies can be created on the fly which means the file might not exist on disk.
51+
// Depend on Assembly Load failures intead of this validation.
52+
return true;
53+
}
54+
55+
/// <summary>
56+
/// Creates a Navigation session for the source file.
57+
/// This is used to get file path and line number information for its components.
58+
/// </summary>
59+
/// <param name="source"> The source file. </param>
60+
/// <returns> A Navigation session instance for the current platform. </returns>
61+
public object CreateNavigationSession(string source)
62+
{
63+
return DiaSessionOperations.CreateNavigationSession(source);
64+
}
65+
66+
/// <summary>
67+
/// Get's the navigation data for a navigation session.
68+
/// </summary>
69+
/// <param name="navigationSession"> The navigation session. </param>
70+
/// <param name="className"> The class name. </param>
71+
/// <param name="methodName"> The method name. </param>
72+
/// <param name="minLineNumber"> The min line number. </param>
73+
/// <param name="fileName"> The file name. </param>
74+
public void GetNavigationData(object navigationSession, string className, string methodName, out int minLineNumber, out string fileName)
75+
{
76+
DiaSessionOperations.GetNavigationData(navigationSession, className, methodName, out minLineNumber, out fileName);
77+
}
78+
79+
/// <summary>
80+
/// Dispose's the navigation session instance.
81+
/// </summary>
82+
/// <param name="navigationSession"> The navigation session. </param>
83+
public void DisposeNavigationSession(object navigationSession)
84+
{
85+
DiaSessionOperations.DisposeNavigationSession(navigationSession);
86+
}
87+
88+
/// <summary>
89+
/// Gets the full file path of an assembly file.
90+
/// </summary>
91+
/// <param name="assemblyFileName"> The file name. </param>
92+
/// <returns> The full file path. </returns>
93+
public string GetFullFilePath(string assemblyFileName)
94+
{
95+
return assemblyFileName;
96+
}
97+
}
98+
99+
#pragma warning restore SA1649 // SA1649FileNameMustMatchTypeName
100+
}

src/Adapter/PlatformServices.Portable/PlatformServices.Portable.csproj

+2-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,7 @@
4040
<Compile Include="..\PlatformServices.Shared\netstandard1.0\SerializableAttribute.cs">
4141
<Link>SerializableAttribute.cs</Link>
4242
</Compile>
43-
<Compile Include="..\PlatformServices.Shared\netstandard1.0\Services\ns10FileOperations.cs">
44-
<Link>Services\ns10FileOperations.cs</Link>
45-
</Compile>
46-
<Compile Include="..\PlatformServices.Shared\netstandard1.0\Services\ns10DiaSessionOperations.cs">
43+
<Compile Include="..\PlatformServices.Shared\netstandard1.0\Services\ns10DiaSessionOperations.cs">
4744
<Link>Services\ns10DiaSessionOperations.cs</Link>
4845
</Compile>
4946
<Compile Include="..\PlatformServices.Shared\netstandard1.0\Services\ns10ReflectionOperations.cs">
@@ -81,6 +78,7 @@
8178
</Compile>
8279
<Compile Include="Friends.cs" />
8380
<Compile Include="Properties\AssemblyInfo.cs" />
81+
<Compile Include="Services\PortableFileOperations.cs" />
8482
</ItemGroup>
8583
<ItemGroup>
8684
<ProjectReference Include="..\..\TestFramework\Extension.Core\Extension.Core.csproj">

test/E2ETests/TestAssets/DeploymentTestProjectNetCore/DeploymentTestProjectNetCore.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp1.1</TargetFramework>
4+
<TargetFramework>netcoreapp2.1</TargetFramework>
55
<FrameworkIdentifier>NetCore</FrameworkIdentifier>
66
<IsPackable>false</IsPackable>
77
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>

test/UnitTests/MSTest.CoreAdapter.TestUtilities/ActionUtility.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.TestUtilities
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using TestFramework = Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.NetCore.Unit.Tests/PlatformServices.NetCore.Unit.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PropertyGroup>
99
<RootNamespace>MSTestAdapter.PlatformServices.NetCore.UnitTests</RootNamespace>
1010
<AssemblyName>MSTestAdapter.PlatformServices.NetCore.UnitTests</AssemblyName>
11-
<TargetFramework>netcoreapp1.0</TargetFramework>
11+
<TargetFramework>netcoreapp2.1</TargetFramework>
1212
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">$(PackageTargetFallback);portable-net45+win8+wpa81+wp8</PackageTargetFallback>
1313
</PropertyGroup>
1414
<ItemGroup>

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/Deployment/ns10DeploymentItemTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Deployment
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/Deployment/ns10TestRunDirectoriesTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Deployment
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/Extensions/ns10ExceptionExtensionsTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Extensions
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/Services/ns10MSTestAdapterSettingsTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Desktop.UnitTests
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/Utilities/ns10DeploymentUtilityTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Utilities
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/Utilities/ns10FileUtilityTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Utilities
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/ns10DiaSessionOperationsTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Services
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/ns10FileOperationsTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Services
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/ns10ReflectionOperationsTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Services
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/ns10TestContextImplementationTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Services
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/ns10TestSourceHostTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Services
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/ns10TestSourceTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Services
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.0/ns10ThreadOperationsTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Services
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.3/Services/ns13MSTestSettingsProviderTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Desktop.UnitTests.Services
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.3/Utilities/ns13DeploymentItemUtilityTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace MSTestAdapter.PlatformServices.Tests.Utilities
55
{
66
extern alias FrameworkV2Extension;
77

8-
#if NETCOREAPP1_0
8+
#if NETCOREAPP2_1
99
using Microsoft.VisualStudio.TestTools.UnitTesting;
1010
#else
1111
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.3/Utilities/ns13ReflectionUtilityTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.Tests.Utilities
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.3/ns13TraceListenerManagerTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace MSTestAdapter.PlatformServices.UnitTests.Services
55
{
6-
#if NETCOREAPP1_0
6+
#if NETCOREAPP2_1
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;

test/UnitTests/PlatformServices.Shared.Unit.Tests/netstandard1.3/ns13TraceListenerTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
namespace MSTestAdapter.PlatformServices.UnitTests.Services
55
{
6-
#if NETCOREAPP1_0
7-
using Microsoft.VisualStudio.TestTools.UnitTesting;
6+
#if NETCOREAPP2_1
7+
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
#else
99
extern alias FrameworkV1;
1010

0 commit comments

Comments
 (0)