crate / crate-jdbc

A JDBC driver for CrateDB.
https://crate.io/docs/jdbc/
Apache License 2.0
23 stars 28 forks source link

Use Testcontainers instead of custom CrateDB integration test helper #377

Open amotl opened 1 year ago

amotl commented 1 year ago

Hi there,

the BaseIntegrationTest.java currently uses io.crate.testing.CrateTestCluster and io.crate.testing.CrateTestServer from CrateDB Java Testing Classes. If it is capable enough to replace this layer, we could now use Testcontainers for Java » CrateDB support, thanks to @matriv's contribution https://github.com/testcontainers/testcontainers-java/pull/6790, which has been released yesterday.

With kind regards, Andreas.

amotl commented 1 year ago

We just added some blueprints how to use Testcontainers for Java with CrateDB.