Class JdbiExternalPostgresExtension
java.lang.Object
org.jdbi.v3.testing.junit5.JdbiExtension
org.jdbi.v3.testing.junit5.JdbiExternalPostgresExtension
- All Implemented Interfaces:
AfterAllCallback, AfterEachCallback, BeforeAllCallback, BeforeEachCallback, Extension, ParameterResolver, TestInstantiationAwareExtension
-
Nested Class Summary
Nested classes/interfaces inherited from interface TestInstantiationAwareExtension
TestInstantiationAwareExtension.ExtensionContextScope -
Method Summary
Methods inherited from class JdbiExtension
afterAll, afterEach, attach, beforeAll, beforeEach, enableLeakChecker, externalPostgres, getJdbi, getSharedHandle, h2, installPlugins, openHandle, otjEmbeddedPostgres, postgres, resolveParameter, sqlite, supportsParameter, withConfig, withInitializer, withPlugin, withPluginsModifier and TypeMethodDescriptionvoidafterAll(ExtensionContext context) voidafterEach(ExtensionContext context) final <T> TConvenience method to attach an extension (such as a SqlObject) to the shared handle.voidbeforeAll(ExtensionContext context) voidbeforeEach(ExtensionContext context) final JdbiExtensionenableLeakChecker(boolean enable) Enable tracking of cleanable resources and handles when running tests.static JdbiExtensionCreates an extension that uses an external (outside the scope of an unit test class) postgres database.final JdbigetJdbi()Returns aJdbiinstance linked to the data source used by this extension.final HandleReturns a sharedHandleused by the extension.static JdbiExtensionh2()Creates a new extension using the H2 database.final JdbiExtensionDeprecated, for removal: This API element is subject to removal in a future version.Registering plugins implicitly is less reliable.final HandleOpen a newHandleto the used data source.static JdbiOtjPostgresExtensionCreates a new extension using a managed, embedded postgres database.static JdbiExtensionpostgres(de.softwareforge.testing.postgres.junit5.EmbeddedPgExtension pg) Creates a new extension using a managed, embedded postgres database.resolveParameter(ParameterContext parameterContext, ExtensionContext extensionContext) static JdbiExtensionsqlite()Creates a new extension using the SQLite database.booleansupportsParameter(ParameterContext parameterContext, ExtensionContext extensionContext) final <C extends JdbiConfig<C>>
JdbiExtensionwithConfig(Class<C> configClass, Consumer<C> configurer) Set aJdbiConfigparameter when creating theJdbiinstance.final JdbiExtensionwithInitializer(JdbiExtensionInitializer initializer) Sets aJdbiExtensionInitializerto initialize theJdbiinstance or the attached data source before running a test.final JdbiExtensionwithPlugin(JdbiPlugin plugin) Install aJdbiPluginwhen creating theJdbiinstance.final JdbiExtensionwithPlugins(JdbiPlugin... pluginList) Install multipleJdbiPlugins when creating theJdbiinstance.Methods inherited from class Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface TestInstantiationAwareExtension
getTestInstantiationExtensionContextScope
-
Method Details
-
getUrl
Description copied from class:JdbiExtensionReturns a JDBC url representing the data source used by this extension. This url is database-specific and may or may not be used to connect to the data source outside testing code that uses this extension (e.g. theJdbiSqliteExtensionreturns a constant uri for all database instances).- Specified by:
getUrlin classJdbiExtension- Returns:
- A string representing the JDBC URL.
-