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 pathDefaultExtensionAssemblyLoaderTest.cs
128 lines (102 loc) · 4.81 KB
/
DefaultExtensionAssemblyLoaderTest.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// 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.IO;
using System.Text;
using Xunit;
namespace Microsoft.AspNetCore.Razor.Tools
{
public class DefaultExtensionAssemblyLoaderTest
{
[Fact]
public void LoadFromPath_CanLoadAssembly()
{
using (var directory = TempDirectory.Create())
{
// Arrange
var alphaFilePath = LoaderTestResources.Alpha.WriteToFile(directory.DirectoryPath, "Alpha.dll");
var loader = new TestDefaultExtensionAssemblyLoader(Path.Combine(directory.DirectoryPath, "shadow"));
// Act
var assembly = loader.LoadFromPath(alphaFilePath);
// Assert
Assert.NotNull(assembly);
}
}
[Fact]
public void LoadFromPath_DoesNotAddDuplicates_AfterLoadingByName()
{
using (var directory = TempDirectory.Create())
{
// Arrange
var alphaFilePath = LoaderTestResources.Alpha.WriteToFile(directory.DirectoryPath, "Alpha.dll");
var alphaFilePath2 = LoaderTestResources.Alpha.WriteToFile(directory.DirectoryPath, "Alpha2.dll");
var loader = new TestDefaultExtensionAssemblyLoader(Path.Combine(directory.DirectoryPath, "shadow"));
loader.AddAssemblyLocation(alphaFilePath);
var assembly1 = loader.Load("Alpha");
// Act
var assembly2 = loader.LoadFromPath(alphaFilePath2);
// Assert
Assert.Same(assembly1, assembly2);
}
}
[Fact]
public void LoadFromPath_DoesNotAddDuplicates_AfterLoadingByPath()
{
using (var directory = TempDirectory.Create())
{
// Arrange
var alphaFilePath = LoaderTestResources.Alpha.WriteToFile(directory.DirectoryPath, "Alpha.dll");
var alphaFilePath2 = LoaderTestResources.Alpha.WriteToFile(directory.DirectoryPath, "Alpha2.dll");
var loader = new TestDefaultExtensionAssemblyLoader(Path.Combine(directory.DirectoryPath, "shadow"));
var assembly1 = loader.LoadFromPath(alphaFilePath);
// Act
var assembly2 = loader.LoadFromPath(alphaFilePath2);
// Assert
Assert.Same(assembly1, assembly2);
}
}
[Fact]
public void Load_CanLoadAssemblyByName_AfterLoadingByPath()
{
using (var directory = TempDirectory.Create())
{
// Arrange
var alphaFilePath = LoaderTestResources.Alpha.WriteToFile(directory.DirectoryPath, "Alpha.dll");
var loader = new TestDefaultExtensionAssemblyLoader(Path.Combine(directory.DirectoryPath, "shadow"));
var assembly1 = loader.LoadFromPath(alphaFilePath);
// Act
var assembly2 = loader.Load(assembly1.FullName);
// Assert
Assert.Same(assembly1, assembly2);
}
}
[Fact]
public void LoadFromPath_WithDependencyPathsSpecified_CanLoadAssemblyDependencies()
{
using (var directory = TempDirectory.Create())
{
// Arrange
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"));
loader.AddAssemblyLocation(gammaFilePath);
loader.AddAssemblyLocation(deltaFilePath);
// Act
var alpha = loader.LoadFromPath(alphaFilePath);
var beta = loader.LoadFromPath(betaFilePath);
// Assert
var builder = new StringBuilder();
var a = alpha.CreateInstance("Alpha.A");
a.GetType().GetMethod("Write").Invoke(a, new object[] { builder, "Test A" });
var b = beta.CreateInstance("Beta.B");
b.GetType().GetMethod("Write").Invoke(b, new object[] { builder, "Test B" });
var expected = @"Delta: Gamma: Alpha: Test A
Delta: Gamma: Beta: Test B
";
var actual = builder.ToString();
Assert.Equal(expected, actual);
}
}
}
}