1
1
package tools .jackson .integtest .gradle ;
2
2
3
3
import java .io .*;
4
+ import java .net .URL ;
4
5
import java .nio .file .Files ;
5
6
6
7
import org .junit .jupiter .api .Test ;
12
13
13
14
public class GradleTest
14
15
{
15
- @ TempDir
16
- public File testFolder ;
17
-
18
16
/**
19
17
* This test calls the Gradle build in 'src/test/resources/com/fasterxml/jackson/integtest/gradle' which:
20
18
* - Collects all entries from the latest Jackson BOM
@@ -27,19 +25,24 @@ public class GradleTest
27
25
* <a href="https://blog.gradle.org/alignment-with-gradle-module-metadata">blog.gradle.org/alignment-with-gradle-module-metadata</a>
28
26
*/
29
27
@ Test
30
- public void testJacksonBomDependency () throws Exception {
31
- copyToTestFolder ("settings.gradle.kts" );
32
- copyToTestFolder ("build.gradle.kts" );
33
- build (":checkMetadata" );
28
+ public void testJacksonBomDependency (@ TempDir File tempDir ) throws Exception {
29
+ copyToTestFolder (tempDir , "settings.gradle.kts" );
30
+ copyToTestFolder (tempDir , "build.gradle.kts" );
31
+ build (tempDir , ":checkMetadata" );
34
32
}
35
33
36
- private void copyToTestFolder (String fileName ) throws IOException {
37
- Files .copy (new File (requireNonNull (getClass ().getResource (fileName )).getFile ()).toPath (),
34
+ private void copyToTestFolder (File testFolder , String fileName ) throws IOException {
35
+ URL resource = getClass ().getResource (fileName );
36
+ assertNotNull (resource , "Null resource '" +fileName +"', from `" +getClass ()+"`" );
37
+ Files .copy (new File (resource .getFile ()).toPath (),
38
38
new File (testFolder , fileName ).toPath ());
39
39
}
40
40
41
- private void build (String task ) throws Exception {
42
- String gradlew = requireNonNull (getClass ().getResource ("gradlew" )).getFile ();
41
+ private void build (File testFolder , String task ) throws Exception {
42
+ String fileName = "gradlew" ;
43
+ URL resource = getClass ().getResource (fileName );
44
+ assertNotNull (resource , "Null resource '" +fileName +"', from `" +getClass ()+"`" );
45
+ String gradlew = resource .getFile ();
43
46
Runtime .getRuntime ().exec ("chmod a+x " + gradlew ).waitFor ();
44
47
ProcessBuilder bp = new ProcessBuilder (gradlew , task , "-q" ,
45
48
"--project-dir" , testFolder .getAbsolutePath ());
0 commit comments