mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
- Incorporate JCR project into Repository project
- Single configuration entry point for JCR and non-JCR clients (i.e. application-context.xml) - Addition of build-war, incremental-war build targets (no deploy) - Remove build of JCR TCK war file by default git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2777 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
98
source/java/org/alfresco/jcr/session/SessionImplTest.java
Normal file
98
source/java/org/alfresco/jcr/session/SessionImplTest.java
Normal file
@@ -0,0 +1,98 @@
|
||||
/*
|
||||
* Copyright (C) 2005 Alfresco, Inc.
|
||||
*
|
||||
* Licensed under the Mozilla Public License version 1.1
|
||||
* with a permitted attribution clause. You may obtain a
|
||||
* copy of the License at
|
||||
*
|
||||
* http://www.alfresco.org/legal/license.txt
|
||||
*
|
||||
* 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.alfresco.jcr.session;
|
||||
|
||||
import javax.jcr.Repository;
|
||||
import javax.jcr.RepositoryException;
|
||||
import javax.jcr.Session;
|
||||
import javax.jcr.SimpleCredentials;
|
||||
|
||||
import org.alfresco.jcr.test.BaseJCRTest;
|
||||
|
||||
|
||||
/**
|
||||
* Test JCR Session
|
||||
*
|
||||
* @author David Caruana
|
||||
*/
|
||||
public class SessionImplTest extends BaseJCRTest
|
||||
{
|
||||
protected Session superuserSession;
|
||||
|
||||
@Override
|
||||
protected void setUp() throws Exception
|
||||
{
|
||||
super.setUp();
|
||||
|
||||
SimpleCredentials superuser = new SimpleCredentials("superuser", "".toCharArray());
|
||||
superuser.setAttribute("attr1", "superuserValue");
|
||||
superuser.setAttribute("attr2", new Integer(1));
|
||||
superuserSession = repository.login(superuser, getWorkspace());
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void tearDown() throws Exception
|
||||
{
|
||||
superuserSession.logout();
|
||||
super.tearDown();
|
||||
}
|
||||
|
||||
public void testRepository()
|
||||
throws RepositoryException
|
||||
{
|
||||
Repository sessionRepository = superuserSession.getRepository();
|
||||
assertNotNull(sessionRepository);
|
||||
assertEquals(repository, sessionRepository);
|
||||
}
|
||||
|
||||
public void testUserId()
|
||||
{
|
||||
{
|
||||
String userId = superuserSession.getUserID();
|
||||
assertNotNull(userId);
|
||||
assertEquals("superuser", userId);
|
||||
}
|
||||
}
|
||||
|
||||
public void testAttributes()
|
||||
{
|
||||
{
|
||||
String[] names = superuserSession.getAttributeNames();
|
||||
assertNotNull(names);
|
||||
assertEquals(2, names.length);
|
||||
String value1 = (String)superuserSession.getAttribute("attr1");
|
||||
assertNotNull(value1);
|
||||
assertEquals("superuserValue", value1);
|
||||
Integer value2 = (Integer)superuserSession.getAttribute("attr2");
|
||||
assertNotNull(value2);
|
||||
assertEquals(new Integer(1), value2);
|
||||
String value3 = (String)superuserSession.getAttribute("unknown");
|
||||
assertNull(value3);
|
||||
}
|
||||
}
|
||||
|
||||
public void testLogout()
|
||||
{
|
||||
boolean isLive = superuserSession.isLive();
|
||||
assertTrue(isLive);
|
||||
superuserSession.logout();
|
||||
isLive = superuserSession.isLive();
|
||||
assertFalse(isLive);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user