blob: 8da811d0f205bdb0c4220dc8257973121f9466eb [file] [log] [blame]
/*
* 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.auth;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.junit.Test;
import org.apache.cassandra.db.marshal.AbstractType;
import org.apache.cassandra.db.marshal.TypeParser;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
import static org.junit.Assert.assertEquals;
public class FunctionResourceTest
{
private static final String ks = "fr_ks";
private static final String func = "functions";
private static final String name = "concat";
private static final String varType = "org.apache.cassandra.db.marshal.UTF8Type";
@Test
public void testFunction()
{
FunctionResource expected = FunctionResource.root();
FunctionResource actual = FunctionResource.fromName(func);
assertEquals(expected, actual);
assertEquals(expected.getName(), actual.getName());
}
@Test
public void testFunctionKeyspace()
{
FunctionResource expected = FunctionResource.keyspace(ks);
FunctionResource actual = FunctionResource.fromName(String.format("%s/%s", func, ks));
assertEquals(expected, actual);
assertEquals(expected.getKeyspace(), actual.getKeyspace());
}
@Test
public void testFunctionWithSingleInputParameter()
{
List<AbstractType<?>> argTypes = new ArrayList<>();
argTypes.add(TypeParser.parse(varType));
FunctionResource expected = FunctionResource.function(ks, name, argTypes);
FunctionResource actual = FunctionResource.fromName(String.format("%s/%s/%s[%s]", func, ks, name, varType));
assertEquals(expected, actual);
assertEquals(expected.getKeyspace(), actual.getKeyspace());
}
@Test
public void testFunctionWithMultipleInputParameter()
{
List<AbstractType<?>> argTypes = new ArrayList<>();
argTypes.add(TypeParser.parse(varType));
argTypes.add(TypeParser.parse(varType));
FunctionResource expected = FunctionResource.function(ks, name, argTypes);
FunctionResource actual = FunctionResource.fromName(String.format("%s/%s/%s[%s^%s]", func, ks, name, varType, varType));
assertEquals(expected, actual);
assertEquals(expected.getKeyspace(), actual.getKeyspace());
}
@Test
public void testFunctionWithoutInputParameter()
{
List<AbstractType<?>> argTypes = new ArrayList<>();
FunctionResource expected = FunctionResource.function(ks, name, argTypes);
FunctionResource actual = FunctionResource.fromName(String.format("%s/%s/%s[]", func, ks, name));
assertEquals(expected, actual);
assertEquals(expected.getKeyspace(), actual.getKeyspace());
String error = "functions/fr_ks/concat is not a valid function resource name. It must end with \"[]\"";
assertThatExceptionOfType(IllegalArgumentException.class).isThrownBy(() -> FunctionResource.fromName(String.format("%s/%s/%s",
func,
ks,
name)))
.withMessage(error);
}
@Test
public void testInvalidFunctionName()
{
String expected = "functions_test is not a valid function resource name";
assertThatExceptionOfType(IllegalArgumentException.class).isThrownBy(() -> FunctionResource.fromName("functions_test"))
.withMessage(expected);
}
@Test
public void testFunctionWithInvalidInput()
{
String invalidInput = String.format("%s/%s/%s[%s]/test", func, ks, name, varType);
String expected = String.format("%s is not a valid function resource name. It must end with \"[]\"", invalidInput);
assertThatExceptionOfType(IllegalArgumentException.class).isThrownBy(() -> FunctionResource.fromName(invalidInput))
.withMessage(expected);
;
}
@Test
public void testFunctionWithSpecialCharacter()
{
for (String funcName : Arrays.asList("my/fancy/func", "my_other[fancy]func"))
{
String input = String.format("%s/%s/%s[%s]", func, ks, funcName, varType);
FunctionResource actual = FunctionResource.fromName(input);
FunctionResource expected = FunctionResource.function(ks, funcName, Collections.singletonList(TypeParser.parse(varType)));
assertEquals(expected, actual);
}
}
}