testcontainers-java
testcontainers-java copied to clipboard
Testcontainers is a Java library that supports JUnit tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container.
### Module MySQL ### Testcontainers version 1.17.3 ### Using the latest Testcontainers version? Yes ### Host OS Linux ### Host Arch x86 ### Docker version ```shell Provided by GitHub Actions...
When we use multiple JUnit5 extensions, the way to order them is via the `@ExtendsWith({FirstExtension.class, SecondExtension.class})` annotation. But `TestcontainersExtension` is not public so we can only use the `@Testcontainers` annotion...
JDBC - MSSQL - getLivenessCheckPortNumbers() shouldn't that be the mapped port and not the internal?
https://github.com/testcontainers/testcontainers-java/blob/600d235d220d5e507405921b4e241aa73c067a2a/modules/mssqlserver/src/main/java/org/testcontainers/containers/MSSQLServerContainer.java#L64-L67 Mysql has the ports mapped https://github.com/testcontainers/testcontainers-java/blob/600d235d220d5e507405921b4e241aa73c067a2a/modules/mysql/src/main/java/org/testcontainers/containers/MySQLContainer.java#L56-L60 If the overrides are removed you would receive mapped ports of the exposedPorts.
Hi everyone, Could you help me here? My code can not load the testcontainer properties under the src/test/rescourse in CI docker maven enviroment. But I can run it in local...
I have code setup for launching Selenium GRID with the help of Testcontainer. When I run it on local system it works fine but when I do the same on...
Bumps [r2dbc-mariadb](https://github.com/mariadb-corporation/mariadb-connector-r2dbc) from 1.0.3 to 1.1.2. Release notes Sourced from r2dbc-mariadb's releases. MariaDB Connector/R2DBC 1.1.2 1.1.2 (12 Mai 2022) Full Changelog [R2DBC-54] Support r2dbc spec 0.9.1 version [R2DBC-42] Specification precision...
Proposed fix for https://github.com/testcontainers/testcontainers-java/issues/2045 When we use multiple JUnit5 extensions, the way to order them is via the @ExtendsWith({FirstExtension.class, SecondExtension.class}) annotation. But TestcontainersExtension is not public so we can only...
When I run testcontainers selenium with chrome in a Spring boot app, I get the following error but it works wiith FirefoxOptions I have attached a minimum maven project to...
Dear all, I'm running testcontainers on Windows and Linux (WSL2). On both systems I get since some days the following error when I try to use test containers. I'm using...
When starting DockerComposeContainer (local) with option `--profile` then this option is not used when `down` is executed at the end of the test. As a result it does not stop...