37
37
import org .junit .jupiter .api .AfterEach ;
38
38
import org .junit .jupiter .api .BeforeEach ;
39
39
import org .junit .jupiter .api .Test ;
40
+ import org .junit .jupiter .api .condition .EnabledOnOs ;
41
+ import org .junit .jupiter .api .condition .OS ;
40
42
import org .junit .jupiter .api .io .TempDir ;
41
43
42
44
import static org .junit .jupiter .api .Assertions .assertArrayEquals ;
43
45
import static org .junit .jupiter .api .Assertions .assertEquals ;
44
46
import static org .junit .jupiter .api .Assertions .assertFalse ;
47
+ import static org .junit .jupiter .api .Assertions .assertThrows ;
45
48
import static org .junit .jupiter .api .Assertions .assertTrue ;
46
- import static org .junit .jupiter .api .Assertions .fail ;
47
49
import static org .junit .jupiter .api .Assumptions .assumeTrue ;
48
50
49
51
public class MavenCommandLineBuilderTest {
@@ -75,21 +77,15 @@ public void testShouldFailToSetLocalRepoLocationGloballyWhenItIsAFile() {
75
77
76
78
mclb .setLocalRepositoryDirectory (lrd );
77
79
78
- try {
79
- mclb .setLocalRepository (newRequest (), cli );
80
- fail ("Should not set local repo location to point to a file." );
81
- } catch (IllegalArgumentException expected ) {
82
- }
80
+ InvocationRequest request = newRequest ();
81
+ assertThrows (IllegalArgumentException .class , () -> mclb .setLocalRepository (request , cli ));
83
82
}
84
83
85
84
@ Test
86
85
public void testShouldFailToSetLocalRepoLocationFromRequestWhenItIsAFile () {
87
86
InvocationRequest request = newRequest ().setLocalRepositoryDirectory (lrd );
88
- try {
89
- mclb .setLocalRepository (request , cli );
90
- fail ("Should not set local repo location to point to a file." );
91
- } catch (IllegalArgumentException expected ) {
92
- }
87
+
88
+ assertThrows (IllegalArgumentException .class , () -> mclb .setLocalRepository (request , cli ));
93
89
}
94
90
95
91
@ Test
@@ -207,11 +203,7 @@ private File setupTempMavenHomeIfMissing(boolean forceDummy) throws Exception {
207
203
public void testShouldFailIfLoggerSetToNull () {
208
204
mclb .setLogger (null );
209
205
210
- try {
211
- mclb .checkRequiredState ();
212
- fail ("Should not allow execution to proceed when logger is missing." );
213
- } catch (IllegalStateException expected ) {
214
- }
206
+ assertThrows (IllegalStateException .class , () -> mclb .checkRequiredState ());
215
207
}
216
208
217
209
@ Test
@@ -236,21 +228,19 @@ public void testShouldFindDummyMavenExecutable() throws Exception {
236
228
}
237
229
238
230
@ Test
231
+ @ EnabledOnOs (OS .WINDOWS )
239
232
public void testShouldFindDummyPS1MavenExecutable () throws Exception {
240
233
File dummyMavenHomeBin = Files .createDirectories (temporaryFolder
241
234
.resolve ("invoker-tests" )
242
235
.resolve ("dummy-maven-home" )
243
236
.resolve ("bin" ))
244
237
.toFile ();
245
238
246
- File check ;
247
- if (Os .isFamily (Os .FAMILY_WINDOWS )) {
248
- check = createDummyFile (dummyMavenHomeBin , "mvn.ps1" );
249
- mclb .setMavenHome (dummyMavenHomeBin .getParentFile ());
250
- mclb .setupMavenExecutable (newRequest ());
239
+ File check = createDummyFile (dummyMavenHomeBin , "mvn.ps1" );
240
+ mclb .setMavenHome (dummyMavenHomeBin .getParentFile ());
241
+ mclb .setupMavenExecutable (newRequest ());
251
242
252
- assertEquals (check .getCanonicalPath (), mclb .getMavenExecutable ().getCanonicalPath ());
253
- }
243
+ assertEquals (check .getCanonicalPath (), mclb .getMavenExecutable ().getCanonicalPath ());
254
244
}
255
245
256
246
@ Test
0 commit comments