40
40
41
41
import static org .hamcrest .CoreMatchers .is ;
42
42
import static org .hamcrest .CoreMatchers .notNullValue ;
43
+ import static org .junit .Assert .assertArrayEquals ;
43
44
import static org .junit .Assert .assertEquals ;
44
45
import static org .junit .Assert .assertFalse ;
45
46
import static org .junit .Assert .assertTrue ;
@@ -63,7 +64,7 @@ public void setUp() throws IOException
63
64
Properties p = new Properties ( sysProps );
64
65
65
66
System .setProperties ( p );
66
-
67
+
67
68
lrd = temporaryFolder .newFile ();
68
69
69
70
}
@@ -74,7 +75,7 @@ public void tearDown()
74
75
System .setProperties ( sysProps );
75
76
}
76
77
77
-
78
+
78
79
@ Test
79
80
public void testShouldFailToSetLocalRepoLocationGloballyWhenItIsAFile ()
80
81
{
@@ -176,7 +177,7 @@ public void testRequestProvidedWorkingDirectoryShouldOverrideGlobal()
176
177
InvocationRequest req = newRequest ();
177
178
req .setBaseDirectory ( wd );
178
179
179
- mclb .setupBaseDirectory ( req );
180
+ mclb .setupBaseDirectory ( req );
180
181
181
182
assertEquals ( mclb .getBaseDirectory (), wd .getCanonicalFile () );
182
183
}
@@ -337,23 +338,23 @@ public void testShouldSetQuietFlagFromRequest()
337
338
338
339
mclb .setFlags ( newRequest ().setQuiet ( true ), cli );
339
340
340
- assertArgumentsPresent ( cli , Collections .singleton ( "-q" ));
341
+ assertArgumentsPresent ( cli , Collections .singleton ( "-q" ) );
341
342
}
342
343
343
344
@ Test
344
345
public void testShouldSetNonRecursiveFlagsFromRequest ()
345
346
{
346
347
mclb .setFlags ( newRequest ().setRecursive ( false ), cli );
347
348
348
- assertArgumentsPresent ( cli , Collections .singleton ( "-N" ));
349
+ assertArgumentsPresent ( cli , Collections .singleton ( "-N" ) );
349
350
}
350
351
351
352
@ Test
352
353
public void testShouldSetShowVersionFlagsFromRequest ()
353
354
{
354
355
mclb .setFlags ( newRequest ().setShowVersion ( true ), cli );
355
356
356
- assertArgumentsPresent ( cli , Collections .singleton ( "-V" ));
357
+ assertArgumentsPresent ( cli , Collections .singleton ( "-V" ) );
357
358
}
358
359
359
360
@ Test
@@ -389,7 +390,7 @@ public void testProjectsAndAlsoMake()
389
390
{
390
391
391
392
mclb .setReactorBehavior ( newRequest ().setProjects ( Collections .singletonList ( "proj1" ) ).setAlsoMake ( true ),
392
- cli );
393
+ cli );
393
394
394
395
assertArgumentsPresentInOrder ( cli , "-pl" , "proj1" , "-am" );
395
396
}
@@ -471,6 +472,23 @@ public void testShouldSetFailNeverFlagFromRequest()
471
472
assertArgumentsPresent ( cli , Collections .singleton ( "-fn" ) );
472
473
}
473
474
475
+
476
+ @ Test
477
+ public void testShouldAddArg () throws CommandLineConfigurationException
478
+ {
479
+ InvocationRequest request = newRequest ()
480
+ .addArg ( "arg1" )
481
+ .addArg ( "arg2" )
482
+ .setQuiet ( true )
483
+ .setBuilder ( "bId" );
484
+
485
+ Commandline commandline = mclb .build ( request );
486
+
487
+ String [] arguments = commandline .getArguments ();
488
+
489
+ assertArrayEquals ( Arrays .asList ( "-b" , "bId" , "-q" , "arg1" , "arg2" ).toArray (), arguments );
490
+ }
491
+
474
492
@ Test
475
493
public void testShouldUseDefaultOfFailFastWhenSpecifiedInRequest ()
476
494
{
@@ -489,14 +507,14 @@ public void testShouldUseDefaultOfFailFastWhenSpecifiedInRequest()
489
507
public void testShouldSetNoTransferProgressFlagFromRequest ()
490
508
{
491
509
mclb .setFlags ( newRequest ().setNoTransferProgress ( true ), cli );
492
- assertArgumentsPresent ( cli , Collections .singleton ( "-ntp" ));
510
+ assertArgumentsPresent ( cli , Collections .singleton ( "-ntp" ) );
493
511
}
494
512
495
513
@ Test
496
514
public void testShouldSpecifyFileOptionUsingNonStandardPomFileLocation ()
497
515
throws Exception
498
516
{
499
- File projectDir = temporaryFolder .newFolder ( "invoker-tests" , "file-option-nonstd-pom-file-location" );
517
+ File projectDir = temporaryFolder .newFolder ( "invoker-tests" , "file-option-nonstd-pom-file-location" );
500
518
501
519
File pomFile = createDummyFile ( projectDir , "non-standard-pom.xml" ).getCanonicalFile ();
502
520
@@ -946,7 +964,7 @@ private File createDummyFile( File directory, String filename )
946
964
throws IOException
947
965
{
948
966
File dummyFile = new File ( directory , filename );
949
-
967
+
950
968
try ( FileWriter writer = new FileWriter ( dummyFile ) )
951
969
{
952
970
writer .write ( "This is a dummy file." );
0 commit comments