-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCopyCliTest.java
More file actions
486 lines (425 loc) · 18.3 KB
/
CopyCliTest.java
File metadata and controls
486 lines (425 loc) · 18.3 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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
package com.here.naksha.cli.copy;
import com.here.naksha.cli.CliTestCase;
import com.here.naksha.cli.TestCommandLine;
import com.here.naksha.cli.copy.service.*;
import com.here.naksha.cli.copy.service.factory.CopyServiceFactory;
import com.here.naksha.cli.copy.service.factory.CopyServiceFactory.WriteMode;
import com.here.naksha.cli.parsers.JsonFileParser;
import com.here.naksha.cli.results.CommandFailure;
import com.here.naksha.cli.results.CommandSuccess;
import naksha.model.objects.NakshaStorage;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.EnumSource;
import org.junit.jupiter.params.provider.ValueSource;
import org.mockito.ArgumentCaptor;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import java.nio.file.Path;
import static com.here.naksha.cli.TestUtils.*;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
@ExtendWith(MockitoExtension.class)
class CopyCliTest {
@Mock
private CopyServiceFactory copyServiceFactory;
@Mock
private StorageProvider storageProvider;
private TestCommandLine commandLine;
private final String storageConfigsPath = "storage_configs/";
private final String validStorageConfigPath = getAbsolutePathOfResource(storageConfigsPath + "valid");
private final String invalidStorageConfigPath = getAbsolutePathOfResource(storageConfigsPath + "invalid");
private final Path pathToValidStorageConfig = Path.of(validStorageConfigPath);
private final Path pathToInvalidStorageConfig = Path.of(invalidStorageConfigPath);
private final CopyElement validSrcCopyElement = new CopyElement.Builder(loadStorage(pathToValidStorageConfig))
.setMapId("srcm")
.setCollectionId("srcc")
.build();
private final CopyElement validTargetCopyElement = new CopyElement.Builder(loadStorage(pathToValidStorageConfig))
.setMapId("targetm")
.setCollectionId("targetc")
.build();
@BeforeEach
void beforeEach() {
CopyCommand copyCommand = new CopyCommand(
copyServiceFactory,
storageProvider
);
commandLine = new TestCommandLine(copyCommand);
}
@Test
void shouldCopyWithoutAutoCreateTarget() {
// Given: copy service returns success result
int numberOfCopiedElement = 10;
CopyService copyService = copyServiceReturningSuccessResult(numberOfCopiedElement);
// And: factory returns the copy service
copyServiceFactoryReturningGivenCopyService(
copyService,
WriteMode.PARALLEL,
null,
null,
null
);
// And
CliTestCase testCase = new CliTestCase(
new String[]{
"--srcStorageConfig=%s".formatted(pathToValidStorageConfig),
"--targetStorageConfig=%s".formatted(pathToValidStorageConfig),
"--srcMapId=%s".formatted(validSrcCopyElement.getMapId()),
"--srcCollectionId=%s".formatted(validSrcCopyElement.getCollectionId()),
"--targetMapId=%s".formatted(validTargetCopyElement.getMapId()),
"--targetCollectionId=%s".formatted(validTargetCopyElement.getCollectionId())
},
SUCCESS_EXIT_CODE,
"Success! Copied %d features from %s to %s.".formatted(
numberOfCopiedElement,
validSrcCopyElement,
validTargetCopyElement
),
""
);
// When: command executed with given args
TestCommandLine.CommandResult result = commandLine.execute(testCase.args());
// Then
assertCopyServiceParams(copyService, validSrcCopyElement, validTargetCopyElement, false);
// And
testCase.assertMatches(result);
}
@Test
void shouldCopyWithAutoCreateTarget() {
// Given: copy service returns success result
int numberOfCopiedElement = 10;
CopyService copyService = copyServiceReturningSuccessResult(numberOfCopiedElement);
// And: factory returns the copy service
copyServiceFactoryReturningGivenCopyService(
copyService,
WriteMode.PARALLEL,
null,
null,
null
);
// And
CliTestCase testCase = new CliTestCase(
new String[]{
"--srcStorageConfig=%s".formatted(pathToValidStorageConfig),
"--targetStorageConfig=%s".formatted(pathToValidStorageConfig),
"--srcMapId=%s".formatted(validSrcCopyElement.getMapId()),
"--srcCollectionId=%s".formatted(validSrcCopyElement.getCollectionId()),
"--targetMapId=%s".formatted(validTargetCopyElement.getMapId()),
"--targetCollectionId=%s".formatted(validTargetCopyElement.getCollectionId()),
"--autoCreateTarget"
},
SUCCESS_EXIT_CODE,
"Success! Copied %d features from %s to %s.".formatted(
numberOfCopiedElement,
validSrcCopyElement,
validTargetCopyElement
),
""
);
// When: command executed with given args
TestCommandLine.CommandResult result = commandLine.execute(testCase.args());
// Then
assertCopyServiceParams(copyService, validSrcCopyElement, validTargetCopyElement, true);
// And
testCase.assertMatches(result);
}
@ParameterizedTest
@EnumSource(WriteMode.class)
void shouldCopyWithGivenFeaturesWriteExecutor(WriteMode writeModeBuilder) {
// Given: copy service returns success result
int numberOfCopiedElement = 10;
CopyService copyService = copyServiceReturningSuccessResult(numberOfCopiedElement);
// And: factory returns the copy service
copyServiceFactoryReturningGivenCopyService(
copyService,
writeModeBuilder,
null,
null,
null
);
// And
CliTestCase testCase = new CliTestCase(
new String[]{
"--srcStorageConfig=%s".formatted(pathToValidStorageConfig),
"--targetStorageConfig=%s".formatted(pathToValidStorageConfig),
"--srcMapId=%s".formatted(validSrcCopyElement.getMapId()),
"--srcCollectionId=%s".formatted(validSrcCopyElement.getCollectionId()),
"--targetMapId=%s".formatted(validTargetCopyElement.getMapId()),
"--targetCollectionId=%s".formatted(validTargetCopyElement.getCollectionId()),
"--featuresWriteExecutor=%s".formatted(writeModeBuilder.name())
},
SUCCESS_EXIT_CODE,
"Success! Copied %d features from %s to %s.".formatted(
numberOfCopiedElement,
validSrcCopyElement,
validTargetCopyElement
),
""
);
// When: command executed with given args
TestCommandLine.CommandResult result = commandLine.execute(testCase.args());
// Then
assertCopyServiceParams(copyService, validSrcCopyElement, validTargetCopyElement, false);
// And
testCase.assertMatches(result);
}
@Test
void shouldCopyWithGivenParams() {
// Given: copy service returns success result
int numberOfCopiedElement = 10;
CopyService copyService = copyServiceReturningSuccessResult(numberOfCopiedElement);
// And: factory returns the copy service
int threads = 10;
int queueMulti = 6;
int maxBatchSize = 1024;
copyServiceFactoryReturningGivenCopyService(
copyService,
WriteMode.PARALLEL,
threads,
queueMulti,
maxBatchSize
);
// And
CliTestCase testCase = new CliTestCase(
new String[]{
"--srcStorageConfig=%s".formatted(pathToValidStorageConfig),
"--targetStorageConfig=%s".formatted(pathToValidStorageConfig),
"--srcMapId=%s".formatted(validSrcCopyElement.getMapId()),
"--srcCollectionId=%s".formatted(validSrcCopyElement.getCollectionId()),
"--targetMapId=%s".formatted(validTargetCopyElement.getMapId()),
"--targetCollectionId=%s".formatted(validTargetCopyElement.getCollectionId()),
"--threads=%s".formatted(threads),
"--queueMulti=%s".formatted(queueMulti),
"--maxBatchSize=%s".formatted(maxBatchSize)
},
SUCCESS_EXIT_CODE,
"Success! Copied %d features from %s to %s.".formatted(
numberOfCopiedElement,
validSrcCopyElement,
validTargetCopyElement
),
""
);
// When: command executed with given args
TestCommandLine.CommandResult result = commandLine.execute(testCase.args());
// Then
assertCopyServiceParams(copyService, validSrcCopyElement, validTargetCopyElement, false);
// And
testCase.assertMatches(result);
}
@Test
void shouldFailWithInvalidSrcNakshaStorage() {
// Given
Path filePath = pathToInvalidStorageConfig;
// And
CliTestCase testCase = new CliTestCase(
new String[]{
"--srcStorageConfig=%s".formatted(filePath),
"--targetStorageConfig=target"
},
EXECUTION_EXCEPTION_EXIT_CODE,
"",
nakshaStorageParserErrorMessage.formatted(filePath)
);
// When
TestCommandLine.CommandResult result = commandLine.execute(testCase.args());
// Then
assertEquals(1, result.exitCode());
}
@Test
void shouldFailWithInvalidTargetNakshaStorage() {
// Given
Path targetFilePath = pathToInvalidStorageConfig;
// And: valid src
Path srcFilePath = pathToValidStorageConfig;
// And
CliTestCase testCase = new CliTestCase(
new String[]{
"--srcStorageConfig=%s".formatted(srcFilePath),
"--targetStorageConfig=%s".formatted(targetFilePath)
},
EXECUTION_EXCEPTION_EXIT_CODE,
"",
nakshaStorageParserErrorMessage.formatted(targetFilePath)
);
// When
TestCommandLine.CommandResult result = commandLine.execute(testCase.args());
// Then
assertEquals(1, result.exitCode());
}
@Test
void shouldFailWhenCopyFail() {
// Given: copy service returns error result
String exceptionMessage = "Test message";
CopyService copyService = copyServiceReturningErrorResult(exceptionMessage);
// And: factory returns the copy service
copyServiceFactoryReturningGivenCopyService(
copyService,
WriteMode.PARALLEL,
null,
null,
null
);
// And
Path validStorageConfig = pathToValidStorageConfig;
// And
CliTestCase testCase = new CliTestCase(
new String[]{
"--srcStorageConfig=%s".formatted(validStorageConfig),
"--targetStorageConfig=%s".formatted(validStorageConfig)
},
EXECUTION_EXCEPTION_EXIT_CODE,
"",
exceptionMessage
);
// When
TestCommandLine.CommandResult result = commandLine.execute(testCase.args());
// Then
testCase.assertMatches(result);
}
@ParameterizedTest
@ValueSource(ints = {-10, -1, 0})
void shouldFailWhenNonPositiveValueForThreadsOption(int nonPositiveThreads) {
// Given
CliTestCase testCase = new CliTestCase(
new String[]{
"--srcStorageConfig=%s".formatted(pathToValidStorageConfig),
"--targetStorageConfig=%s".formatted(pathToValidStorageConfig),
"--threads=%s".formatted(nonPositiveThreads)
},
INVALID_INPUT_EXIT_CODE,
"",
"""
Invalid value '%s' for option '--threads': value should be a positive integer
Try 'copy --help' for more information.
""".formatted(nonPositiveThreads)
);
// When
TestCommandLine.CommandResult result = commandLine.execute(testCase.args());
// Then
testCase.assertMatches(result);
}
@ParameterizedTest
@ValueSource(ints = {-10, -1, 0})
void shouldFailWhenNonPositiveValueForMaxBatchSizeOption(int nonPositiveMaxBatchSize) {
// Given
CliTestCase testCase = new CliTestCase(
new String[]{
"--srcStorageConfig=%s".formatted(pathToValidStorageConfig),
"--targetStorageConfig=%s".formatted(pathToValidStorageConfig),
"--maxBatchSize=%s".formatted(nonPositiveMaxBatchSize)
},
INVALID_INPUT_EXIT_CODE,
"",
"""
Invalid value '%s' for option '--maxBatchSize': value should be a positive integer
Try 'copy --help' for more information.
""".formatted(nonPositiveMaxBatchSize)
);
// When
TestCommandLine.CommandResult result = commandLine.execute(testCase.args());
// Then
testCase.assertMatches(result);
}
@ParameterizedTest
@ValueSource(ints = {-10, -1, 0})
void shouldFailWhenNonPositiveValueForQueueMultiOption(int nonPositiveQueueMulti) {
// Given
CliTestCase testCase = new CliTestCase(
new String[]{
"--srcStorageConfig=%s".formatted(pathToValidStorageConfig),
"--targetStorageConfig=%s".formatted(pathToValidStorageConfig),
"--queueMulti=%s".formatted(nonPositiveQueueMulti)
},
INVALID_INPUT_EXIT_CODE,
"",
"""
Invalid value '%s' for option '--queueMulti': value should be a positive integer
Try 'copy --help' for more information.
""".formatted(nonPositiveQueueMulti)
);
// When
TestCommandLine.CommandResult result = commandLine.execute(testCase.args());
// Then
testCase.assertMatches(result);
}
private final String nakshaStorageParserErrorMessage = """
Problem with json parsing! file: %s
Unexpected character ('c' (code 99)): was expecting double-quote to start field name
at [Source: (String)"{
"id": "test_generating_storage",
className": "naksha.cli.GeneratingStorage",
"properties": {
"count": 1000,
"templateFile": "/some/dir/sample_topology.json",
"tileIds": ["23621667", "23621664"]
}"; line: 3, column: 4]
""";
private CopyService copyServiceReturningErrorResult(String exceptionMessage) {
CopyService copyService = mock();
when(copyService.copy(any(), any(), anyBoolean())).thenReturn(
new CommandFailure<>(new CopyServiceException(exceptionMessage))
);
return copyService;
}
private NakshaStorage loadStorage(Path storageConfig) {
JsonFileParser jsonFileParser = new JsonFileParser();
return assertDoesNotThrow(() -> jsonFileParser.parse(storageConfig, NakshaStorage.class));
}
private void assertCopyElement(
CopyElement expected,
CopyElement actual
) {
assertEquals(expected.getMapId(), actual.getMapId());
assertEquals(expected.getCollectionId(), actual.getCollectionId());
assertEquals(expected.getNakshaStorage(), actual.getNakshaStorage());
}
private void assertCopyServiceParams(
CopyService copyService,
CopyElement srcCopyElement,
CopyElement targetCopyElement,
boolean autoCreateTarget
) {
ArgumentCaptor<CopyElement> actualSrcCopyElements = ArgumentCaptor.forClass(CopyElement.class);
ArgumentCaptor<CopyElement> actualTargetCopyElements = ArgumentCaptor.forClass(CopyElement.class);
verify(copyService, only()).copy(actualSrcCopyElements.capture(), actualTargetCopyElements.capture(), eq(autoCreateTarget));
assertCopyElement(
srcCopyElement,
actualSrcCopyElements.getValue()
);
assertCopyElement(
targetCopyElement,
actualTargetCopyElements.getValue()
);
}
private CopyService copyServiceReturningSuccessResult(int numberOfCopiedElements) {
CopyService copyService = mock();
when(copyService.copy(any(), any(), anyBoolean())).thenReturn(
new CommandSuccess<>(
new CopyServiceSuccessResultPayload(numberOfCopiedElements)
)
);
return copyService;
}
private void copyServiceFactoryReturningGivenCopyService(
CopyService copyService,
WriteMode featuresWriteExecutor,
Integer threads,
Integer queueMulti,
Integer maxBatchSize
) {
when(copyServiceFactory.create(
eq(storageProvider),
any(),
eq(featuresWriteExecutor),
eq(threads),
eq(queueMulti),
eq(maxBatchSize)
)).thenReturn(copyService);
}
}