NoSQLUnit 0.4.0 Released
All across the nation such a strange vibration, People in motion, There's a whole generation with a new explanation, People in motion people in motion (San Francisco - Scott McKenzie)
NoSQLUnit is a JUnit extension to make writing unit and integration tests of systems that use NoSQL backend easier. Visit official page for more information.
In 0.4.0 release, one new NoSQL system is supported and is Cassandra.
Cassandra is a BigTable data model running on an Amazon Dynamo-like infrastructure.
As all databases supported by NoSQLUnit, two set of rules are provided to write Cassandra tests:
First set of JUnit Rules are those responsible of managing database lifecycle; basically starting and stopping Cassandra instance.
- Embedded: com.lordofthejars.nosqlunit.cassandra.EmbeddedCassandra
- Managed: com.lordofthejars.nosqlunit.cassandra.ManagedCassandra
Second set of rules are those responsible of maintaining database into known state;
- NoSQLUnit Management: com.lordofthejars.nosqlunit.cassandra.CassandraRule
We will use a very simple example used in Cassandra tutorial as an example of how to write unit tests for systems that uses Cassandra database as backend.
First of all, the dataset used to maintain Cassandra into known state:
{
"name" : "persons",
"columnFamilies" : [{
"name" : "personFamilyName",
"keyType" : "UTF8Type",
"defaultColumnValueType" : "UTF8Type",
"comparatorType" : "UTF8Type",
"rows" : [{
"key" : "john",
"columns" : [{
"name" : "age",
"value" : "22"
},
{
"name" : "car",
"value" : "toyota"
}]
},
{
"key" : "mary",
"columns" : [{
"name" : "age",
"value" : "33"
},
{
"name" : "car",
"value" : "ford"
}]
}]
}]
}
Finally the test case:import static org.junit.Assert.assertThat;
import static org.hamcrest.CoreMatchers.is;
import static com.lordofthejars.nosqlunit.cassandra.EmbeddedCassandra.EmbeddedCassandraRuleBuilder.newEmbeddedCassandraRule;
import static com.lordofthejars.nosqlunit.cassandra.EmbeddedCassandraConfigurationBuilder.newEmbeddedCassandraConfiguration;
import org.junit.ClassRule;
import org.junit.Rule;
import org.junit.Test;
import com.lordofthejars.nosqlunit.annotation.UsingDataSet;
import com.lordofthejars.nosqlunit.cassandra.CassandraRule;
import com.lordofthejars.nosqlunit.cassandra.EmbeddedCassandra;
import com.lordofthejars.nosqlunit.core.LoadStrategyEnum;
public class WhenPersonWantsToKnowItsCar {
@ClassRule
public static EmbeddedCassandra embeddedCassandraRule = newEmbeddedCassandraRule().build();
@Rule
public CassandraRule cassandraRule = new CassandraRule(newEmbeddedCassandraConfiguration().clusterName("Test Cluster").build());
@Test
@UsingDataSet(locations="persons.json", loadStrategy=LoadStrategyEnum.CLEAN_INSERT)
public void car_should_be_returned() {
PersonManager personManager = new PersonManager("Test Cluster", "persons", "localhost:9171");
String car = personManager.getCarByPersonName("mary");
assertThat(car, is("ford"));
}
}
Next release (0.4.1) will contain some internal changes, but no
support for the new engine. And after these changes, new engines will be
supported. Moreover, I have decided to open a poll to find out which engine
would you like to see in 0.4.2 release:Visit Poll Here
Stay in touch with the project and of course I am opened to any ideas that you think that could make NoSQLUnit better
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)





