-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathDiffToolsTest.cs
208 lines (180 loc) · 6.67 KB
/
DiffToolsTest.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
public class DiffToolsTest :
XunitContextBase
{
[Fact]
public void MaxInstancesToLaunch() =>
#region MaxInstancesToLaunch
DiffRunner.MaxInstancesToLaunch(10);
#endregion
[Fact]
public void AddTool()
{
var diffToolPath = FakeDiffTool.Exe;
#region AddTool
var resolvedTool = DiffTools.AddTool(
name: "MyCustomDiffTool",
autoRefresh: true,
isMdi: false,
supportsText: true,
requiresTarget: true,
launchArguments: new(
Left: (tempFile, targetFile) => $"\"{targetFile}\" \"{tempFile}\"",
Right: (tempFile, targetFile) => $"\"{tempFile}\" \"{targetFile}\""),
exePath: diffToolPath,
binaryExtensions: [".jpg"])!;
#endregion
var resolved = DiffTools.Resolved.Select(_ => _.Name).First();
Assert.Equal(resolvedTool.Name, resolved);
Assert.True(DiffTools.TryFindByExtension(".jpg", out var forExtension));
Assert.Equal(resolvedTool.Name, forExtension.Name);
}
[Fact]
public void OrderShouldNotMessWithAddTool()
{
var diffToolPath = FakeDiffTool.Exe;
var resolvedTool = DiffTools.AddTool(
name: "MyCustomDiffTool",
autoRefresh: true,
isMdi: false,
supportsText: true,
requiresTarget: true,
launchArguments: new(
Left: (tempFile, targetFile) => $"\"{targetFile}\" \"{tempFile}\"",
Right: (tempFile, targetFile) => $"\"{tempFile}\" \"{targetFile}\""),
exePath: diffToolPath,
binaryExtensions: [])!;
DiffTools.UseOrder(DiffTool.VisualStudio, DiffTool.AraxisMerge);
Assert.Equal("MyCustomDiffTool", resolvedTool.Name);
Assert.True(DiffTools.TryFindByExtension(".txt", out var forExtension));
Assert.Equal("MyCustomDiffTool", forExtension.Name);
}
[Fact]
public void TextConvention()
{
var diffToolPath = FakeDiffTool.Exe;
DiffTools.AddTool(
name: "MyCustomDiffTool",
autoRefresh: true,
isMdi: false,
supportsText: true,
requiresTarget: true,
launchArguments: new(
Left: (tempFile, targetFile) => $"\"{targetFile}\" \"{tempFile}\"",
Right: (tempFile, targetFile) => $"\"{tempFile}\" \"{targetFile}\""),
exePath: diffToolPath,
binaryExtensions: []);
var combine = Path.Combine(SourceDirectory, "input.temp.txtConvention");
Assert.True(DiffTools.TryFindForInputFilePath(combine, out var tool));
Assert.Equal("MyCustomDiffTool", tool.Name);
}
#if DEBUG
[Fact]
public void AddToolBasedOn()
{
#region AddToolBasedOn
var resolvedTool = DiffTools.AddToolBasedOn(
DiffTool.VisualStudio,
name: "MyCustomDiffTool",
launchArguments: new(
Left: (temp, target) => $"\"custom args \"{target}\" \"{temp}\"",
Right: (temp, target) => $"\"custom args \"{temp}\" \"{target}\""))!;
#endregion
Assert.Equal(resolvedTool, DiffTools.Resolved.First());
Assert.True(DiffTools.TryFindByExtension(".txt", out var forExtension));
Assert.Equal(resolvedTool, forExtension);
Assert.Equal("\"custom args \"bar\" \"foo\"", resolvedTool.LaunchArguments.Left("foo", "bar"));
Assert.Equal("\"custom args \"foo\" \"bar\"", resolvedTool.LaunchArguments.Right("foo", "bar"));
}
#endif
static async Task AddToolAndLaunch()
{
#region AddToolAndLaunch
var resolvedTool = DiffTools.AddToolBasedOn(
DiffTool.VisualStudio,
name: "MyCustomDiffTool",
launchArguments: new(
Left: (temp, target) => $"\"custom args \"{target}\" \"{temp}\"",
Right: (temp, target) => $"\"custom args \"{temp}\" \"{target}\""));
await DiffRunner.LaunchAsync(resolvedTool!, "PathToTempFile", "PathToTargetFile");
#endregion
}
/**
[Fact]
public Task LaunchSpecificImageDiff() =>
DiffRunner.LaunchAsync(DiffTool.P4Merge,
Path.Combine(SourceDirectory, "input.temp.png"),
Path.Combine(SourceDirectory, "input.target.png"));
[Fact]
public async Task LaunchImageDiff()
{
foreach (var tool in DiffTools.Resolved)
{
await DiffRunner.LaunchAsync(tool,
Path.Combine(SourceDirectory, "input.temp.png"),
Path.Combine(SourceDirectory, "input.target.png"));
}
}
[Fact]
public async Task LaunchTextDiff()
{
foreach (var tool in DiffTools.Resolved)
{
await DiffRunner.LaunchAsync(tool,
Path.Combine(SourceDirectory, "input.temp.txt"),
Path.Combine(SourceDirectory, "input.target.txt"));
}
}
[Fact]
public Task LaunchSpecificTextDiff() =>
DiffRunner.LaunchAsync(DiffTool.WinMerge,
Path.Combine(SourceDirectory, "input.temp.txt"),
Path.Combine(SourceDirectory, "input.target.txt"));
[Fact]
public Task TextFileConvention()
{
var tempFile = Path.Combine(SourceDirectory, "input.temp.txtConvention");
var targetFile = Path.Combine(SourceDirectory, "input.target.txtConvention");
return DiffRunner.LaunchAsync(tempFile, targetFile);
}
[Fact]
public Task LaunchForTextAsync()
{
var tempFile = Path.Combine(SourceDirectory, "input.temp.txtConvention");
var targetFile = Path.Combine(SourceDirectory, "input.target.txtConvention");
return DiffRunner.LaunchForTextAsync(tempFile, targetFile);
}
**/
//todo: re enable tests with fake diff tool.
/**
#if DEBUG
[Fact]
public void ChangeOrder()
{
#region UseOrder
DiffTools.UseOrder(DiffTool.VisualStudio, DiffTool.AraxisMerge);
#endregion
Assert.Equal(DiffTool.VisualStudio, DiffTools.Resolved.First()
.Tool);
}
[Fact]
public void TryFind()
{
Assert.True(DiffTools.TryFindByExtension(".txt", out var resolved));
Assert.NotNull(resolved);
Assert.False(DiffTools.TryFindByExtension(".notFound", out resolved));
Assert.Null(resolved);
}
[Fact]
public void TryFindByName()
{
Assert.True(DiffTools.TryFindByName(DiffTool.VisualStudio, out var resolved));
Assert.NotNull(resolved);
Assert.True(DiffTools.TryFindByName(resolved.Name, out resolved));
Assert.NotNull(resolved);
}
#endif
**/
public DiffToolsTest(ITestOutputHelper output) :
base(output) =>
DiffTools.Reset();
}