blob: 85ab1b18b191260b61d1eb82f4ded182b9db0373 [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.api.service.thrift;
import static org.junit.Assert.assertTrue;
import java.security.PrivilegedExceptionAction;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.FutureTask;
import org.apache.sentry.core.common.exception.SentryUserException;
import org.apache.sentry.service.thrift.SentryServiceFactory;
import org.apache.sentry.service.thrift.SentryServiceIntegrationBase;
import org.junit.Test;
import com.google.common.collect.Sets;
public class TestSentryServiceClientPool extends SentryServiceIntegrationBase {
@Test
public void testConnectionWhenReconnect() throws Exception {
runTestAsSubject(new TestOperation() {
@Override
public void runTestAsSubject() throws Exception {
String requestorUserName = SentryServiceIntegrationBase.ADMIN_USER;
Set<String> requestorUserGroupNames = Sets.newHashSet(SentryServiceIntegrationBase.ADMIN_GROUP);
String roleName = "admin_r";
setLocalGroupMapping(requestorUserName, requestorUserGroupNames);
writePolicyFile();
client.dropRoleIfExists(requestorUserName, roleName);
client.createRole(requestorUserName, roleName);
client.listAllRoles(requestorUserName);
stopSentryService();
SentryServiceIntegrationBase.server = SentryServiceFactory.create(SentryServiceIntegrationBase.conf);
SentryServiceIntegrationBase.startSentryService();
client.listAllRoles(requestorUserName);
client.dropRole(requestorUserName, roleName);
}
});
}
@Test
public void testConnectionWithMultipleRetries() throws Exception {
runTestAsSubject(new TestOperation() {
@Override
public void runTestAsSubject() throws Exception {
List<Future<Boolean>> tasks = new ArrayList<Future<Boolean>>();
String requestorUserName = SentryServiceIntegrationBase.ADMIN_USER;
Set<String> requestorUserGroupNames = Sets.newHashSet(SentryServiceIntegrationBase.ADMIN_GROUP);
String roleName = "admin_r";
setLocalGroupMapping(requestorUserName, requestorUserGroupNames);
writePolicyFile();
client.dropRoleIfExists(requestorUserName, roleName);
client.createRole(requestorUserName, roleName);
ExecutorService executorService = Executors.newFixedThreadPool(20);
Callable<Boolean> func = new Callable<Boolean>() {
public Boolean call() throws Exception {
return SentryServiceIntegrationBase.clientUgi.doAs(new PrivilegedExceptionAction<Boolean>() {
@Override
public Boolean run() throws Exception {
try {
client.listAllRoles(SentryServiceIntegrationBase.ADMIN_USER);
return true;
} catch (SentryUserException sue) {
return false;
}
}
});
}
};
for (int i = 0; i < 30; i++) {
FutureTask<Boolean> task = new FutureTask<Boolean>(func);
tasks.add(task);
executorService.submit(task);
}
for (Future<Boolean> task : tasks) {
Boolean result = task.get();
assertTrue("Some tasks are failed.", result);
}
}
});
}
}