All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jackrabbit.test.api.WorkspaceReadMethodsTest Maven / Gradle / Ivy

There is a newer version: 2.23.1-beta
Show newest version
/*
 * 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.test.api;

import org.apache.jackrabbit.test.AbstractJCRTest;

import javax.jcr.RepositoryException;
import javax.jcr.Session;
import javax.jcr.Workspace;

/**
 * WorkspaceReadMethodsTest...
 *
 */
public class WorkspaceReadMethodsTest extends AbstractJCRTest {

    /**
     * Sets up the fixture for the test.
     */
    protected void setUp() throws Exception {
        isReadOnly = true;
        super.setUp();
    }

    /**
     * Tests the getSession() method which returns the same session object as
     * this workspace was requested from.
     */
    public void testGetSession() throws RepositoryException {
        Session session = getHelper().getReadOnlySession();
        try {
            Session otherSession = session.getWorkspace().getSession();
            assertSame("Workspace.getSession() returns not the same session object.",
                    session, otherSession);
        } finally {
            session.logout();
        }
    }

    /**
     * Tests that the name returned by Workspace.getName() is equal to the one
     * used for login.
     */
    public void testGetName() throws RepositoryException {
        Session session = getHelper().getReadOnlySession(workspaceName);
        try {
            String name = session.getWorkspace().getName();
            if (workspaceName != null) {
                assertEquals("Workspace.getName() returns wrong name.",
                        workspaceName, name);
            }
        } finally {
            session.logout();
        }
    }

    /**
     * Tests Workspace.getQueryManager. This should just return correctly a
     * QueryManager object.
     */
    public void testGetQueryManager() throws RepositoryException {
        Workspace ws = getHelper().getReadOnlySession().getWorkspace();
        try {
            assertNotNull("Workspace does not return a QueryManager object.", ws.getQueryManager());
        } finally {
            ws.getSession().logout();
        }
    }

    /**
     * Tests Workspace.getAccessibleWorkspaceNames() by logging into the
     * Workspaces given by the returned names. The credentials are the same as
     * used for accessing the current workspace.
     */
    public void testGetAccessibleWorkspaceNames() throws RepositoryException {
        Session session = getHelper().getReadOnlySession();
        try {
            String[] wsNames = session.getWorkspace().getAccessibleWorkspaceNames();
            for (int i = 0; i < wsNames.length; i++) {
                // login
                Session s = getHelper().getReadOnlySession(wsNames[i]);
                s.logout();
            }
        } finally {
            session.logout();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy