package org.cassandraunit;
import com.datastax.driver.core.ResultSet;
import org.cassandraunit.dataset.cql.ClassPathCQLDataSet;
import org.junit.Rule;
import org.junit.Test;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertEquals;
/**
*
* @author Jeremy Sevellec
*
*/
public class CQLDataLoadTestWithNoKeyspaceCreation {
@Rule
public CassandraCQLUnit cassandraCQLUnit = new CassandraCQLUnit(new ClassPathCQLDataSet("cql/simpleWithKeyspaceCreation.cql", false, "mykeyspace"));
@Test
public void testCQLDataAreInPlace() throws Exception {
test();
}
@Test
public void sameTestToMakeSureMultipleTestsAreFine() throws Exception {
test();
}
private void test() {
ResultSet result = cassandraCQLUnit.session.execute("SELECT * FROM testCQLTable WHERE id=1690e8da-5bf8-49e8-9583-4dff8a570737");
String val = result.iterator().next().getString("value");
assertEquals("Cql loaded string",val);
}
}