1 /*
2 * $Id: MethodPermCacheTest.java 1188000 2011-10-23 23:10:24Z mcucchiara $
3 *
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
19 * under the License.
20 */
21
22 package org.apache.commons.ognl.internal;
23
24 import org.apache.commons.ognl.internal.entry.MethodPermCacheEntryFactory;
25 import org.apache.commons.ognl.test.objects.Root;
26 import org.junit.Assert;
27 import org.junit.Test;
28
29 import java.lang.reflect.Method;
30 import java.security.Permission;
31
32 /**
33 * User: Maurizio Cucchiara
34 * Date: 10/17/11
35 * Time: 12:13 AM
36 */
37 public class MethodPermCacheTest
38 {
39 private SecurityManager securityManager =new DummySecurityManager();
40
41 Cache<Method, Boolean> cache =
42 new ConcurrentHashMapCache<Method, Boolean>( new MethodPermCacheEntryFactory( securityManager ) );
43 @Test
44 public void testGetPublicMethod( )
45 throws CacheException, NoSuchMethodException
46 {
47 Method method = Root.class.getMethod( "getArray");
48 Assert.assertTrue( cache.get( method ) );
49 }
50
51 private class DummySecurityManager
52 extends SecurityManager
53 {
54 @Override
55 public void checkPermission( Permission perm )
56 {
57 }
58 }
59 }