-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathDiffToolsTest.cs
More file actions
296 lines (256 loc) · 10.1 KB
/
DiffToolsTest.cs
File metadata and controls
296 lines (256 loc) · 10.1 KB
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
[NotInParallel]
public class DiffToolsTest
{
static string SourceDirectory { get; } = Path.GetDirectoryName(GetSourceFile())!;
static string GetSourceFile([CallerFilePath] string path = "") => path;
[Test]
public void MaxInstancesToLaunch() =>
#region MaxInstancesToLaunch
DiffRunner.MaxInstancesToLaunch(10);
#endregion
[Test]
public async Task AddTool()
{
var diffToolPath = FakeDiffTool.Exe;
#region AddTool
var resolvedTool = DiffTools.AddTool(
name: "MyCustomDiffTool",
autoRefresh: true,
isMdi: false,
supportsText: true,
requiresTarget: true,
useShellExecute: 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();
await Assert.That(resolved).IsEqualTo(resolvedTool.Name);
await Assert.That(DiffTools.TryFindByExtension(".jpg", out var forExtension)).IsTrue();
await Assert.That(forExtension!.Name).IsEqualTo(resolvedTool.Name);
}
[Test]
public async Task OrderShouldNotMessWithAddTool()
{
var diffToolPath = FakeDiffTool.Exe;
var resolvedTool = DiffTools.AddTool(
name: "MyCustomDiffTool",
autoRefresh: true,
isMdi: false,
supportsText: true,
requiresTarget: true,
useShellExecute: true,
launchArguments: new(
Left: (tempFile, targetFile) => $"\"{targetFile}\" \"{tempFile}\"",
Right: (tempFile, targetFile) => $"\"{tempFile}\" \"{targetFile}\""),
exePath: diffToolPath,
binaryExtensions: [])!;
DiffTools.UseOrder(DiffTool.VisualStudio, DiffTool.AraxisMerge);
await Assert.That(resolvedTool.Name).IsEqualTo("MyCustomDiffTool");
await Assert.That(DiffTools.TryFindByExtension(".txt", out var forExtension)).IsTrue();
await Assert.That(forExtension!.Name).IsEqualTo("MyCustomDiffTool");
}
[Test]
public async Task TextConvention()
{
var diffToolPath = FakeDiffTool.Exe;
DiffTools.AddTool(
name: "MyCustomDiffTool",
autoRefresh: true,
isMdi: false,
supportsText: true,
requiresTarget: true,
useShellExecute: true,
launchArguments: new(
Left: (tempFile, targetFile) => $"\"{targetFile}\" \"{tempFile}\"",
Right: (tempFile, targetFile) => $"\"{tempFile}\" \"{targetFile}\""),
exePath: diffToolPath,
binaryExtensions: []);
var combine = Path.Combine(SourceDirectory, "input.temp.txtConvention");
await Assert.That(DiffTools.TryFindForInputFilePath(combine, out var tool)).IsTrue();
await Assert.That(tool!.Name).IsEqualTo("MyCustomDiffTool");
}
#if DEBUG
[Test]
public void AddToolBasedOn()
{
// ReSharper disable once UnusedVariable
#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
}
#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 LaunchSpecificDocxDiff() =>
DiffRunner.LaunchAsync(DiffTool.MsWordDiff,
Path.Combine(SourceDirectory, "input.temp.docx"),
Path.Combine(SourceDirectory, "input.target.docx"));
[Fact]
public Task LaunchSpecificBinaryDiff() =>
DiffRunner.LaunchAsync(DiffTool.VisualStudioCode,
Path.Combine(SourceDirectory, "input.temp.bin"),
Path.Combine(SourceDirectory, "input.target.bin"));
[Fact]
public Task LaunchSpecificTextDiff() =>
DiffRunner.LaunchAsync(DiffTool.VisualStudioCode,
Path.Combine(SourceDirectory, "input.temp.txt"),
Path.Combine(SourceDirectory, "input.target.txt"));
[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
*/
[Test]
public async Task TryFindByName_IsCaseInsensitive()
{
var diffToolPath = FakeDiffTool.Exe;
DiffTools.AddTool(
name: "MyCaseSensitiveTool",
autoRefresh: true,
isMdi: false,
supportsText: true,
requiresTarget: true,
useShellExecute: true,
launchArguments: new(
Left: (tempFile, targetFile) => $"\"{targetFile}\" \"{tempFile}\"",
Right: (tempFile, targetFile) => $"\"{tempFile}\" \"{targetFile}\""),
exePath: diffToolPath,
binaryExtensions: []);
// Exact case
await Assert.That(DiffTools.TryFindByName("MyCaseSensitiveTool", out var tool1)).IsTrue();
await Assert.That(tool1!.Name).IsEqualTo("MyCaseSensitiveTool");
// All lowercase
await Assert.That(DiffTools.TryFindByName("mycasesensitivetool", out var tool2)).IsTrue();
await Assert.That(tool2!.Name).IsEqualTo("MyCaseSensitiveTool");
// All uppercase
await Assert.That(DiffTools.TryFindByName("MYCASESENSITIVETOOL", out var tool3)).IsTrue();
await Assert.That(tool3!.Name).IsEqualTo("MyCaseSensitiveTool");
// Mixed case
await Assert.That(DiffTools.TryFindByName("myCASEsensitiveTOOL", out var tool4)).IsTrue();
await Assert.That(tool4!.Name).IsEqualTo("MyCaseSensitiveTool");
}
[Test]
public async Task AddTool_RejectsDuplicateNameCaseInsensitive()
{
var diffToolPath = FakeDiffTool.Exe;
DiffTools.AddTool(
name: "UniqueTool",
autoRefresh: true,
isMdi: false,
supportsText: true,
requiresTarget: true,
useShellExecute: true,
launchArguments: new(
Left: (tempFile, targetFile) => $"\"{targetFile}\" \"{tempFile}\"",
Right: (tempFile, targetFile) => $"\"{tempFile}\" \"{targetFile}\""),
exePath: diffToolPath,
binaryExtensions: []);
// Adding with different case should throw
var exception = Assert.Throws<ArgumentException>(() =>
DiffTools.AddTool(
name: "UNIQUETOOL",
autoRefresh: true,
isMdi: false,
supportsText: true,
requiresTarget: true,
useShellExecute: true,
launchArguments: new(
Left: (tempFile, targetFile) => $"\"{targetFile}\" \"{tempFile}\"",
Right: (tempFile, targetFile) => $"\"{tempFile}\" \"{targetFile}\""),
exePath: diffToolPath,
binaryExtensions: []));
await Assert.That(exception.Message).Contains("Tool with name already exists");
}
public DiffToolsTest() =>
DiffTools.Reset();
}