-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjectReferencesHelperTests.cs
110 lines (89 loc) · 4.72 KB
/
ProjectReferencesHelperTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
namespace SdkTests.Helpers
{
using FluentAssertions;
using Skyline.DataMiner.CICD.FileSystem;
using Skyline.DataMiner.CICD.Parsers.Common.VisualStudio.Projects;
using Skyline.DataMiner.Sdk.Helpers;
[TestClass]
public class ProjectReferencesHelperTests
{
[TestMethod]
public void TryResolveProjectReferencesTest_DefaultProjectReferences()
{
// Arrange
string packageProjectPath = FileSystem.Instance.Path.Combine(TestHelper.GetTestFilesDirectory(), "Package 1", "PackageProject", "PackageProject.csproj");
Project packageProject = Project.Load(packageProjectPath);
// Act
bool result = ProjectReferencesHelper.TryResolveProjectReferences(packageProject, out List<string> includedProjectPaths, out string errorMessage);
// Assert
result.Should().BeTrue();
errorMessage.Should().BeNullOrEmpty();
includedProjectPaths.Should().NotBeNull();
includedProjectPaths.Should().HaveCount(2);
includedProjectPaths.Should().ContainMatch("*PackageProject.csproj*");
includedProjectPaths.Should().ContainMatch("*MyScript.csproj*");
}
[TestMethod]
public void TryResolveProjectReferencesTest_ExcludeScript()
{
// Arrange
string packageProjectPath = FileSystem.Instance.Path.Combine(TestHelper.GetTestFilesDirectory(), "Package 2", "PackageProject", "PackageProject.csproj");
Project packageProject = Project.Load(packageProjectPath);
// Act
bool result = ProjectReferencesHelper.TryResolveProjectReferences(packageProject, out List<string> includedProjectPaths, out string errorMessage);
// Assert
result.Should().BeTrue();
errorMessage.Should().BeNullOrEmpty();
includedProjectPaths.Should().NotBeNull();
includedProjectPaths.Should().HaveCount(1);
includedProjectPaths.Should().ContainMatch("*PackageProject.csproj*");
}
[TestMethod]
public void TryResolveProjectReferencesTest_PackageProjectOnly()
{
// Arrange
string packageProjectPath = FileSystem.Instance.Path.Combine(TestHelper.GetTestFilesDirectory(), "Package 3", "MyPackage", "MyPackage.csproj");
Project packageProject = Project.Load(packageProjectPath);
// Act
bool result = ProjectReferencesHelper.TryResolveProjectReferences(packageProject, out List<string> includedProjectPaths, out string errorMessage);
// Assert
result.Should().BeTrue();
errorMessage.Should().BeNullOrEmpty();
includedProjectPaths.Should().NotBeNull();
includedProjectPaths.Should().HaveCount(1);
includedProjectPaths.Should().ContainMatch("*MyPackage.csproj*");
}
[TestMethod]
public void TryResolveProjectReferencesTest_DefaultProjectReferences_NothingSpecifiedInFile()
{
// Arrange
string packageProjectPath = FileSystem.Instance.Path.Combine(TestHelper.GetTestFilesDirectory(), "Package 4", "PackageProject", "PackageProject.csproj");
Project packageProject = Project.Load(packageProjectPath);
// Act
bool result = ProjectReferencesHelper.TryResolveProjectReferences(packageProject, out List<string> includedProjectPaths, out string errorMessage);
// Assert
result.Should().BeTrue();
errorMessage.Should().BeNullOrEmpty();
includedProjectPaths.Should().NotBeNull();
includedProjectPaths.Should().HaveCount(2);
includedProjectPaths.Should().ContainMatch("*PackageProject.csproj*");
includedProjectPaths.Should().ContainMatch("*MyScript.csproj*");
}
[TestMethod]
public void TryResolveProjectReferencesTest_SolutionFilter()
{
// Arrange
string packageProjectPath = FileSystem.Instance.Path.Combine(TestHelper.GetTestFilesDirectory(), "Package 5", "MyPackage", "MyPackage.csproj");
Project packageProject = Project.Load(packageProjectPath);
// Act
bool result = ProjectReferencesHelper.TryResolveProjectReferences(packageProject, out List<string> includedProjectPaths, out string errorMessage);
// Assert
result.Should().BeTrue();
errorMessage.Should().BeNullOrEmpty();
includedProjectPaths.Should().NotBeNull();
includedProjectPaths.Should().HaveCount(2);
includedProjectPaths.Should().ContainMatch("*MyPackage.csproj*");
includedProjectPaths.Should().ContainMatch("*MyAdHocDataSource.csproj*");
}
}
}