mirror of https://github.com/apache/cassandra
195 lines
8.3 KiB
Java
195 lines
8.3 KiB
Java
/*
|
|
* 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.schema;
|
|
|
|
import java.io.IOException;
|
|
import java.nio.ByteBuffer;
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.HashSet;
|
|
import java.util.List;
|
|
|
|
import com.google.common.collect.ImmutableMap;
|
|
|
|
import org.junit.BeforeClass;
|
|
import org.junit.Test;
|
|
|
|
import org.apache.cassandra.SchemaLoader;
|
|
import org.apache.cassandra.config.CFMetaData;
|
|
import org.apache.cassandra.config.Schema;
|
|
import org.apache.cassandra.db.ColumnFamilyStore;
|
|
import org.apache.cassandra.db.Keyspace;
|
|
import org.apache.cassandra.db.Mutation;
|
|
import org.apache.cassandra.db.SystemKeyspace;
|
|
import org.apache.cassandra.db.marshal.AsciiType;
|
|
import org.apache.cassandra.db.marshal.UTF8Type;
|
|
import org.apache.cassandra.db.partitions.PartitionUpdate;
|
|
import org.apache.cassandra.db.rows.UnfilteredRowIterators;
|
|
import org.apache.cassandra.exceptions.ConfigurationException;
|
|
import org.apache.cassandra.thrift.CfDef;
|
|
import org.apache.cassandra.thrift.ColumnDef;
|
|
import org.apache.cassandra.thrift.IndexType;
|
|
import org.apache.cassandra.thrift.ThriftConversion;
|
|
import org.apache.cassandra.utils.ByteBufferUtil;
|
|
import org.apache.cassandra.utils.FBUtilities;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
import static org.junit.Assert.assertTrue;
|
|
|
|
public class SchemaKeyspaceTest
|
|
{
|
|
private static final String KEYSPACE1 = "CFMetaDataTest1";
|
|
private static final String CF_STANDARD1 = "Standard1";
|
|
|
|
private static final List<ColumnDef> columnDefs = new ArrayList<>();
|
|
|
|
static
|
|
{
|
|
columnDefs.add(new ColumnDef(ByteBufferUtil.bytes("col1"), AsciiType.class.getCanonicalName())
|
|
.setIndex_name("col1Index")
|
|
.setIndex_type(IndexType.KEYS));
|
|
|
|
columnDefs.add(new ColumnDef(ByteBufferUtil.bytes("col2"), UTF8Type.class.getCanonicalName())
|
|
.setIndex_name("col2Index")
|
|
.setIndex_type(IndexType.KEYS));
|
|
}
|
|
|
|
@BeforeClass
|
|
public static void defineSchema() throws ConfigurationException
|
|
{
|
|
SchemaLoader.prepareServer();
|
|
SchemaLoader.createKeyspace(KEYSPACE1,
|
|
KeyspaceParams.simple(1),
|
|
SchemaLoader.standardCFMD(KEYSPACE1, CF_STANDARD1));
|
|
}
|
|
|
|
@Test
|
|
public void testThriftConversion() throws Exception
|
|
{
|
|
CfDef cfDef = new CfDef().setDefault_validation_class(AsciiType.class.getCanonicalName())
|
|
.setComment("Test comment")
|
|
.setColumn_metadata(columnDefs)
|
|
.setKeyspace(KEYSPACE1)
|
|
.setName(CF_STANDARD1);
|
|
|
|
// convert Thrift to CFMetaData
|
|
CFMetaData cfMetaData = ThriftConversion.fromThrift(cfDef);
|
|
|
|
CfDef thriftCfDef = new CfDef();
|
|
thriftCfDef.keyspace = KEYSPACE1;
|
|
thriftCfDef.name = CF_STANDARD1;
|
|
thriftCfDef.default_validation_class = cfDef.default_validation_class;
|
|
thriftCfDef.comment = cfDef.comment;
|
|
thriftCfDef.column_metadata = new ArrayList<>();
|
|
for (ColumnDef columnDef : columnDefs)
|
|
{
|
|
ColumnDef c = new ColumnDef();
|
|
c.name = ByteBufferUtil.clone(columnDef.name);
|
|
c.validation_class = columnDef.getValidation_class();
|
|
c.index_name = columnDef.getIndex_name();
|
|
c.index_type = IndexType.KEYS;
|
|
thriftCfDef.column_metadata.add(c);
|
|
}
|
|
|
|
CfDef converted = ThriftConversion.toThrift(cfMetaData);
|
|
|
|
assertEquals(thriftCfDef.keyspace, converted.keyspace);
|
|
assertEquals(thriftCfDef.name, converted.name);
|
|
assertEquals(thriftCfDef.default_validation_class, converted.default_validation_class);
|
|
assertEquals(thriftCfDef.comment, converted.comment);
|
|
assertEquals(new HashSet<>(thriftCfDef.column_metadata), new HashSet<>(converted.column_metadata));
|
|
}
|
|
|
|
@Test
|
|
public void testConversionsInverses() throws Exception
|
|
{
|
|
for (String keyspaceName : Schema.instance.getNonSystemKeyspaces())
|
|
{
|
|
for (ColumnFamilyStore cfs : Keyspace.open(keyspaceName).getColumnFamilyStores())
|
|
{
|
|
CFMetaData cfm = cfs.metadata;
|
|
if (!cfm.isThriftCompatible())
|
|
continue;
|
|
|
|
checkInverses(cfm);
|
|
|
|
// Testing with compression to catch #3558
|
|
CFMetaData withCompression = cfm.copy();
|
|
withCompression.compression(CompressionParams.snappy(32768));
|
|
checkInverses(withCompression);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test
|
|
public void testExtensions() throws IOException
|
|
{
|
|
String keyspace = "SandBox";
|
|
|
|
createTable(keyspace, "CREATE TABLE test (a text primary key, b int, c int)");
|
|
|
|
CFMetaData metadata = Schema.instance.getCFMetaData(keyspace, "test");
|
|
assertTrue("extensions should be empty", metadata.params.extensions.isEmpty());
|
|
|
|
ImmutableMap<String, ByteBuffer> extensions = ImmutableMap.of("From ... with Love",
|
|
ByteBuffer.wrap(new byte[]{0, 0, 7}));
|
|
|
|
CFMetaData copy = metadata.copy().extensions(extensions);
|
|
|
|
updateTable(keyspace, metadata, copy);
|
|
|
|
metadata = Schema.instance.getCFMetaData(keyspace, "test");
|
|
assertEquals(extensions, metadata.params.extensions);
|
|
}
|
|
|
|
private static void updateTable(String keyspace, CFMetaData oldTable, CFMetaData newTable) throws IOException
|
|
{
|
|
KeyspaceMetadata ksm = Schema.instance.getKeyspaceInstance(keyspace).getMetadata();
|
|
Mutation mutation = SchemaKeyspace.makeUpdateTableMutation(ksm, oldTable, newTable, FBUtilities.timestampMicros(), false);
|
|
SchemaKeyspace.mergeSchema(Collections.singleton(mutation), true);
|
|
}
|
|
|
|
private static void createTable(String keyspace, String cql) throws IOException
|
|
{
|
|
CFMetaData table = CFMetaData.compile(cql, keyspace);
|
|
|
|
KeyspaceMetadata ksm = KeyspaceMetadata.create(keyspace, KeyspaceParams.simple(1), Tables.of(table));
|
|
Mutation mutation = SchemaKeyspace.makeCreateTableMutation(ksm, table, FBUtilities.timestampMicros());
|
|
SchemaKeyspace.mergeSchema(Collections.singleton(mutation), true);
|
|
}
|
|
|
|
private static void checkInverses(CFMetaData cfm) throws Exception
|
|
{
|
|
KeyspaceMetadata keyspace = Schema.instance.getKSMetaData(cfm.ksName);
|
|
|
|
// Test thrift conversion
|
|
CFMetaData before = cfm;
|
|
CFMetaData after = ThriftConversion.fromThriftForUpdate(ThriftConversion.toThrift(before), before);
|
|
assert before.equals(after) : String.format("%n%s%n!=%n%s", before, after);
|
|
|
|
// Test schema conversion
|
|
Mutation rm = SchemaKeyspace.makeCreateTableMutation(keyspace, cfm, FBUtilities.timestampMicros());
|
|
PartitionUpdate serializedCf = rm.getPartitionUpdate(Schema.instance.getId(SystemKeyspace.NAME, SchemaKeyspace.TABLES));
|
|
PartitionUpdate serializedCD = rm.getPartitionUpdate(Schema.instance.getId(SystemKeyspace.NAME, SchemaKeyspace.COLUMNS));
|
|
CFMetaData newCfm = SchemaKeyspace.createTableFromTablePartitionAndColumnsPartition(UnfilteredRowIterators.filter(serializedCf.unfilteredIterator(), FBUtilities.nowInSeconds()),
|
|
UnfilteredRowIterators.filter(serializedCD.unfilteredIterator(), FBUtilities.nowInSeconds()));
|
|
assert cfm.equals(newCfm) : String.format("%n%s%n!=%n%s", cfm, newCfm);
|
|
}
|
|
}
|