This repository was archived by the owner on Dec 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 221
/
Copy pathDefaultExtensionDependencyCheckerTest.cs
111 lines (89 loc) · 4.63 KB
/
DefaultExtensionDependencyCheckerTest.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
111
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.IO;
using Moq;
using Xunit;
namespace Microsoft.AspNetCore.Razor.Tools
{
public class DefaultExtensionDependencyCheckerTest
{
[Fact]
public void Check_ReturnsFalse_WithMissingDependency()
{
using (var directory = TempDirectory.Create())
{
// Arrange
var output = new StringWriter();
var alphaFilePath = LoaderTestResources.Alpha.WriteToFile(directory.DirectoryPath, "Alpha.dll");
var loader = new TestDefaultExtensionAssemblyLoader(Path.Combine(directory.DirectoryPath, "shadow"));
var checker = new DefaultExtensionDependencyChecker(loader, output, output);
// Act
var result = checker.Check(new[] { alphaFilePath, });
// Assert
Assert.False(result, "Check should not have passed: " + output.ToString());
}
}
[Fact]
public void Check_ReturnsTrue_WithAllDependenciesProvided()
{
using (var directory = TempDirectory.Create())
{
// Arrange
var output = new StringWriter();
var alphaFilePath = LoaderTestResources.Alpha.WriteToFile(directory.DirectoryPath, "Alpha.dll");
var betaFilePath = LoaderTestResources.Beta.WriteToFile(directory.DirectoryPath, "Beta.dll");
var gammaFilePath = LoaderTestResources.Gamma.WriteToFile(directory.DirectoryPath, "Gamma.dll");
var deltaFilePath = LoaderTestResources.Delta.WriteToFile(directory.DirectoryPath, "Delta.dll");
var loader = new TestDefaultExtensionAssemblyLoader(Path.Combine(directory.DirectoryPath, "shadow"));
var checker = new DefaultExtensionDependencyChecker(loader, output, output);
// Act
var result = checker.Check(new[] { alphaFilePath, betaFilePath, gammaFilePath, deltaFilePath, });
// Assert
Assert.True(result, "Check should have passed: " + output.ToString());
}
}
[Fact]
public void Check_ReturnsFalse_WhenAssemblyHasDifferentMVID()
{
using (var directory = TempDirectory.Create())
{
// Arrange
var output = new StringWriter();
// Load Beta.dll from the future Alpha.dll path to prime the assembly loader
var alphaFilePath = LoaderTestResources.Beta.WriteToFile(directory.DirectoryPath, "Alpha.dll");
var betaFilePath = LoaderTestResources.Beta.WriteToFile(directory.DirectoryPath, "Beta.dll");
var gammaFilePath = LoaderTestResources.Gamma.WriteToFile(directory.DirectoryPath, "Gamma.dll");
var deltaFilePath = LoaderTestResources.Delta.WriteToFile(directory.DirectoryPath, "Delta.dll");
var loader = new TestDefaultExtensionAssemblyLoader(Path.Combine(directory.DirectoryPath, "shadow"));
var checker = new DefaultExtensionDependencyChecker(loader, output, output);
// This will cause the loader to cache some inconsistent information.
loader.LoadFromPath(alphaFilePath);
LoaderTestResources.Alpha.WriteToFile(directory.DirectoryPath, "Alpha.dll");
// Act
var result = checker.Check(new[] { alphaFilePath, gammaFilePath, deltaFilePath, });
// Assert
Assert.False(result, "Check should not have passed: " + output.ToString());
}
}
[Fact]
public void Check_ReturnsFalse_WhenLoaderThrows()
{
using (var directory = TempDirectory.Create())
{
// Arrange
var output = new StringWriter();
var deltaFilePath = LoaderTestResources.Delta.WriteToFile(directory.DirectoryPath, "Delta.dll");
var loader = new Mock<ExtensionAssemblyLoader>();
loader
.Setup(l => l.LoadFromPath(It.IsAny<string>()))
.Throws(new InvalidOperationException());
var checker = new DefaultExtensionDependencyChecker(loader.Object, output, output);
// Act
var result = checker.Check(new[] { deltaFilePath, });
// Assert
Assert.False(result, "Check should not have passed: " + output.ToString());
}
}
}
}