blob: d6a70f51ea45a5795c61c1f59254f50160a3eb30 [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.access.tests.e2e;
import com.google.common.io.Resources;
import org.apache.access.binding.hive.conf.HiveAuthzConf;
import org.apache.access.tests.e2e.hiveserver.HiveServerFactory;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.io.File;
import java.io.FileOutputStream;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.HashMap;
import java.util.Map;
import junit.framework.Assert;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertFalse;
public class TestAccessOnFailureHookLoading extends AbstractTestWithHiveServer {
private Context context;
Map<String, String > testProperties;
private static final String SINGLE_TYPE_DATA_FILE_NAME = "kv1.dat";
@Before
public void setup() throws Exception {
testProperties = new HashMap<String, String>();
testProperties.put(HiveAuthzConf.AuthzConfVars.AUTHZ_ONFAILURE_HOOKS.getVar(),
DummyAccessOnFailureHook.class.getName());
}
@After
public void teardown() throws Exception {
if (context != null) {
context.close();
}
}
/* Admin creates database DB_2
* USER_1 tries to drop DB_2, but it has permissions for DB_1.
*/
@Test
public void testOnFailureHookLoading() throws Exception {
// Do not run this test if run with external HiveServer2
// This test checks for a static member, which will not
// be set if HiveServer2 and the test run in different JVMs
String hiveServer2Type = System.getProperty(
HiveServerFactory.HIVESERVER2_TYPE);
if (hiveServer2Type != null &&
HiveServerFactory.HiveServer2Type.valueOf(hiveServer2Type.trim()) !=
HiveServerFactory.HiveServer2Type.InternalHiveServer2) {
return;
}
context = createContext(testProperties);
File policyFile = context.getPolicyFile();
File dataDir = context.getDataDir();
//copy data file to test dir
File dataFile = new File(dataDir, SINGLE_TYPE_DATA_FILE_NAME);
FileOutputStream to = new FileOutputStream(dataFile);
Resources.copy(Resources.getResource(SINGLE_TYPE_DATA_FILE_NAME), to);
to.close();
//delete existing policy file; create new policy file
assertTrue("Could not delete " + policyFile, context.deletePolicyFile());
// groups : role -> group
context.append("[groups]");
context.append("admin = all_server");
context.append("user_group1 = all_db1, load_data");
// roles: privileges -> role
context.append("[roles]");
context.append("all_server = server=server1");
context.append("all_db1 = server=server1->db=DB_1");
// users: users -> groups
context.append("[users]");
context.append("hive = admin");
context.append("user_1 = user_group1");
// setup db objects needed by the test
Connection connection = context.createConnection("hive", "hive");
Statement statement = context.createStatement(connection);
statement.execute("DROP DATABASE IF EXISTS DB_1 CASCADE");
statement.execute("DROP DATABASE IF EXISTS DB_2 CASCADE");
statement.execute("CREATE DATABASE DB_1");
statement.execute("CREATE DATABASE DB_2");
statement.close();
connection.close();
// test execution
connection = context.createConnection("user_1", "password");
statement = context.createStatement(connection);
//negative test case: user can't drop another user's database
assertFalse(DummyAccessOnFailureHook.invoked);
try {
statement.execute("DROP DATABASE DB_2 CASCADE");
Assert.fail("Expected SQL exception");
} catch (SQLException e) {
assertTrue(DummyAccessOnFailureHook.invoked);
}
statement.close();
connection.close();
//test cleanup
connection = context.createConnection("hive", "hive");
statement = context.createStatement(connection);
statement.execute("DROP DATABASE DB_1 CASCADE");
statement.execute("DROP DATABASE DB_2 CASCADE");
statement.close();
connection.close();
context.close();
}
}