File tree 3 files changed +10
-4
lines changed
src/test/kotlin/io/grpc/kotlin
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ subprojects {
86
86
}
87
87
88
88
retry {
89
- maxRetries.set( 10 )
89
+ maxRetries = 10
90
90
}
91
91
92
92
afterSuite(
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ dependencies {
15
15
testImplementation(libs.gradle.tooling.api)
16
16
testImplementation(libs.commons.io)
17
17
testImplementation(libs.junit.jupiter)
18
+ testImplementation(libs.slf4j.simple)
18
19
testRuntimeOnly(libs.junit.platform.launcher)
19
- testRuntimeOnly(libs.slf4j.simple)
20
20
}
21
21
22
22
tasks.named<Test >(" test" ) {
@@ -34,8 +34,7 @@ tasks.named<Test>("test") {
34
34
}
35
35
36
36
retry {
37
- maxRetries = 1
38
- maxFailures = 1
37
+ maxRetries = 3
39
38
}
40
39
41
40
systemProperties[" grpc-kotlin-version" ] = project.version
Original file line number Diff line number Diff line change @@ -5,7 +5,9 @@ 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
+ import org.slf4j.LoggerFactory
8
9
import org.testcontainers.containers.GenericContainer
10
+ import org.testcontainers.containers.output.Slf4jLogConsumer
9
11
import org.testcontainers.containers.wait.strategy.Wait
10
12
import java.io.File
11
13
import java.net.URI
@@ -17,6 +19,8 @@ import kotlin.io.path.inputStream
17
19
18
20
class ExamplesTest {
19
21
22
+ private val logger = LoggerFactory .getLogger(ExamplesTest ::class .java)
23
+
20
24
// todo: add test to verify jdk8 usage
21
25
@Test
22
26
fun server_client (@TempDir tempDir : Path ) {
@@ -73,11 +77,14 @@ class ExamplesTest {
73
77
.withGradleDistribution(distributionUrl)
74
78
.build()
75
79
80
+ val logConsumer = Slf4jLogConsumer (logger)
81
+
76
82
val container = GenericContainer (" grpc-kotlin-examples-server" )
77
83
.withExposedPorts(50051 )
78
84
.waitingFor(Wait .forListeningPort())
79
85
80
86
container.start()
87
+ container.followOutput(logConsumer)
81
88
82
89
val clientResult = GradleRunner .create()
83
90
.withProjectDir(tempDir.toFile())
You can’t perform that action at this time.
0 commit comments