@@ -16,6 +16,7 @@ import au.com.dius.pact.provider.ProviderVerifier
16
16
import au.com.dius.pact.provider.TestResultAccumulator
17
17
import au.com.dius.pact.provider.junit.AllowOverridePactUrl
18
18
import au.com.dius.pact.provider.junit.Consumer
19
+ import au.com.dius.pact.provider.junit.IgnoreNoPactsToVerify
19
20
import au.com.dius.pact.provider.junit.JUnitProviderTestSupport
20
21
import au.com.dius.pact.provider.junit.JUnitProviderTestSupport.checkForOverriddenPactUrl
21
22
import au.com.dius.pact.provider.junit.JUnitProviderTestSupport.filterPactsByAnnotations
@@ -24,6 +25,7 @@ import au.com.dius.pact.provider.junit.Provider
24
25
import au.com.dius.pact.provider.junit.State
25
26
import au.com.dius.pact.provider.junit.StateChangeAction
26
27
import au.com.dius.pact.provider.junit.VerificationReports
28
+ import au.com.dius.pact.provider.junit.loader.NoPactsFoundException
27
29
import au.com.dius.pact.provider.junit.loader.PactLoader
28
30
import au.com.dius.pact.provider.junit.loader.PactSource
29
31
import au.com.dius.pact.provider.reporters.ReporterManager
@@ -357,9 +359,19 @@ class PactVerificationStateChangeExtension(
357
359
* a test template method on a test class annotated with a @Provider annotation.
358
360
*/
359
361
open class PactVerificationInvocationContextProvider : TestTemplateInvocationContextProvider {
362
+
360
363
override fun provideTestTemplateInvocationContexts (context : ExtensionContext ): Stream <TestTemplateInvocationContext > {
361
364
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
+ }
362
373
374
+ private fun resolvePactSources (context : ExtensionContext ): List <PactVerificationExtension > {
363
375
val providerInfo = AnnotationSupport .findAnnotation(context.requiredTestClass, Provider ::class .java)
364
376
if (! providerInfo.isPresent) {
365
377
throw UnsupportedOperationException (" Provider name should be specified by using @${Provider ::class .java.name} annotation" )
@@ -382,15 +394,9 @@ open class PactVerificationInvocationContextProvider : TestTemplateInvocationCon
382
394
filterPactsByAnnotations(pacts, context.requiredTestClass).map { pact -> pact to it.pactSource }
383
395
}.filter { p -> consumerName == null || p.first.consumer.name == consumerName }
384
396
385
- val tests = pactSources.flatMap { pact ->
397
+ return pactSources.flatMap { pact ->
386
398
pact.first.interactions.map { PactVerificationExtension (pact.first, pact.second, it, serviceName, consumerName) }
387
399
}
388
-
389
- if (tests.isEmpty()) {
390
- throw UnsupportedOperationException (" No Pact files where found to verify" )
391
- }
392
-
393
- return tests.stream() as Stream <TestTemplateInvocationContext >
394
400
}
395
401
396
402
protected open fun getValueResolver (context : ExtensionContext ): ValueResolver ? = null
0 commit comments