1
1
package io.grpc.kotlin
2
2
3
- import org.gradle.internal.impldep.org. apache.commons.io.FileUtils
3
+ import org.apache.commons.io.FileUtils
4
4
import org.gradle.testkit.runner.GradleRunner
5
5
import org.junit.jupiter.api.Assertions.assertTrue
6
6
import org.junit.jupiter.api.Test
7
7
import org.junit.jupiter.api.io.TempDir
8
8
import org.testcontainers.containers.GenericContainer
9
9
import org.testcontainers.containers.wait.strategy.Wait
10
10
import java.io.File
11
+ import java.net.URI
11
12
import java.nio.file.Path
13
+ import java.util.Properties
14
+ import kotlin.io.path.div
15
+ import kotlin.io.path.inputStream
16
+
12
17
13
18
class ExamplesTest {
14
19
@@ -50,16 +55,22 @@ class ExamplesTest {
50
55
}
51
56
settingsGradle.writeText(settingsGradleNewLines.joinToString(" \n " ))
52
57
58
+ val gradleWrapperProperties = Properties ()
59
+ gradleWrapperProperties.load((tempDir / " gradle/wrapper/gradle-wrapper.properties" ).inputStream())
60
+ val distributionUrl = URI .create(gradleWrapperProperties.getProperty(" distributionUrl" ))
61
+
53
62
val dependencyResult = GradleRunner .create()
54
63
.withProjectDir(tempDir.toFile())
55
64
.withArguments(" :stub:dependencies" )
65
+ .withGradleDistribution(distributionUrl)
56
66
.build()
57
67
58
68
assertTrue(dependencyResult.output.contains(" io.grpc:grpc-kotlin-stub:$grpcKotlinVersion " ))
59
69
60
70
GradleRunner .create()
61
71
.withProjectDir(tempDir.toFile())
62
72
.withArguments(" :server:jibDockerBuild" , " --image=grpc-kotlin-examples-server" )
73
+ .withGradleDistribution(distributionUrl)
63
74
.build()
64
75
65
76
val container = GenericContainer (" grpc-kotlin-examples-server" )
@@ -70,11 +81,12 @@ class ExamplesTest {
70
81
71
82
val clientResult = GradleRunner .create()
72
83
.withProjectDir(tempDir.toFile())
73
- .withEnvironment(mapOf (" PORT" to container.getFirstMappedPort() .toString()))
84
+ .withEnvironment(mapOf (" PORT" to container.firstMappedPort .toString()))
74
85
.withArguments(" :client:HelloWorldClient" )
86
+ .withGradleDistribution(distributionUrl)
75
87
.build()
76
88
77
89
assertTrue(clientResult.output.contains(" Received: Hello world" ))
78
90
}
79
91
80
- }
92
+ }
0 commit comments