Skip to content

Commit 5d4ca74

Browse files
committed
logging from container and retries
1 parent 69bcfe9 commit 5d4ca74

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ subprojects {
8686
}
8787

8888
retry {
89-
maxRetries.set(10)
89+
maxRetries = 10
9090
}
9191

9292
afterSuite(

integration_testing/build.gradle.kts

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ dependencies {
1515
testImplementation(libs.gradle.tooling.api)
1616
testImplementation(libs.commons.io)
1717
testImplementation(libs.junit.jupiter)
18+
testImplementation(libs.slf4j.simple)
1819
testRuntimeOnly(libs.junit.platform.launcher)
19-
testRuntimeOnly(libs.slf4j.simple)
2020
}
2121

2222
tasks.named<Test>("test") {
@@ -34,8 +34,7 @@ tasks.named<Test>("test") {
3434
}
3535

3636
retry {
37-
maxRetries = 1
38-
maxFailures = 1
37+
maxRetries = 3
3938
}
4039

4140
systemProperties["grpc-kotlin-version"] = project.version

integration_testing/src/test/kotlin/io/grpc/kotlin/ExamplesTest.kt

+7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ import org.gradle.testkit.runner.GradleRunner
55
import org.junit.jupiter.api.Assertions.assertTrue
66
import org.junit.jupiter.api.Test
77
import org.junit.jupiter.api.io.TempDir
8+
import org.slf4j.LoggerFactory
89
import org.testcontainers.containers.GenericContainer
10+
import org.testcontainers.containers.output.Slf4jLogConsumer
911
import org.testcontainers.containers.wait.strategy.Wait
1012
import java.io.File
1113
import java.net.URI
@@ -17,6 +19,8 @@ import kotlin.io.path.inputStream
1719

1820
class ExamplesTest {
1921

22+
private val logger = LoggerFactory.getLogger(ExamplesTest::class.java)
23+
2024
// todo: add test to verify jdk8 usage
2125
@Test
2226
fun server_client(@TempDir tempDir: Path) {
@@ -73,11 +77,14 @@ class ExamplesTest {
7377
.withGradleDistribution(distributionUrl)
7478
.build()
7579

80+
val logConsumer = Slf4jLogConsumer(logger)
81+
7682
val container = GenericContainer("grpc-kotlin-examples-server")
7783
.withExposedPorts(50051)
7884
.waitingFor(Wait.forListeningPort())
7985

8086
container.start()
87+
container.followOutput(logConsumer)
8188

8289
val clientResult = GradleRunner.create()
8390
.withProjectDir(tempDir.toFile())

0 commit comments

Comments
 (0)