Couchbase Module
Testcontainers module for Couchbase. Couchbase is a document oriented NoSQL database.
Usage example
Running Couchbase as a stand-in in a test:
-
Define a bucket:
BucketDefinition bucketDefinition = new BucketDefinition("mybucket"); -
define a container:
CouchbaseContainer container = new CouchbaseContainer(couchbaseImage).withBucket(bucketDefinition) -
create an cluster:
Cluster cluster = Cluster.connect( container.getConnectionString(), container.getUsername(), container.getPassword() );
Adding this module to your project dependencies
Add the following dependency to your pom.xml/build.gradle file:
testImplementation "org.testcontainers:testcontainers-couchbase:2.0.1"
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-couchbase</artifactId>
<version>2.0.1</version>
<scope>test</scope>
</dependency>