-
Notifications
You must be signed in to change notification settings - Fork 693
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Testcontainers in JDBC URL #1669
Comments
I'm using TC with exposed as the following: val mysqlContainer = MySQLContainer(DockerImageName.parse("mysql:5.7.34"))
.withDatabaseName("test")
.withUsername("root")
.withPassword("root")
.also { it.start() }
val database = HikariConfig().apply {
it.driverClassName = "org.mariadb.jdbc.Driver"
it.username = this.username
it.password = password
it.jdbcUrl ="jdbc:mariadb://${mysqlContainer.host}:${mysqlContainer.firstMappedPort}/${mysqlContainer.databaseName}"
}.let {
Database.connect(HikariDataSource(it))
} |
Yeah. That's one of the ways we did it with the PG container class but required us to know DB type ahead of time. We ended up using a HikariDataSource directly with: jdbcUrl = "jdbc:tc:.."
driverClassName = "org.testcontainers.jdbc.ContainerDatabaseDriver" to give us an auto-detected container type for our needs. However, having Exposed detect this style of jdbc URL and doing it would be a bonus as we would not need to intercept it to construct things directly. Especially since the ':tc:' URL's are so well defined. This is more of a wish for an enhancement than anything else. |
Hi @ntr-ross , Would you invoke something like: Database.connect(
"jdbc:tc:postgresql:15.1-alpine:///databasename",
user = ...,
password = ...
) |
That was the sort of usage we were looking at. Basically the ability to switch to a test container simply by altering the jdbc URL supplied in a config setup. I don't know the implications but since TC is also an 'interceptor'-style URL (and well-defined) that you could use the presence of 'jdbc:tc:' to determine the need for the TC driver (if it hasn't been specified already) and then use the prefix without the ':tc:' or the version to determine dialect. But that may be over-complicating things. It was the error when using both the 'jdbc:tc:...' URL and the TC As I say in my previous post we got around it by forcing HikariDataSource all the time. But others may trip across this same issue in the future. |
@AlexeySoshin Thx, that seems like it will work. It is obviously limited to just those two dialects (see below ***). Not sure if this is what you meant about 'not having a setup', but if you have docker available (local or remote) attached is a minimal gradle project ( *** Here's a list of the currently supported containers. Interesting quirk, TC doesn't recognize the 'pgsql' dialect via URL (testcontainers/testcontainers-java#6424) but is quite happy to launch one manually with the appropriate driver using the |
Is it possible to use a testcontainers-targeted JDBC URL? That is, a URL that uses "jdbc:tc:" as the URL scheme/prefix. Also supporting the container target version after the dialect.
For example:
jdbc:tc:postgresql:15.1-alpine:///databasename
I wasn't able to find any docs or issues related to this. Nor could I find any examples of its use with Exposed.
A quick look at the Exposed code seems to indicate it would NOT support this. But I may not have looked close enough.
TIA.
The text was updated successfully, but these errors were encountered: