blob: 44438667fc6bd97b57c3209cd5ac3df57f6e5db0 [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.sling.jcr.base;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.mockito.Mockito.doReturn;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Proxy;
import javax.jcr.RepositoryException;
import javax.jcr.Session;
import org.apache.sling.testing.mock.jcr.MockJcr;
import org.junit.Test;
import org.mockito.Mockito;
public class SessionProxyHandlerTest {
/**
* Method verifies that session proxy with given repository manager could be created
* and proxy instance is a kind of <code>SessionProxyHandler.SessionProxyInvocationHandler</code>
* class.
*/
@Test
public void testProxy() throws RepositoryException {
/* Create a new mockSession and mock it to return another one on impersonate() method call,
* since impersonate method doesn't implemented.
*/
Session session = Mockito.spy(MockJcr.newSession("admin", "adminSpace"));
Session imperSession = MockJcr.newSession("test", "testSpace");
doReturn(imperSession).when(session).impersonate(null);
//Create a proxy handle and proxy session
SessionProxyHandler proxyHandler = new SessionProxyHandler(new MockSlingRepositoryManager(null));
Session proxySession = proxyHandler.createProxy(session);
//sessionForTest is a proxy which contains a link to the imperSession object
Session sessionForTest = proxySession.impersonate(null);
InvocationHandler handler = Proxy.getInvocationHandler(sessionForTest);
/* Checking that proxySession is a kind of SessionProxyHandler.SessionProxyInvocationHandler class.
* So we sure that proxy object creation works fine.
*/
assertEquals(SessionProxyHandler.SessionProxyInvocationHandler.class, handler.getClass());
//Checking that others methods of proxy object works also well and doesn't call impersonate method
assertNotNull(sessionForTest.getRootNode());
assertNotNull(sessionForTest.getRepository());
}
}