Skip to content

Commit dfb4e5f

Browse files
author
Ronald Holshausen
committedFeb 22, 2020
feat: use a dummy test for JUnit 5 tests with IgnoreNoPactsToVerify annotation #768
1 parent d26555d commit dfb4e5f

File tree

4 files changed

+73
-13
lines changed

4 files changed

+73
-13
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
package au.com.dius.pact.provider.junit5
2+
3+
import au.com.dius.pact.core.model.Interaction
4+
import au.com.dius.pact.core.model.Pact
5+
import au.com.dius.pact.provider.ProviderVerifier
6+
import org.apache.http.HttpRequest
7+
import org.junit.jupiter.api.extension.Extension
8+
import org.junit.jupiter.api.extension.ExtensionContext
9+
import org.junit.jupiter.api.extension.ParameterContext
10+
import org.junit.jupiter.api.extension.ParameterResolver
11+
import org.junit.jupiter.api.extension.TestTemplateInvocationContext
12+
13+
object DummyTestTemplate : TestTemplateInvocationContext, ParameterResolver {
14+
15+
override fun getDisplayName(invocationIndex: Int) = "No pacts found to verify"
16+
17+
override fun getAdditionalExtensions(): MutableList<Extension> {
18+
return mutableListOf(this)
19+
}
20+
21+
override fun supportsParameter(parameterContext: ParameterContext, extensionContext: ExtensionContext): Boolean {
22+
return when (parameterContext.parameter.type) {
23+
Pact::class.java -> true
24+
Interaction::class.java -> true
25+
HttpRequest::class.java -> true
26+
PactVerificationContext::class.java -> true
27+
ProviderVerifier::class.java -> true
28+
else -> false
29+
}
30+
}
31+
32+
override fun resolveParameter(parameterContext: ParameterContext, extensionContext: ExtensionContext): Any? {
33+
return null
34+
}
35+
}

‎provider/pact-jvm-provider-junit5/src/main/kotlin/au/com/dius/pact/provider/junit5/PactJUnit5VerificationProvider.kt

+13-7
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import au.com.dius.pact.provider.ProviderVerifier
1616
import au.com.dius.pact.provider.TestResultAccumulator
1717
import au.com.dius.pact.provider.junit.AllowOverridePactUrl
1818
import au.com.dius.pact.provider.junit.Consumer
19+
import au.com.dius.pact.provider.junit.IgnoreNoPactsToVerify
1920
import au.com.dius.pact.provider.junit.JUnitProviderTestSupport
2021
import au.com.dius.pact.provider.junit.JUnitProviderTestSupport.checkForOverriddenPactUrl
2122
import au.com.dius.pact.provider.junit.JUnitProviderTestSupport.filterPactsByAnnotations
@@ -24,6 +25,7 @@ import au.com.dius.pact.provider.junit.Provider
2425
import au.com.dius.pact.provider.junit.State
2526
import au.com.dius.pact.provider.junit.StateChangeAction
2627
import au.com.dius.pact.provider.junit.VerificationReports
28+
import au.com.dius.pact.provider.junit.loader.NoPactsFoundException
2729
import au.com.dius.pact.provider.junit.loader.PactLoader
2830
import au.com.dius.pact.provider.junit.loader.PactSource
2931
import au.com.dius.pact.provider.reporters.ReporterManager
@@ -357,9 +359,19 @@ class PactVerificationStateChangeExtension(
357359
* a test template method on a test class annotated with a @Provider annotation.
358360
*/
359361
open class PactVerificationInvocationContextProvider : TestTemplateInvocationContextProvider {
362+
360363
override fun provideTestTemplateInvocationContexts(context: ExtensionContext): Stream<TestTemplateInvocationContext> {
361364
logger.debug { "provideTestTemplateInvocationContexts called" }
365+
val tests = resolvePactSources(context)
366+
return when {
367+
tests.isNotEmpty() -> tests.stream() as Stream<TestTemplateInvocationContext>
368+
AnnotationSupport.isAnnotated(context.requiredTestClass, IgnoreNoPactsToVerify::class.java) ->
369+
listOf(DummyTestTemplate).stream() as Stream<TestTemplateInvocationContext>
370+
else -> throw NoPactsFoundException("No Pact files where found to verify")
371+
}
372+
}
362373

374+
private fun resolvePactSources(context: ExtensionContext): List<PactVerificationExtension> {
363375
val providerInfo = AnnotationSupport.findAnnotation(context.requiredTestClass, Provider::class.java)
364376
if (!providerInfo.isPresent) {
365377
throw UnsupportedOperationException("Provider name should be specified by using @${Provider::class.java.name} annotation")
@@ -382,15 +394,9 @@ open class PactVerificationInvocationContextProvider : TestTemplateInvocationCon
382394
filterPactsByAnnotations(pacts, context.requiredTestClass).map { pact -> pact to it.pactSource }
383395
}.filter { p -> consumerName == null || p.first.consumer.name == consumerName }
384396

385-
val tests = pactSources.flatMap { pact ->
397+
return pactSources.flatMap { pact ->
386398
pact.first.interactions.map { PactVerificationExtension(pact.first, pact.second, it, serviceName, consumerName) }
387399
}
388-
389-
if (tests.isEmpty()) {
390-
throw UnsupportedOperationException("No Pact files where found to verify")
391-
}
392-
393-
return tests.stream() as Stream<TestTemplateInvocationContext>
394400
}
395401

396402
protected open fun getValueResolver(context: ExtensionContext): ValueResolver? = null

‎provider/pact-jvm-provider-junit5/src/test/groovy/au/com/dius/pact/provider/junit5/PactVerificationInvocationContextProviderSpec.groovy

+25-6
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ package au.com.dius.pact.provider.junit5
22

33
import au.com.dius.pact.core.model.Pact
44
import au.com.dius.pact.provider.junit.Consumer
5+
import au.com.dius.pact.provider.junit.IgnoreNoPactsToVerify
56
import au.com.dius.pact.provider.junit.Provider
67
import au.com.dius.pact.provider.junit.State
8+
import au.com.dius.pact.provider.junit.loader.NoPactsFoundException
79
import au.com.dius.pact.provider.junit.loader.PactFilter
810
import au.com.dius.pact.provider.junit.loader.PactFolder
911
import au.com.dius.pact.provider.junit.loader.PactFolderLoader
@@ -40,13 +42,18 @@ class PactVerificationInvocationContextProviderSpec extends Specification {
4042
Target target
4143
}
4244

43-
static class InvalidStateChangeTestClass {
45+
@Provider('myAwesomeService')
46+
@Consumer('doesNotExist')
47+
@PactFolder('pacts')
48+
@IgnoreNoPactsToVerify
49+
static class TestClassWithNoPactsWithIgnore {
50+
@TestTarget
51+
Target target
52+
}
4453

54+
static class InvalidStateChangeTestClass {
4555
@State('one')
46-
protected void incorrectStateChangeParameters(int one, String two, Map three) {
47-
48-
}
49-
56+
protected void incorrectStateChangeParameters(int one, String two, Map three) { }
5057
}
5158

5259
static class InvalidStateChangeTestClass2 extends InvalidStateChangeTestClass {
@@ -166,10 +173,22 @@ class PactVerificationInvocationContextProviderSpec extends Specification {
166173
} ] as ExtensionContext)
167174

168175
then:
169-
def exp = thrown(UnsupportedOperationException)
176+
def exp = thrown(NoPactsFoundException)
170177
exp.message == 'No Pact files where found to verify'
171178
}
172179

180+
@Issue('#768')
181+
def 'returns a dummy test if there are no pacts to verify and IgnoreNoPactsToVerify is present'() {
182+
when:
183+
def result = provider.provideTestTemplateInvocationContexts(['getTestClass': {
184+
Optional.of(TestClassWithNoPactsWithIgnore)
185+
} ] as ExtensionContext).iterator().toList()
186+
187+
then:
188+
result.size() == 1
189+
result.first() instanceof DummyTestTemplate
190+
}
191+
173192
@Unroll
174193
def 'throws an exception if there are invalid state change methods'() {
175194
when:

0 commit comments

Comments
 (0)
Please sign in to comment.