| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| package org.apache.cassandra.cql3; |
| |
| import com.datastax.driver.core.BatchStatement; |
| import com.datastax.driver.core.Cluster; |
| import com.datastax.driver.core.PreparedStatement; |
| import com.datastax.driver.core.Session; |
| import com.datastax.driver.core.exceptions.InvalidQueryException; |
| import org.apache.cassandra.config.DatabaseDescriptor; |
| import org.apache.cassandra.exceptions.ConfigurationException; |
| import org.apache.cassandra.service.EmbeddedCassandraService; |
| import org.junit.BeforeClass; |
| import org.junit.Test; |
| |
| import java.io.IOException; |
| |
| public class BatchTests extends CQLTester |
| { |
| private static EmbeddedCassandraService cassandra; |
| |
| private static Cluster cluster; |
| private static Session session; |
| |
| private static PreparedStatement counter; |
| private static PreparedStatement noncounter; |
| private static PreparedStatement clustering; |
| |
| @BeforeClass() |
| public static void setup() throws ConfigurationException, IOException |
| { |
| cassandra = new EmbeddedCassandraService(); |
| cassandra.start(); |
| |
| cluster = Cluster.builder().addContactPoint("127.0.0.1").withPort(DatabaseDescriptor.getNativeTransportPort()).build(); |
| session = cluster.connect(); |
| |
| session.execute("drop keyspace if exists junit;"); |
| session.execute("create keyspace junit WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };"); |
| session.execute("CREATE TABLE junit.noncounter (\n" + |
| " id int PRIMARY KEY,\n" + |
| " val text\n" + |
| ");"); |
| session.execute("CREATE TABLE junit.counter (\n" + |
| " id int PRIMARY KEY,\n" + |
| " val counter,\n" + |
| ");"); |
| session.execute("CREATE TABLE junit.clustering (\n" + |
| " id int,\n" + |
| " clustering1 int,\n" + |
| " clustering2 int,\n" + |
| " clustering3 int,\n" + |
| " val text, \n" + |
| " PRIMARY KEY(id, clustering1, clustering2, clustering3)" + |
| ");"); |
| |
| |
| noncounter = session.prepare("insert into junit.noncounter(id, val)values(?,?)"); |
| counter = session.prepare("update junit.counter set val = val + ? where id = ?"); |
| clustering = session.prepare("insert into junit.clustering(id, clustering1, clustering2, clustering3, val) values(?,?,?,?,?)"); |
| } |
| |
| @Test(expected = InvalidQueryException.class) |
| public void testMixedInCounterBatch() |
| { |
| sendBatch(BatchStatement.Type.COUNTER, true, true, false); |
| } |
| |
| @Test(expected = InvalidQueryException.class) |
| public void testMixedInLoggedBatch() |
| { |
| sendBatch(BatchStatement.Type.LOGGED, true, true, false); |
| } |
| |
| @Test(expected = InvalidQueryException.class) |
| public void testMixedInUnLoggedBatch() |
| { |
| sendBatch(BatchStatement.Type.UNLOGGED, true, true, false); |
| } |
| |
| @Test(expected = InvalidQueryException.class) |
| public void testNonCounterInCounterBatch() |
| { |
| sendBatch(BatchStatement.Type.COUNTER, false, true, false); |
| } |
| |
| @Test |
| public void testNonCounterInLoggedBatch() |
| { |
| sendBatch(BatchStatement.Type.LOGGED, false, true, false); |
| } |
| |
| @Test |
| public void testNonCounterInUnLoggedBatch() |
| { |
| sendBatch(BatchStatement.Type.UNLOGGED, false, true, false); |
| } |
| |
| @Test |
| public void testCounterInCounterBatch() |
| { |
| sendBatch(BatchStatement.Type.COUNTER, true, false, false); |
| } |
| |
| @Test |
| public void testCounterInUnLoggedBatch() |
| { |
| sendBatch(BatchStatement.Type.UNLOGGED, true, false, false); |
| } |
| |
| @Test |
| public void testTableWithClusteringInLoggedBatch() |
| { |
| sendBatch(BatchStatement.Type.LOGGED, false, false, true); |
| } |
| |
| @Test |
| public void testTableWithClusteringInUnLoggedBatch() |
| { |
| sendBatch(BatchStatement.Type.UNLOGGED, false, false, true); |
| } |
| |
| @Test |
| public void testEmptyBatch() |
| { |
| session.execute("BEGIN BATCH APPLY BATCH"); |
| session.execute("BEGIN UNLOGGED BATCH APPLY BATCH"); |
| } |
| |
| @Test(expected = InvalidQueryException.class) |
| public void testCounterInLoggedBatch() |
| { |
| sendBatch(BatchStatement.Type.LOGGED, true, false, false); |
| } |
| |
| @Test(expected = InvalidQueryException.class) |
| public void testOversizedBatch() |
| { |
| int SIZE_FOR_FAILURE = 2500; |
| BatchStatement b = new BatchStatement(BatchStatement.Type.UNLOGGED); |
| for (int i = 0; i < SIZE_FOR_FAILURE; i++) |
| { |
| b.add(noncounter.bind(i, "foobar")); |
| } |
| session.execute(b); |
| } |
| |
| public void sendBatch(BatchStatement.Type type, boolean addCounter, boolean addNonCounter, boolean addClustering) |
| { |
| |
| assert addCounter || addNonCounter || addClustering; |
| BatchStatement b = new BatchStatement(type); |
| |
| for (int i = 0; i < 10; i++) |
| { |
| if (addNonCounter) |
| b.add(noncounter.bind(i, "foo")); |
| |
| if (addCounter) |
| b.add(counter.bind((long)i, i)); |
| |
| if (addClustering) |
| { |
| b.add(clustering.bind(i, i, i, i, "foo")); |
| } |
| } |
| |
| session.execute(b); |
| } |
| |
| } |