Revert HBASE-10238. Revert initial commit and addendum

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1553442 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew Kyle Purtell 2013-12-26 03:49:55 +00:00
parent c5e567a861
commit 3e57865d0f

View File

@ -25,6 +25,7 @@ import static org.junit.Assert.fail;
import java.io.IOException; import java.io.IOException;
import java.lang.reflect.UndeclaredThrowableException; import java.lang.reflect.UndeclaredThrowableException;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction; import java.security.PrivilegedExceptionAction;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
@ -307,7 +308,7 @@ public class TestAccessController extends SecureTestUtil {
fail("Expected no results for user '" + user.getShortName() + "'"); fail("Expected no results for user '" + user.getShortName() + "'");
} }
} }
} catch (Exception e) { } catch (IOException e) {
boolean isAccessDeniedException = false; boolean isAccessDeniedException = false;
if(e instanceof RetriesExhaustedWithDetailsException) { if(e instanceof RetriesExhaustedWithDetailsException) {
// in case of batch operations, and put, the client assembles a // in case of batch operations, and put, the client assembles a
@ -321,9 +322,9 @@ public class TestAccessController extends SecureTestUtil {
} }
} }
else { else {
// AccessDeniedException can be buried in the stack trace // For doBulkLoad calls AccessDeniedException
Throwable ex = (e instanceof UndeclaredThrowableException) ? // is buried in the stack trace
((UndeclaredThrowableException)e).getUndeclaredThrowable() : e; Throwable ex = e;
do { do {
if (ex instanceof AccessDeniedException) { if (ex instanceof AccessDeniedException) {
isAccessDeniedException = true; isAccessDeniedException = true;
@ -334,6 +335,20 @@ public class TestAccessController extends SecureTestUtil {
if (!isAccessDeniedException) { if (!isAccessDeniedException) {
fail("Not receiving AccessDeniedException for user '" + user.getShortName() + "'"); fail("Not receiving AccessDeniedException for user '" + user.getShortName() + "'");
} }
} catch (UndeclaredThrowableException ute) {
// TODO why we get a PrivilegedActionException, which is unexpected?
Throwable ex = ute.getUndeclaredThrowable();
if (ex instanceof PrivilegedActionException) {
ex = ((PrivilegedActionException) ex).getException();
}
if (ex instanceof ServiceException) {
ServiceException se = (ServiceException)ex;
if (se.getCause() != null && se.getCause() instanceof AccessDeniedException) {
// expected result
return;
}
}
fail("Not receiving AccessDeniedException for user '" + user.getShortName() + "'");
} }
} }
} }