-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcompletion_configuration_test.dart
More file actions
439 lines (376 loc) · 14.1 KB
/
completion_configuration_test.dart
File metadata and controls
439 lines (376 loc) · 14.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
// Not required for test files
// ignore_for_file: prefer_const_constructors
import 'dart:collection';
import 'dart:io';
import 'package:cli_completion/installer.dart';
import 'package:path/path.dart' as path;
import 'package:test/test.dart';
void main() {
group('$CompletionConfiguration', () {
final testInstalls = ShellCommandsMap({
SystemShell.bash: UnmodifiableSetView({'very_good'}),
});
final testUninstalls = ShellCommandsMap({
SystemShell.bash: UnmodifiableSetView({'very_bad'}),
});
group('fromFile', () {
test(
'returns empty $CompletionConfiguration when file does not exist',
() {
final tempDirectory = Directory.systemTemp.createTempSync();
addTearDown(() => tempDirectory.deleteSync(recursive: true));
final file = File(path.join(tempDirectory.path, 'config.json'));
expect(
file.existsSync(),
isFalse,
reason: 'File should not exist',
);
final completionConfiguration =
CompletionConfiguration.fromFile(file);
expect(
completionConfiguration.uninstalls,
isEmpty,
reason: 'Uninstalls should be initially empty',
);
},
);
test('returns empty $CompletionConfiguration when file is empty', () {
final tempDirectory = Directory.systemTemp.createTempSync();
addTearDown(() => tempDirectory.deleteSync(recursive: true));
final file = File(path.join(tempDirectory.path, 'config.json'))
..writeAsStringSync('');
final completionConfiguration = CompletionConfiguration.fromFile(file);
expect(
completionConfiguration.uninstalls,
isEmpty,
reason: 'Uninstalls should be initially empty',
);
});
test("returns a $CompletionConfiguration with the file's defined members",
() {
final tempDirectory = Directory.systemTemp.createTempSync();
addTearDown(() => tempDirectory.deleteSync(recursive: true));
final file = File(path.join(tempDirectory.path, 'config.json'));
final completionConfiguration =
CompletionConfiguration.empty().copyWith(
installs: testInstalls,
uninstalls: testUninstalls,
)..writeTo(file);
final newConfiguration = CompletionConfiguration.fromFile(file);
expect(
newConfiguration.installs,
equals(completionConfiguration.installs),
reason: 'Installs should match those defined in the file',
);
expect(
newConfiguration.uninstalls,
equals(completionConfiguration.uninstalls),
reason: 'Uninstalls should match those defined in the file',
);
});
test(
'''returns a $CompletionConfiguration with empty uninstalls if the file's JSON uninstalls key has a string value''',
() {
final tempDirectory = Directory.systemTemp.createTempSync();
addTearDown(() => tempDirectory.deleteSync(recursive: true));
const json =
'{"${CompletionConfiguration.uninstallsJsonKey}": "very_bad"}';
final file = File(path.join(tempDirectory.path, 'config.json'))
..writeAsStringSync(json);
final completionConfiguration =
CompletionConfiguration.fromFile(file);
expect(
completionConfiguration.uninstalls,
isEmpty,
reason:
'''Uninstalls should be empty when the value is of an invalid type''',
);
},
);
test(
'''returns a $CompletionConfiguration with empty installs if the file's JSON installs key has a string value''',
() {
final tempDirectory = Directory.systemTemp.createTempSync();
addTearDown(() => tempDirectory.deleteSync(recursive: true));
const json =
'{"${CompletionConfiguration.installsJsonKey}": "very_bad"}';
final file = File(path.join(tempDirectory.path, 'config.json'))
..writeAsStringSync(json);
final completionConfiguration =
CompletionConfiguration.fromFile(file);
expect(
completionConfiguration.installs,
isEmpty,
reason:
'''Installs should be empty when the value is of an invalid type''',
);
},
);
test(
'''returns a $CompletionConfiguration with empty uninstalls if file's JSON uninstalls key has a numeric value''',
() {
final tempDirectory = Directory.systemTemp.createTempSync();
addTearDown(() => tempDirectory.deleteSync(recursive: true));
const json = '{"${CompletionConfiguration.uninstallsJsonKey}": 1}';
final file = File(path.join(tempDirectory.path, 'config.json'))
..writeAsStringSync(json);
final completionConfiguration =
CompletionConfiguration.fromFile(file);
expect(
completionConfiguration.uninstalls,
isEmpty,
reason:
'''Uninstalls should be empty when the value is of an invalid type''',
);
},
);
test(
'''returns a $CompletionConfiguration with empty installs if file's JSON installs key has a numeric value''',
() {
final tempDirectory = Directory.systemTemp.createTempSync();
addTearDown(() => tempDirectory.deleteSync(recursive: true));
const json = '{"${CompletionConfiguration.installsJsonKey}": 1}';
final file = File(path.join(tempDirectory.path, 'config.json'))
..writeAsStringSync(json);
final completionConfiguration =
CompletionConfiguration.fromFile(file);
expect(
completionConfiguration.installs,
isEmpty,
reason:
'''Installs should be empty when the value is of an invalid type''',
);
},
);
});
group('writeTo', () {
test('creates a file when it does not exist', () {
final tempDirectory = Directory.systemTemp.createTempSync();
addTearDown(() => tempDirectory.deleteSync(recursive: true));
final file = File(path.join(tempDirectory.path, 'config.json'));
expect(
file.existsSync(),
isFalse,
reason: 'File should not exist',
);
CompletionConfiguration.empty().writeTo(file);
expect(
file.existsSync(),
isTrue,
reason: 'File should exist after completionConfiguration creation',
);
});
test('returns normally when file already exists', () {
final tempDirectory = Directory.systemTemp.createTempSync();
addTearDown(() => tempDirectory.deleteSync(recursive: true));
final file = File(path.join(tempDirectory.path, 'config.json'))
..createSync();
expect(
file.existsSync(),
isTrue,
reason: 'File should exist',
);
expect(
() => CompletionConfiguration.empty().writeTo(file),
returnsNormally,
reason: 'Should not throw when file exists',
);
});
test('content can be read succesfully after written', () {
final tempDirectory = Directory.systemTemp.createTempSync();
addTearDown(() => tempDirectory.deleteSync(recursive: true));
final file = File(path.join(tempDirectory.path, 'config.json'));
final completionConfiguration =
CompletionConfiguration.empty().copyWith(
installs: testInstalls,
uninstalls: testUninstalls,
)..writeTo(file);
final newcompletionConfiguration =
CompletionConfiguration.fromFile(file);
expect(
newcompletionConfiguration.installs,
completionConfiguration.installs,
reason: 'Installs should match those defined in the file',
);
expect(
newcompletionConfiguration.uninstalls,
completionConfiguration.uninstalls,
reason: 'Uninstalls should match those defined in the file',
);
});
});
group('copyWith', () {
test('members remain unchanged when nothing is specified', () {
final completionConfiguration = CompletionConfiguration.empty();
final newcompletionConfiguration = completionConfiguration.copyWith();
expect(
newcompletionConfiguration.uninstalls,
completionConfiguration.uninstalls,
reason: 'Uninstalls should remain unchanged',
);
});
test('modifies uninstalls when specified', () {
final completionConfiguration = CompletionConfiguration.empty();
final uninstalls = testUninstalls;
final newcompletionConfiguration =
completionConfiguration.copyWith(uninstalls: uninstalls);
expect(
newcompletionConfiguration.uninstalls,
equals(uninstalls),
reason: 'Uninstalls should be modified',
);
});
test('modifies installs when specified', () {
final completionConfiguration = CompletionConfiguration.empty();
final installs = testUninstalls;
final newcompletionConfiguration =
completionConfiguration.copyWith(installs: installs);
expect(
newcompletionConfiguration.installs,
equals(installs),
reason: 'Installs should be modified',
);
});
});
});
group('ShellCommandsMapExtension', () {
group('include', () {
test('adds command to $ShellCommandsMap when not already in', () {
const testCommand = 'test_command';
const testShell = SystemShell.bash;
final shellCommandsMap = ShellCommandsMap({});
final newShellCommadsMap = shellCommandsMap.include(
command: testCommand,
systemShell: testShell,
);
expect(
newShellCommadsMap.contains(
command: testCommand,
systemShell: testShell,
),
isTrue,
);
});
test('remains the same when $ShellCommandsMap already has command', () {
const testCommand = 'test_command';
const testShell = SystemShell.bash;
final shellCommandsMap = ShellCommandsMap({
testShell: UnmodifiableSetView({testCommand}),
});
final newShellCommadsMap = shellCommandsMap.include(
command: testCommand,
systemShell: testShell,
);
expect(newShellCommadsMap, equals(shellCommandsMap));
});
test('adds command $ShellCommandsMap when on a different shell', () {
const testCommand = 'test_command';
const testShell = SystemShell.bash;
final shellCommandsMap = ShellCommandsMap({
testShell: UnmodifiableSetView({testCommand}),
});
const anotherShell = SystemShell.zsh;
final newShellCommadsMap = shellCommandsMap.include(
command: testCommand,
systemShell: anotherShell,
);
expect(testShell, isNot(equals(anotherShell)));
expect(
newShellCommadsMap.contains(
command: testCommand,
systemShell: testShell,
),
isTrue,
);
expect(
newShellCommadsMap.contains(
command: testCommand,
systemShell: anotherShell,
),
isTrue,
);
});
});
group('exclude', () {
test('removes command when in $ShellCommandsMap', () {
const testCommand = 'test_command';
const testShell = SystemShell.bash;
final shellCommandsMap = ShellCommandsMap({
testShell: UnmodifiableSetView({testCommand}),
});
final newShellCommandsMap = shellCommandsMap.exclude(
command: testCommand,
systemShell: testShell,
);
expect(
newShellCommandsMap.contains(
command: testCommand,
systemShell: testShell,
),
isFalse,
);
});
test('remains the same when command not in $ShellCommandsMap', () {
const testCommand = 'test_command';
const testShell = SystemShell.bash;
final shellCommandsMap = ShellCommandsMap({});
final newShellCommandsMap = shellCommandsMap.exclude(
command: testCommand,
systemShell: testShell,
);
expect(newShellCommandsMap, equals(shellCommandsMap));
});
test(
'''remains the same when command in $ShellCommandsMap is on a different shell''',
() {
const testCommand = 'test_command';
const testShell = SystemShell.bash;
final shellCommandsMap = ShellCommandsMap({
testShell: UnmodifiableSetView({testCommand}),
});
const anotherShell = SystemShell.zsh;
final newShellCommadsMap = shellCommandsMap.exclude(
command: testCommand,
systemShell: anotherShell,
);
expect(newShellCommadsMap, equals(shellCommandsMap));
});
});
group('contains', () {
test(
'''returns true when command is in $ShellCommandsMap for the given shell''',
() {
const testCommand = 'test_command';
const testShell = SystemShell.bash;
final shellCommandsMap = ShellCommandsMap({
testShell: UnmodifiableSetView({testCommand}),
});
expect(
shellCommandsMap.contains(
command: testCommand,
systemShell: testShell,
),
isTrue,
);
});
test(
'''returns false when command is in $ShellCommandsMap for another shell''',
() {
const testCommand = 'test_command';
const testShell = SystemShell.bash;
final shellCommandsMap = ShellCommandsMap({
testShell: UnmodifiableSetView({testCommand}),
});
const anotherShell = SystemShell.zsh;
expect(testShell, isNot(equals(anotherShell)));
expect(
shellCommandsMap.contains(
command: testCommand,
systemShell: anotherShell,
),
isFalse,
);
});
});
});
}