mirror of https://github.com/apache/cassandra
145 lines
6.2 KiB
Java
145 lines
6.2 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.util.Arrays;
|
|
import java.util.HashMap;
|
|
import java.util.HashSet;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
import org.apache.cassandra.config.DatabaseDescriptor;
|
|
|
|
import org.junit.BeforeClass;
|
|
|
|
import org.junit.Test;
|
|
|
|
import org.apache.cassandra.db.marshal.AbstractType;
|
|
|
|
import org.apache.cassandra.CassandraTestBase;
|
|
import org.apache.cassandra.CassandraTestBase.DDDaemonInitialization;
|
|
|
|
import static org.junit.Assert.assertFalse;
|
|
import static org.junit.Assert.assertTrue;
|
|
|
|
@DDDaemonInitialization
|
|
public class ValidationTest extends CassandraTestBase
|
|
{
|
|
@BeforeClass
|
|
public static void beforeClass()
|
|
{
|
|
DatabaseDescriptor.daemonInitialization();
|
|
}
|
|
|
|
@Test
|
|
public void testIsNameValidPositive()
|
|
{
|
|
assertTrue(SchemaConstants.isValidCharsName("abcdefghijklmnopqrstuvwxyz"));
|
|
assertTrue(SchemaConstants.isValidCharsName("ABCDEFGHIJKLMNOPQRSTUVWXYZ"));
|
|
assertTrue(SchemaConstants.isValidCharsName("_01234567890"));
|
|
}
|
|
|
|
@Test
|
|
public void testIsNameValidNegative()
|
|
{
|
|
assertFalse(SchemaConstants.isValidCharsName(null));
|
|
assertFalse(SchemaConstants.isValidCharsName(""));
|
|
assertFalse(SchemaConstants.isValidCharsName(" "));
|
|
assertFalse(SchemaConstants.isValidCharsName("@"));
|
|
assertFalse(SchemaConstants.isValidCharsName("!"));
|
|
}
|
|
|
|
private static final Set<String> primitiveTypes =
|
|
new HashSet<>(Arrays.asList("ascii", "bigint", "blob", "boolean", "date",
|
|
"duration", "decimal", "double", "float",
|
|
"inet", "int", "smallint", "text", "time",
|
|
"timestamp", "timeuuid", "tinyint", "uuid",
|
|
"varchar", "varint"));
|
|
|
|
@Test
|
|
public void typeCompatibilityTest()
|
|
{
|
|
Map<String, Set<String>> compatibilityMap = new HashMap<>();
|
|
compatibilityMap.put("bigint", new HashSet<>(Arrays.asList("timestamp")));
|
|
compatibilityMap.put("blob", new HashSet<>(Arrays.asList("ascii", "bigint", "boolean", "date", "decimal", "double", "duration",
|
|
"float", "inet", "int", "smallint", "text", "time", "timestamp",
|
|
"timeuuid", "tinyint", "uuid", "varchar", "varint")));
|
|
compatibilityMap.put("date", new HashSet<>(Arrays.asList("int")));
|
|
compatibilityMap.put("time", new HashSet<>(Arrays.asList("bigint")));
|
|
compatibilityMap.put("text", new HashSet<>(Arrays.asList("ascii", "varchar")));
|
|
compatibilityMap.put("timestamp", new HashSet<>(Arrays.asList("bigint")));
|
|
compatibilityMap.put("varchar", new HashSet<>(Arrays.asList("ascii", "text")));
|
|
compatibilityMap.put("varint", new HashSet<>(Arrays.asList("bigint", "int", "timestamp")));
|
|
compatibilityMap.put("uuid", new HashSet<>(Arrays.asList("timeuuid")));
|
|
|
|
for (String sourceTypeString: primitiveTypes)
|
|
{
|
|
AbstractType<?> sourceType = CQLTypeParser.parse("KEYSPACE", sourceTypeString, Types.none());
|
|
for (String destinationTypeString: primitiveTypes)
|
|
{
|
|
AbstractType<?> destinationType = CQLTypeParser.parse("KEYSPACE", destinationTypeString, Types.none());
|
|
|
|
if (compatibilityMap.get(destinationTypeString) != null &&
|
|
compatibilityMap.get(destinationTypeString).contains(sourceTypeString) ||
|
|
sourceTypeString.equals(destinationTypeString))
|
|
{
|
|
assertTrue(sourceTypeString + " should be compatible with " + destinationTypeString,
|
|
destinationType.isValueCompatibleWith(sourceType));
|
|
}
|
|
else
|
|
{
|
|
assertFalse(sourceTypeString + " should not be compatible with " + destinationTypeString,
|
|
destinationType.isValueCompatibleWith(sourceType));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test
|
|
public void clusteringColumnTypeCompatibilityTest()
|
|
{
|
|
Map<String, Set<String>> compatibilityMap = new HashMap<>();
|
|
compatibilityMap.put("blob", new HashSet<>(Arrays.asList("ascii", "text", "varchar")));
|
|
compatibilityMap.put("text", new HashSet<>(Arrays.asList("ascii", "varchar")));
|
|
compatibilityMap.put("varchar", new HashSet<>(Arrays.asList("ascii", "text")));
|
|
|
|
for (String sourceTypeString: primitiveTypes)
|
|
{
|
|
AbstractType<?> sourceType = CQLTypeParser.parse("KEYSPACE", sourceTypeString, Types.none());
|
|
for (String destinationTypeString: primitiveTypes)
|
|
{
|
|
AbstractType<?> destinationType = CQLTypeParser.parse("KEYSPACE", destinationTypeString, Types.none());
|
|
|
|
if (compatibilityMap.get(destinationTypeString) != null &&
|
|
compatibilityMap.get(destinationTypeString).contains(sourceTypeString) ||
|
|
sourceTypeString.equals(destinationTypeString))
|
|
{
|
|
assertTrue(sourceTypeString + " should be compatible with " + destinationTypeString,
|
|
destinationType.isCompatibleWith(sourceType));
|
|
}
|
|
else
|
|
{
|
|
assertFalse(sourceTypeString + " should not be compatible with " + destinationTypeString,
|
|
destinationType.isCompatibleWith(sourceType));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|