Skip to content

Commit 01d8235

Browse files
author
Ronald Holshausen
committedMar 21, 2020
test: use springboot test to verify pact broker values from spring context #1051
1 parent 049ac1f commit 01d8235

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed
 

‎provider/pact-jvm-provider-junit5-spring/build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ dependencies {
22
implementation project(path: ":provider:pact-jvm-provider-junit5", configuration: 'default')
33
implementation 'org.springframework:spring-context:5.2.3.RELEASE'
44
implementation 'org.springframework:spring-test:5.2.3.RELEASE'
5+
6+
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.2.5.RELEASE'
7+
testImplementation 'org.springframework.boot:spring-boot-starter-web:2.2.5.RELEASE'
58
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package au.com.dius.pact.provider.spring.junit5
2+
3+
import au.com.dius.pact.provider.junit.IgnoreNoPactsToVerify
4+
import au.com.dius.pact.provider.junit.Provider
5+
import au.com.dius.pact.provider.junit.loader.PactBroker
6+
import au.com.dius.pact.provider.junit5.PactVerificationContext
7+
import org.junit.jupiter.api.TestTemplate
8+
import org.junit.jupiter.api.extension.ExtendWith
9+
import org.springframework.boot.autoconfigure.SpringBootApplication
10+
import org.springframework.boot.test.context.SpringBootTest
11+
import org.springframework.test.context.junit.jupiter.SpringExtension
12+
13+
@SpringBootApplication
14+
open class TestApplication
15+
16+
@ExtendWith(SpringExtension::class)
17+
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
18+
@Provider("Animal Profile Service")
19+
@PactBroker
20+
@IgnoreNoPactsToVerify
21+
internal class PactVerificationSpringProviderTest {
22+
@TestTemplate
23+
@ExtendWith(PactVerificationSpringProvider::class)
24+
fun pactVerificationTestTemplate(context: PactVerificationContext?) {
25+
context?.verifyInteraction()
26+
}
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pactbroker:
2+
host: localhost
3+
port: ${local.server.port}

0 commit comments

Comments
 (0)
Please sign in to comment.