Skip to content

Commit

Permalink
Add new test from Marcus
Browse files Browse the repository at this point in the history
  • Loading branch information
ekaterinadimitrova2 committed Apr 8, 2022
1 parent f312166 commit d8a574c
Showing 1 changed file with 45 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
* 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.distributed.test;

import org.junit.Assert;
import org.junit.Test;

import org.apache.cassandra.distributed.Cluster;
import org.apache.cassandra.distributed.api.ConsistencyLevel;
import org.apache.cassandra.serializers.BooleanSerializer;

public class BooleanTest extends TestBaseImpl
{
@Test
public void booleanTest() throws Throwable
{
try(Cluster cluster = init(Cluster.build(1).start()))
{
cluster.schemaChange("create table " + KEYSPACE + ".tbl (id int, ck boolean, t int, primary key ((id, ck)))");
for (int i = 0; i < 10; i++)
cluster.coordinator(1).execute(withKeyspace("insert into %s.tbl (id, ck, t) values (?, true, ?)"), ConsistencyLevel.ALL, i, i);
cluster.get(1).nodetoolResult("getsstables", KEYSPACE, "tbl", "1:true");
cluster.forEach(i -> i.runOnInstance(() -> {
Assert.assertEquals(0, BooleanSerializer.instance.serialize(true).position());
Assert.assertEquals(0, BooleanSerializer.instance.serialize(false).position());
}));
}
}
}

0 comments on commit d8a574c

Please sign in to comment.