Package org.apache.jackrabbit.commons

Source Code of org.apache.jackrabbit.commons.JcrUtilsTest

/*
* 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.jackrabbit.commons;

import java.util.HashMap;
import java.util.Hashtable;
import java.util.Map;

import javax.jcr.RepositoryException;
import javax.naming.InitialContext;

public class JcrUtilsTest extends MockCase {

    public void testGetRepository() throws Exception {
        Object repository = record(AbstractRepository.class);

        Hashtable<String, String> environment = new Hashtable<String, String>();
        environment.put(
                "java.naming.factory.initial",
                "org.osjava.sj.memory.MemoryContextFactory");
        environment.put("org.osjava.sj.jndi.shared", "true");
        InitialContext context = new InitialContext(environment);
        context.bind("repository", repository);

        // Test lookup with a traditional map of parameters
        Map<String, String> parameters = new HashMap<String, String>();
        parameters.put(
                "org.apache.jackrabbit.repository.jndi.name", "repository");
        parameters.put(
                "java.naming.factory.initial",
                "org.osjava.sj.memory.MemoryContextFactory");
        parameters.put("org.osjava.sj.jndi.shared", "true");
        assertTrue(repository == JcrUtils.getRepository(parameters));

        // Test lookup with URI query parameters
        assertTrue(repository == JcrUtils.getRepository(
                "jndi://x"
                + "?org.apache.jackrabbit.repository.jndi.name=repository"
                + "&org.osjava.sj.jndi.shared=true"
                + "&java.naming.factory.initial"
                + "=org.osjava.sj.memory.MemoryContextFactory"));

        // Test lookup with the custom JNDI URI format (JCR-2771)
        assertTrue(repository == JcrUtils.getRepository(
                "jndi://org.osjava.sj.memory.MemoryContextFactory/repository"
                + "?org.osjava.sj.jndi.shared=true"));

        try {
            JcrUtils.getRepository(
                    "jndi://org.osjava.sj.memory.MemoryContextFactory/missing");
            fail("Repository lookup failure should throw an exception");
        } catch (RepositoryException expected) {
        }
    }

}
TOP

Related Classes of org.apache.jackrabbit.commons.JcrUtilsTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.