Class GuiceyExtensionsSupport
- java.lang.Object
-
- ru.vyarus.dropwizard.guice.test.jupiter.ext.TestParametersSupport
-
- ru.vyarus.dropwizard.guice.test.jupiter.ext.GuiceyExtensionsSupport
-
- All Implemented Interfaces:
org.junit.jupiter.api.extension.AfterAllCallback,org.junit.jupiter.api.extension.AfterEachCallback,org.junit.jupiter.api.extension.BeforeAllCallback,org.junit.jupiter.api.extension.BeforeEachCallback,org.junit.jupiter.api.extension.Extension,org.junit.jupiter.api.extension.ParameterResolver,org.junit.jupiter.api.extension.TestInstantiationAwareExtension
- Direct Known Subclasses:
TestDropwizardAppExtension,TestGuiceyAppExtension
public abstract class GuiceyExtensionsSupport extends TestParametersSupport implements org.junit.jupiter.api.extension.BeforeAllCallback, org.junit.jupiter.api.extension.AfterAllCallback, org.junit.jupiter.api.extension.BeforeEachCallback, org.junit.jupiter.api.extension.AfterEachCallback
Base class for junit 5 extensions implementations. All extensions useDropwizardTestSupportobject for actual execution (only configuration differs).Extensions might be used on class level (annotation and manual registration in static field; when extension start dropwizard app before all tests and shut down it after all tests) and on method level (manual registration in non static field; application starts before each test).
Nested tests also supported.
Test instance is not managed by guice! Only
Injector.injectMembers(Object)applied for it to process test fields injection. Guice AOP can't be used on test methods. Technically, creating test instances with guice is possible, but in this case nested tests could not work at all, which is unacceptable.Extension detects static fields of
GuiceyConfigurationHooktype, annotated withEnableHookand initialize these hooks automatically. It was done like this to simplify customizations, when main extension could be declared as annotation and hook as field. Also, it was impossible to implement hooks support with junit extension. Hook field could be declared even in base test class.Also, detects
TestEnvironmentSetupfields annotated withEnableSetup. Behaviour is the same as with hook fields.For external integrations (other extensions), there is a special "hack" allowing to access
DropwizardTestSupportobject (and so get access to injector):lookupSupport(ExtensionContext). And shortcutslookupInjector(ExtensionContext)andlookupClient(ExtensionContext).- Since:
- 29.04.2020
- See Also:
for supported test parameters
-
-
Field Summary
Fields Modifier and Type Field Description protected ListenersSupportlistenersEvent listeners support.protected TestExtensionsTrackertrackerExtensions registration tracker.
-
Constructor Summary
Constructors Constructor Description GuiceyExtensionsSupport(TestExtensionsTracker tracker)Create extensions support.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidafterAll(org.junit.jupiter.api.extension.ExtensionContext context)voidafterEach(org.junit.jupiter.api.extension.ExtensionContext context)voidbeforeAll(org.junit.jupiter.api.extension.ExtensionContext context)voidbeforeEach(org.junit.jupiter.api.extension.ExtensionContext context)static booleancloseReusableApp(org.junit.jupiter.api.extension.ExtensionContext extensionContext)Close global application instance.protected ClientSupportgetClient(org.junit.jupiter.api.extension.ExtensionContext extensionContext)protected abstract ExtensionConfiggetConfig(org.junit.jupiter.api.extension.ExtensionContext context)Returns existing config or parse it from annotation.protected static org.junit.jupiter.api.extension.ExtensionContext.StoregetExtensionStore(org.junit.jupiter.api.extension.ExtensionContext context)protected java.util.Optional<com.google.inject.Injector>getInjector(org.junit.jupiter.api.extension.ExtensionContext extensionContext)protected io.dropwizard.testing.DropwizardTestSupport<?>getSupport(org.junit.jupiter.api.extension.ExtensionContext extensionContext)static booleanisReusableAppUsed(org.junit.jupiter.api.extension.ExtensionContext extensionContext)Shortcut for testing if current test is using reusable application instead of test-specific application instance.static java.util.Optional<ClientSupport>lookupClient(org.junit.jupiter.api.extension.ExtensionContext extensionContext)Shortcut forClientSupportobject lookup by other extensions.static java.util.Optional<com.google.inject.Injector>lookupInjector(org.junit.jupiter.api.extension.ExtensionContext extensionContext)Lookup test-specific injector.static <C extends io.dropwizard.core.Configuration>
java.util.Optional<io.dropwizard.testing.DropwizardTestSupport<C>>lookupSupport(org.junit.jupiter.api.extension.ExtensionContext extensionContext)Static "hack" for other extensions extending base guicey extensions abilities.protected abstract io.dropwizard.testing.DropwizardTestSupport<?>prepareTestSupport(java.lang.String configPrefix, org.junit.jupiter.api.extension.ExtensionContext context, java.util.List<TestEnvironmentSetup> setups)The only role of actual extension class is to configureDropwizardTestSupportobject according to annotation.-
Methods inherited from class ru.vyarus.dropwizard.guice.test.jupiter.ext.TestParametersSupport
resolveParameter, supportsParameter
-
-
-
-
Field Detail
-
tracker
protected final TestExtensionsTracker tracker
Extensions registration tracker.
-
listeners
protected final ListenersSupport listeners
Event listeners support.
-
-
Constructor Detail
-
GuiceyExtensionsSupport
public GuiceyExtensionsSupport(TestExtensionsTracker tracker)
Create extensions support.- Parameters:
tracker- tracker
-
-
Method Detail
-
beforeAll
public void beforeAll(org.junit.jupiter.api.extension.ExtensionContext context) throws java.lang.Exception- Specified by:
beforeAllin interfaceorg.junit.jupiter.api.extension.BeforeAllCallback- Throws:
java.lang.Exception
-
beforeEach
public void beforeEach(org.junit.jupiter.api.extension.ExtensionContext context) throws java.lang.Exception- Specified by:
beforeEachin interfaceorg.junit.jupiter.api.extension.BeforeEachCallback- Throws:
java.lang.Exception
-
afterEach
public void afterEach(org.junit.jupiter.api.extension.ExtensionContext context) throws java.lang.Exception- Specified by:
afterEachin interfaceorg.junit.jupiter.api.extension.AfterEachCallback- Throws:
java.lang.Exception
-
afterAll
public void afterAll(org.junit.jupiter.api.extension.ExtensionContext context) throws java.lang.Exception- Specified by:
afterAllin interfaceorg.junit.jupiter.api.extension.AfterAllCallback- Throws:
java.lang.Exception
-
lookupSupport
public static <C extends io.dropwizard.core.Configuration> java.util.Optional<io.dropwizard.testing.DropwizardTestSupport<C>> lookupSupport(org.junit.jupiter.api.extension.ExtensionContext extensionContext)
Static "hack" for other extensions extending base guicey extensions abilities.The only thin moment here is extensions order! Junit preserve declaration order so in most cases it should not be a problem.
- Type Parameters:
C- configuration type- Parameters:
extensionContext- extension context- Returns:
- dropwizard support object prepared by guicey extension, or empty optional if no guicey extension used or its beforeAll hook was not called yet
-
lookupInjector
public static java.util.Optional<com.google.inject.Injector> lookupInjector(org.junit.jupiter.api.extension.ExtensionContext extensionContext)
Lookup test-specific injector.InjectorLookupmechanism not used here because it does not provide injector after application stop, which is not very usable for tests.- Parameters:
extensionContext- extension context- Returns:
- application injector or empty optional
-
lookupClient
public static java.util.Optional<ClientSupport> lookupClient(org.junit.jupiter.api.extension.ExtensionContext extensionContext)
Shortcut forClientSupportobject lookup by other extensions.Custom extension must be activated after main guicey extension!
- Parameters:
extensionContext- extension context- Returns:
- client factory object or empty optional
-
isReusableAppUsed
public static boolean isReusableAppUsed(org.junit.jupiter.api.extension.ExtensionContext extensionContext)
Shortcut for testing if current test is using reusable application instead of test-specific application instance.- Parameters:
extensionContext- extension context- Returns:
- true if global application instance used, false otherwise
-
closeReusableApp
public static boolean closeReusableApp(org.junit.jupiter.api.extension.ExtensionContext extensionContext)
Close global application instance. Do nothing if no global application registered for provided base class.Method exists to allow creation of custom extension like "@CloseAppAfterTest" to be able to close app at some points (next test would start a fresh app again).
In order to close application before test use
ReusableAppUtilsdirectly (it must be called before extension (which should start new app instance) and so there is no base class in context yet.- Parameters:
extensionContext- extension context- Returns:
- true if app was closed, false otherwise
-
getConfig
protected abstract ExtensionConfig getConfig(org.junit.jupiter.api.extension.ExtensionContext context)
Returns existing config or parse it from annotation.Separate configuration creation is important for application re-use logic when additional actions from
prepareTestSupport(String, org.junit.jupiter.api.extension.ExtensionContext, java.util.List)should be omitted in case if context already created.- Parameters:
context- extension context- Returns:
- extension configuration
-
prepareTestSupport
protected abstract io.dropwizard.testing.DropwizardTestSupport<?> prepareTestSupport(java.lang.String configPrefix, org.junit.jupiter.api.extension.ExtensionContext context, java.util.List<TestEnvironmentSetup> setups)The only role of actual extension class is to configureDropwizardTestSupportobject according to annotation.- Parameters:
configPrefix- configuration properties prefixcontext- extension contextsetups- setup extensions resolved from fields (or empty list)- Returns:
- configured dropwizard test support object
-
getSupport
protected io.dropwizard.testing.DropwizardTestSupport<?> getSupport(org.junit.jupiter.api.extension.ExtensionContext extensionContext)
- Specified by:
getSupportin classTestParametersSupport- Parameters:
extensionContext- junit extension context- Returns:
- dropwizard test support object assigned to test instance or null
-
getClient
protected ClientSupport getClient(org.junit.jupiter.api.extension.ExtensionContext extensionContext)
- Specified by:
getClientin classTestParametersSupport- Parameters:
extensionContext- junit extension context- Returns:
- client factory object assigned to test instance or null
-
getInjector
protected java.util.Optional<com.google.inject.Injector> getInjector(org.junit.jupiter.api.extension.ExtensionContext extensionContext)
- Specified by:
getInjectorin classTestParametersSupport- Parameters:
extensionContext- junit extension context- Returns:
- application injector or null
-
getExtensionStore
protected static org.junit.jupiter.api.extension.ExtensionContext.Store getExtensionStore(org.junit.jupiter.api.extension.ExtensionContext context)
- Parameters:
context- junit context- Returns:
- extension-specific store
-
-