blob: 09e5020e4c88cee1d7f5ae8342bc1e032a3e5afe [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.cql3.functions.masking;
import java.util.Arrays;
import java.util.Collection;
import org.junit.Before;
import org.junit.runners.Parameterized;
import org.apache.cassandra.db.marshal.Int32Type;
import org.apache.cassandra.db.marshal.UTF8Type;
import static java.util.Collections.singletonList;
/**
* {@link ColumnMaskInAnyPositionTester} for user-defined functions.
*/
public class ColumnMaskInAnyPositionWithUDFTest extends ColumnMaskInAnyPositionTester
{
private static final String TEXT_REPLACE_FUNCTION = KEYSPACE + ".mask_text_replace";
private static final String INT_REPLACE_FUNCTION = KEYSPACE + ".mask_int_replace";
@Before
public void setupSchema() throws Throwable
{
createFunction(KEYSPACE,
"text, text",
"CREATE FUNCTION IF NOT EXISTS " + TEXT_REPLACE_FUNCTION + " (column text, replacement text) " +
"CALLED ON NULL INPUT " +
"RETURNS text " +
"LANGUAGE java " +
"AS 'return replacement;'");
createFunction(KEYSPACE,
"int, int",
"CREATE FUNCTION IF NOT EXISTS " + INT_REPLACE_FUNCTION + " (column int, replacement int) " +
"CALLED ON NULL INPUT " +
"RETURNS int " +
"LANGUAGE java " +
"AS 'return replacement;'");
}
@Parameterized.Parameters(name = "mask={0}, type={1}")
public static Collection<Object[]> options()
{
return Arrays.asList(new Object[][]{
{ TEXT_REPLACE_FUNCTION + "('redacted')", "text",
singletonList(UTF8Type.instance),
singletonList(UTF8Type.instance.decompose("redacted")) },
{ INT_REPLACE_FUNCTION + "(0)", "int",
singletonList(Int32Type.instance),
singletonList(Int32Type.instance.decompose(0)) }
});
}
}