blob: 64c4ca5f013fe12f7d0cf79ed8da1eea04092e88 [file] [log] [blame]
package com.fasterxml.jackson.databind.misc;
import java.io.IOException;
import java.security.Permission;
import com.fasterxml.jackson.databind.*;
// Test(s) to verify that forced access works as expected
public class AccessFixTest extends BaseMapTest
{
static class CauseBlockingSecurityManager
extends SecurityManager
{
@Override
public void checkPermission(Permission perm) throws SecurityException {
if ("suppressAccessChecks".equals(perm.getName())) {
throw new SecurityException("Can not force permission: "+perm);
}
}
}
// [databind#877]: avoid forcing access to `cause` field of `Throwable`
// as it is never actually used (always call `initCause()` instead)
public void testCauseOfThrowableIgnoral() throws Exception
{
final SecurityManager origSecMan = System.getSecurityManager();
ObjectMapper mapper = new ObjectMapper();
mapper.disable(MapperFeature.OVERRIDE_PUBLIC_ACCESS_MODIFIERS);
try {
System.setSecurityManager(new CauseBlockingSecurityManager());
_testCauseOfThrowableIgnoral(mapper);
} finally {
System.setSecurityManager(origSecMan);
}
}
private void _testCauseOfThrowableIgnoral(ObjectMapper mapper) throws Exception
{
IOException e = mapper.readValue("{}", IOException.class);
assertNotNull(e);
}
}