blob: c68cd75ba8c9eda8c53ca45af535f77f028b635d [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.sentry.policy.search;
import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.assertNull;
import org.apache.sentry.core.model.search.Collection;
import org.junit.Test;
public class TestSearchModelAuthorizables {
@Test
public void testServer() throws Exception {
Collection coll = (Collection)SearchModelAuthorizables.from("CoLleCtiOn=collection1");
assertEquals("collection1", coll.getName());
}
@Test(expected=IllegalArgumentException.class)
public void testNoKV() throws Exception {
System.out.println(SearchModelAuthorizables.from("nonsense"));
}
@Test(expected=IllegalArgumentException.class)
public void testTooManyKV() throws Exception {
System.out.println(SearchModelAuthorizables.from("k=v1=v2"));
}
@Test(expected=IllegalArgumentException.class)
public void testEmptyKey() throws Exception {
System.out.println(SearchModelAuthorizables.from("=v"));
}
@Test(expected=IllegalArgumentException.class)
public void testEmptyValue() throws Exception {
System.out.println(SearchModelAuthorizables.from("k="));
}
@Test
public void testNotAuthorizable() throws Exception {
assertNull(SearchModelAuthorizables.from("k=v"));
}
}