Skip to content

liquibase/liquibase-cassandra

Repository files navigation

liquibase-cassandra

License Maven Central Build and Test Extension

Liquibase extension for Cassandra Support.

Using the Liquibase Test Harness in the Cassandra Extension

The liquibase-cassandra extension now comes with integration test support via the liquibase-test-harness. This Liquibase test framework is designed to also make it easy for you to test your extensions.

Configuring your project

Configuring your connections

We have provided a harness-config.yml file in src/test/resources directory. This file should contain the connection information for all the databases you want the Cassandra extension to be tested against.

Configuring test DB

The test-harness requires the database under test to be created beforehand, so that the tests might have some data to manipulate, are independent of each other and don't rely on any specific run order.

To be able to run the harness tests locally setting up docker container is currently the simplest route. But if you already have a test instance running elsewhere, use the test.cql script to populate it with test data.

To create a local test database docker container, execute the following steps:

  • Run main cassandra instance. It could be Cassandra official image or VMware's bitnami image. Second one allows to provide password during startup, and we use it in our CI/CD. Official cassandra image doesn't care about auth. Full list of possible versions for official image can be found in dockerhub Cassandra official page, for bitnami go to VMware's bitnami dockerhub page. So commands could be

    • docker run --name cassandra -e CASSANDRA_PASSWORD=Password1 -e CASSANDRA_PASSWORD_SEEDER=yes -p 9042:9042 -d bitnami/cassandra or
    • docker run -p 9042:9042 --rm --name cassandra3 -d cassandra:3 Give container a minute to fully initialize.
  • run

    • docker inspect cassandra or
    • docker inspect cassandra3 depending which container you started to get a main instance IP address. By default, it's 172.17.0.2 but may change in our local env.
  • to execute init script run second container

    • docker run -it --rm cassandra bash or
    • docker run -it --rm bitnami/cassandra bash, they are interchangeable in our case
  • enter cql console

    • cqlsh 172.17.0.2 or
    • cqlsh 172.17.0.2 -u cassandra -p Password1 for bitnami's image (or use other IP showed by docker inspect if this doesn't work)
  • copy and paste init script from test.cql file content to create keyspace and tables for tests. Also provided here for your convenience

CREATE KEYSPACE betterbotz
  WITH REPLICATION = { 
   'class' : 'SimpleStrategy', 
   'replication_factor' : 1 
  };
USE betterbotz;
DROP TABLE IF EXISTS authors;
CREATE TABLE authors (
                         id int,
                         first_name varchar,
                         last_name varchar,
                         email varchar,
                         birthdate date,
                         added timestamp,
                         PRIMARY KEY (id)
);

INSERT INTO authors(id, first_name, last_name, email, birthdate, added) VALUES
(1,'Eileen','Lubowitz','ppaucek@example.org','1991-03-04','2004-05-30 02:08:25');
INSERT INTO authors(id, first_name, last_name, email, birthdate, added) VALUES
(2,'Tamia','Mayert','shansen@example.org','2016-03-27','2014-03-21 02:52:00');
INSERT INTO authors(id, first_name, last_name, email, birthdate, added) VALUES
(3,'Cyril','Funk','reynolds.godfrey@example.com','1988-04-21','2011-06-24 18:17:48');
INSERT INTO authors(id, first_name, last_name, email, birthdate, added) VALUES
(4,'Nicolas','Buckridge','xhoeger@example.net','2017-02-03','2019-04-22 02:04:41');
INSERT INTO authors(id, first_name, last_name, email, birthdate, added) VALUES
(5,'Jayden','Walter','lillian66@example.com','2010-02-27','1990-02-04 02:32:00');


DROP TABLE IF EXISTS posts;
CREATE TABLE posts (
                       id int,
                       author_id int,
                       title varchar,
                       description varchar,
                       content text,
                       inserted_date date,
                       PRIMARY KEY (id)
);

INSERT INTO posts(id, author_id, title, description, content, inserted_date) VALUES
(1,1,'temporibus','voluptatum','Fugit non et doloribus repudiandae.','2015-11-18');
INSERT INTO posts(id, author_id, title, description, content, inserted_date) VALUES
(2,2,'ea','aut','Tempora molestias maiores provident molestiae sint possimus quasi.','1975-06-08');
INSERT INTO posts(id, author_id, title, description, content, inserted_date) VALUES
(3,3,'illum','rerum','Delectus recusandae sit officiis dolor.','1975-02-25');
INSERT INTO posts(id, author_id, title, description, content, inserted_date) VALUES
(4,4,'itaque','deleniti','Magni nam optio id recusandae.','2010-07-28');
INSERT INTO posts(id, author_id, title, description, content, inserted_date) VALUES
(5,5,'ad','similique','Rerum tempore quis ut nesciunt qui excepturi est.','2006-10-09');

Executing the tests

First you need to build project - mvn package will do the job.

from IDE

From your IDE, right-click on the liquibase.ext.cassandra.LiquibaseHarnessSuiteIT test class present in src/test/groovy directory. Doing so, will allow you to execute all the standard change object tests in the liquibase-test-harness as well as the Cassandra specific change objects tests created exclusively to test this extension (You can find this in the src/test/resources/liquibase/harness/change/changelogs/cassandra directory).

To run single test case, let's say addColumn, create JUnit configuration for liquibase.harness.change.ChangeObjectTests with arg -DchangeObjects=addColumn More details about different options can be found in liquibase-test-harness readme

from command line

You can use mvn verify command to run all integration tests - both living in Cassandra and test-harness. To run only test-harness IT test use mvn -Dit.test=LiquibaseHarnessSuiteIT verify command.

ScyllaDB Compatibility

This extension is fully compatible with ScyllaDB as a drop-in replacement for Apache Cassandra. ScyllaDB's Cassandra-compatible protocol allows seamless integration with the Liquibase Cassandra extension.

All core Liquibase operations work correctly with ScyllaDB, including schema migrations (DDL), data operations (DML), changelog tracking, distributed locking, and rollback functionality.

Using ScyllaDB for Testing

To use ScyllaDB instead of Cassandra for local testing:

Start ScyllaDB Docker container:

# Standard setup (Linux)
docker run --name scylladb -p 9042:9042 -d scylladb/scylla --smp 1

# macOS users must add --reactor-backend=epoll flag
docker run --name scylladb -p 9042:9042 -d scylladb/scylla --reactor-backend=epoll --smp 1

Configuration notes:

  • ScyllaDB uses default credentials cassandra/cassandra
  • Update password in liquibase.properties and src/test/resources/harness-config.yml from Password1 to cassandra
  • Connection configuration is otherwise identical to Cassandra
  • Wait 15-20 seconds for ScyllaDB to fully initialize before running tests

Initialize test database:

docker cp test.cql scylladb:/tmp/test.cql
docker exec scylladb cqlsh -f /tmp/test.cql

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

License

This project is licensed under the Functional Source License, Version 1.1, ALv2 Future License (FSL-1.1-ALv2) - see the LICENSE.txt file for details

About

Liquibase extension for Cassandra Support

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors