You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by eg...@apache.org on 2003/06/03 15:52:13 UTC

cvs commit: cocoon-lenya/src/test/org/apache/lenya/cms/ac RoleManagerTest.java FileRoleTest.java FileGroupTest.java GroupManagerTest.java

egli        2003/06/03 06:52:13

  Added:       src/test/org/apache/lenya/cms/ac RoleManagerTest.java
                        FileRoleTest.java FileGroupTest.java
                        GroupManagerTest.java
  Log:
  Added test cases for FileGroup, FileRole, GroupManager and RoleManager.
  
  Revision  Changes    Path
  1.1                  cocoon-lenya/src/test/org/apache/lenya/cms/ac/RoleManagerTest.java
  
  Index: RoleManagerTest.java
  ===================================================================
  /*
   * $Id: RoleManagerTest.java,v 1.1 2003/06/03 13:52:12 egli Exp $
   * <License>
   * The Apache Software License
   *
   * Copyright (c) 2003 Wyona. All rights reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. All advertising materials mentioning features or use of this
   *    software must display the following acknowledgment: "This product
   *    includes software developed by Wyona (http://www.wyona.com)"
   *
   * 4. The name "Lenya" must not be used to endorse or promote products
   *    derived from this software without prior written permission. For
   *    written permission, please contact contact@wyona.com
   *
   * 5. Products derived from this software may not be called "Lenya" nor
   *    may "Lenya" appear in their names without prior written permission
   *    of Wyona.
   *
   * 6. Redistributions of any form whatsoever must retain the following
   *    acknowledgment: "This product includes software developed by Wyona
   *    (http://www.wyona.com)"
   *
   * THIS SOFTWARE IS PROVIDED BY Wyona "AS IS" WITHOUT ANY WARRANTY EXPRESS
   * OR IMPLIED, INCLUDING THE WARRANTY OF NON-INFRINGEMENT AND THE IMPLIED
   * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   * Wyona WILL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY YOU AS A RESULT
   * OF USING THIS SOFTWARE. IN NO EVENT WILL lenya BE LIABLE FOR ANY SPECIAL,
   * INDIRECT OR CONSEQUENTIAL DAMAGES OR LOST PROFITS EVEN IF Wyona HAS BEEN
   * ADVISED OF THE POSSIBILITY OF THEIR OCCURRENCE. Wyona WILL NOT BE LIABLE
   * FOR ANY THIRD PARTY CLAIMS AGAINST YOU.
   *
   * Lenya includes software developed by the Apache Software Foundation, W3C,
   * DOM4J Project, BitfluxEditor and Xopus.
   * </License>
   */
   
  package org.apache.lenya.cms.ac;
  
  import java.util.Iterator;
  
  import org.apache.lenya.cms.publication.Publication;
  import org.apache.lenya.cms.publication.PublicationFactory;
  
  import junit.framework.TestCase;
  
  /**
   * @author egli
   * 
   * 
   */
  public class RoleManagerTest extends TestCase {
  
  	/**
  	 * Constructor for RoleManagerTest.
  	 * @param arg0
  	 */
  	public RoleManagerTest(String arg0) {
  		super(arg0);
  	}
  
  	public static void main(String[] args) {
  		junit.textui.TestRunner.run(RoleManagerTest.class);
  	}
  	
  	final public Publication getPublication() {
  		String publicationId = "default";
  		String servletContext = "/home/egli/build/jakarta-tomcat-4.1.21-LE-jdk14/webapps/lenya/";
  		Publication pub = PublicationFactory.getPublication(publicationId, servletContext);
  		return pub;
  	}
  
  	final public void testInstance() {
  		Publication pub = getPublication();
  		RoleManager manager = null;
  		try {
  			manager = RoleManager.instance(pub);
  		} catch (AccessControlException e) {
  			e.printStackTrace();
  		}
  		assertNotNull(manager);
  		RoleManager anotherManager = null;
  		try {
  			anotherManager = RoleManager.instance(pub);
  		} catch (AccessControlException e1) {
  			e1.printStackTrace();
  		}
  		assertNotNull(anotherManager);
  		assertEquals(manager, anotherManager);
  	}
  
  	final public void testGetRoles() {
  	}
  
  	/*
  	 * Test for void add(Role)
  	 */
  	final public void testAddRole() {
  		Publication pub = getPublication();
  		String name = "test";
  		Role role = new Role(name);
  		RoleManager manager = null;
  		try {
  			manager = RoleManager.instance(pub);
  		} catch (AccessControlException e) {
  			e.printStackTrace();
  		}
  		assertNotNull(manager);
  		manager.add(role);
  
  		assertTrue(manager.getRoles().hasNext());	
  	}
  
  	/*
  	 * Test for void remove(Role)
  	 */
  	final public void testRemoveRole() {
  		Publication pub = getPublication();
  		String name = "test";
  		Role role = new Role(name);
  		RoleManager manager = null;
  		try {
  			manager = RoleManager.instance(pub);
  		} catch (AccessControlException e) {
  			e.printStackTrace();
  		}
  		assertNotNull(manager);
  		int roleCountBefore = 0;
  		for (Iterator iter = manager.getRoles(); iter.hasNext();) {
  			roleCountBefore += 1;
  			iter.next();
  		}
  		manager.add(role);
  		manager.remove(role);
  		int roleCountAfter = 0;
  		for (Iterator iter = manager.getRoles(); iter.hasNext();) {
  			roleCountAfter += 1;	
  			iter.next();
  		}
  		assertEquals(roleCountBefore, roleCountAfter);
  	}
  
  }
  
  
  
  1.1                  cocoon-lenya/src/test/org/apache/lenya/cms/ac/FileRoleTest.java
  
  Index: FileRoleTest.java
  ===================================================================
  /*
   * $Id: FileRoleTest.java,v 1.1 2003/06/03 13:52:12 egli Exp $
   * <License>
   * The Apache Software License
   *
   * Copyright (c) 2003 Wyona. All rights reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. All advertising materials mentioning features or use of this
   *    software must display the following acknowledgment: "This product
   *    includes software developed by Wyona (http://www.wyona.com)"
   *
   * 4. The name "Lenya" must not be used to endorse or promote products
   *    derived from this software without prior written permission. For
   *    written permission, please contact contact@wyona.com
   *
   * 5. Products derived from this software may not be called "Lenya" nor
   *    may "Lenya" appear in their names without prior written permission
   *    of Wyona.
   *
   * 6. Redistributions of any form whatsoever must retain the following
   *    acknowledgment: "This product includes software developed by Wyona
   *    (http://www.wyona.com)"
   *
   * THIS SOFTWARE IS PROVIDED BY Wyona "AS IS" WITHOUT ANY WARRANTY EXPRESS
   * OR IMPLIED, INCLUDING THE WARRANTY OF NON-INFRINGEMENT AND THE IMPLIED
   * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   * Wyona WILL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY YOU AS A RESULT
   * OF USING THIS SOFTWARE. IN NO EVENT WILL lenya BE LIABLE FOR ANY SPECIAL,
   * INDIRECT OR CONSEQUENTIAL DAMAGES OR LOST PROFITS EVEN IF Wyona HAS BEEN
   * ADVISED OF THE POSSIBILITY OF THEIR OCCURRENCE. Wyona WILL NOT BE LIABLE
   * FOR ANY THIRD PARTY CLAIMS AGAINST YOU.
   *
   * Lenya includes software developed by the Apache Software Foundation, W3C,
   * DOM4J Project, BitfluxEditor and Xopus.
   * </License>
   */
   
  package org.apache.lenya.cms.ac;
  
  import java.io.File;
  
  import org.apache.lenya.cms.publication.Publication;
  import org.apache.lenya.cms.publication.PublicationFactory;
  
  import junit.framework.TestCase;
  
  /**
   * @author egli
   * 
   * 
   */
  public class FileRoleTest extends TestCase {
  
  	/**
  	 * Constructor for FileRoleTest.
  	 * @param arg0
  	 */
  	public FileRoleTest(String arg0) {
  		super(arg0);
  	}
  
  	public static void main(String[] args) {
  		junit.textui.TestRunner.run(FileRoleTest.class);
  	}
  
  	final public Publication getPublication() {
  		String publicationId = "default";
  		String servletContext = "/home/egli/build/jakarta-tomcat-4.1.21-LE-jdk14/webapps/lenya/";
  		Publication pub = PublicationFactory.getPublication(publicationId, servletContext);
  		return pub;		
  	}
  	
  	final public void testFileRole() {
  		String name = "test";
  		Publication pub = getPublication();
  		FileRole role = new FileRole(pub, name);
  		try {
  			role.save();
  		} catch (AccessControlException e) {
  			e.printStackTrace();
  		}
  		File path = null;
  		try {
  			path = RoleManager.instance(pub).getPath();
  		} catch (AccessControlException e1) {
  			e1.printStackTrace();
  		}
  		File roleFile = new File(path, name + RoleManager.SUFFIX);
  		assertNotNull(roleFile);
  		assertTrue(roleFile.exists());	
  	}
  
  	final public void testSave() {
  		String name = "test";
  		String publicationId = "default";
  		String servletContext = "/home/egli/build/jakarta-tomcat-4.1.21-LE-jdk14/webapps/lenya/";
  		Publication pub = PublicationFactory.getPublication(publicationId, servletContext);
  		FileRole role = new FileRole(pub, name);
  		try {
  			role.save();
  		} catch (AccessControlException e) {
  			e.printStackTrace();
  		}
  		File path = null;
  		try {
  			path = RoleManager.instance(pub).getPath();
  		} catch (AccessControlException e1) {
  			e1.printStackTrace();
  		}
  		File roleFile = new File(path, name + RoleManager.SUFFIX);
  		assertNotNull(roleFile);
  		assertTrue(roleFile.exists());
  	}
  
  	final public void testGetName() {
  		String name = "test";
  		Publication pub = getPublication();
  		FileRole role = new FileRole(pub, name);
  		assertTrue(role.getName().equals(name));
  	}
  
  	/*
  	 * Test for boolean equals(Object)
  	 */
  	final public void testEqualsObject() {
  		String name = "test";
  		Publication pub = getPublication();
  		FileRole role1 = new FileRole(pub, name);
  		FileRole role2 = new FileRole(pub, name);
  		assertEquals(role1, role2);
  	}
  }
  
  
  
  1.1                  cocoon-lenya/src/test/org/apache/lenya/cms/ac/FileGroupTest.java
  
  Index: FileGroupTest.java
  ===================================================================
  /*
   * $Id: FileGroupTest.java,v 1.1 2003/06/03 13:52:12 egli Exp $
   * <License>
   * The Apache Software License
   *
   * Copyright (c) 2003 Wyona. All rights reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. All advertising materials mentioning features or use of this
   *    software must display the following acknowledgment: "This product
   *    includes software developed by Wyona (http://www.wyona.com)"
   *
   * 4. The name "Lenya" must not be used to endorse or promote products
   *    derived from this software without prior written permission. For
   *    written permission, please contact contact@wyona.com
   *
   * 5. Products derived from this software may not be called "Lenya" nor
   *    may "Lenya" appear in their names without prior written permission
   *    of Wyona.
   *
   * 6. Redistributions of any form whatsoever must retain the following
   *    acknowledgment: "This product includes software developed by Wyona
   *    (http://www.wyona.com)"
   *
   * THIS SOFTWARE IS PROVIDED BY Wyona "AS IS" WITHOUT ANY WARRANTY EXPRESS
   * OR IMPLIED, INCLUDING THE WARRANTY OF NON-INFRINGEMENT AND THE IMPLIED
   * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   * Wyona WILL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY YOU AS A RESULT
   * OF USING THIS SOFTWARE. IN NO EVENT WILL lenya BE LIABLE FOR ANY SPECIAL,
   * INDIRECT OR CONSEQUENTIAL DAMAGES OR LOST PROFITS EVEN IF Wyona HAS BEEN
   * ADVISED OF THE POSSIBILITY OF THEIR OCCURRENCE. Wyona WILL NOT BE LIABLE
   * FOR ANY THIRD PARTY CLAIMS AGAINST YOU.
   *
   * Lenya includes software developed by the Apache Software Foundation, W3C,
   * DOM4J Project, BitfluxEditor and Xopus.
   * </License>
   */
   
  package org.apache.lenya.cms.ac;
  
  import java.io.File;
  import java.util.Iterator;
  
  import org.apache.avalon.framework.configuration.Configuration;
  import org.apache.avalon.framework.configuration.ConfigurationException;
  import org.apache.avalon.framework.configuration.DefaultConfigurationBuilder;
  import org.apache.lenya.cms.publication.Publication;
  import org.apache.lenya.cms.publication.PublicationFactory;
  
  import junit.framework.TestCase;
  
  /**
   * @author egli
   * 
   * 
   */
  public class FileGroupTest extends TestCase {
  
  	/**
  	 * Constructor for FileGroupTest.
  	 * @param arg0
  	 */
  	public FileGroupTest(String arg0) {
  		super(arg0);
  	}
  
  	public static void main(String[] args) {
  		junit.textui.TestRunner.run(FileGroupTest.class);
  	}
  
  	final public Publication getPublication() {
  		String publicationId = "default";
  		String servletContext = "/home/egli/build/jakarta-tomcat-4.1.21-LE-jdk14/webapps/lenya/";
  		Publication pub = PublicationFactory.getPublication(publicationId, servletContext);
  		return pub;
  	}
  	
  	final public void testFileGroup() {
  		String groupName = "testGroup";
  		String roleName = "testRole";
  		Publication pub = getPublication();
  		FileGroup group = new FileGroup(pub, groupName);
  		FileRole role = new FileRole(pub, roleName);
  		group.addRole(role);
  		try {
  			role.save();
  		} catch (AccessControlException e2) {
  			e2.printStackTrace();
  		}
  		try {
  			group.save();
  		} catch (AccessControlException e) {
  			e.printStackTrace();
  		}
  		File path = null;
  		try {
  			path = RoleManager.instance(pub).getPath();
  		} catch (AccessControlException e1) {
  			e1.printStackTrace();
  		}
  		File groupFile = new File(path, groupName + GroupManager.SUFFIX);
  		assertNotNull(groupFile);
  		assertTrue(groupFile.exists());
  		Configuration config = null;
  		try {
  			config = new DefaultConfigurationBuilder().buildFromFile(groupFile);
  		} catch (Exception e3) {
  			e3.printStackTrace();
  		}
  		assertNotNull(config);
  		FileGroup newGroup = null;
  		try {
  			newGroup = new FileGroup(pub, config);
  		} catch (ConfigurationException e4) {
  			e4.printStackTrace();
  		}
  		assertNotNull(newGroup);
  		assertTrue(newGroup.getName().equals(groupName));
  		int roleCount = 0;
  		for (Iterator roles = newGroup.getRoles(); roles.hasNext();) {
  			Role newRole = (Role) roles.next();
  			roleCount = roleCount + 1;
  			assertTrue(newRole.getName().equals(roleName));	
  		}
  		assertEquals(1, roleCount);
  	}
  
  }
  
  
  
  1.1                  cocoon-lenya/src/test/org/apache/lenya/cms/ac/GroupManagerTest.java
  
  Index: GroupManagerTest.java
  ===================================================================
  /*
   * $Id: GroupManagerTest.java,v 1.1 2003/06/03 13:52:12 egli Exp $
   * <License>
   * The Apache Software License
   *
   * Copyright (c) 2003 Wyona. All rights reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. All advertising materials mentioning features or use of this
   *    software must display the following acknowledgment: "This product
   *    includes software developed by Wyona (http://www.wyona.com)"
   *
   * 4. The name "Lenya" must not be used to endorse or promote products
   *    derived from this software without prior written permission. For
   *    written permission, please contact contact@wyona.com
   *
   * 5. Products derived from this software may not be called "Lenya" nor
   *    may "Lenya" appear in their names without prior written permission
   *    of Wyona.
   *
   * 6. Redistributions of any form whatsoever must retain the following
   *    acknowledgment: "This product includes software developed by Wyona
   *    (http://www.wyona.com)"
   *
   * THIS SOFTWARE IS PROVIDED BY Wyona "AS IS" WITHOUT ANY WARRANTY EXPRESS
   * OR IMPLIED, INCLUDING THE WARRANTY OF NON-INFRINGEMENT AND THE IMPLIED
   * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   * Wyona WILL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY YOU AS A RESULT
   * OF USING THIS SOFTWARE. IN NO EVENT WILL lenya BE LIABLE FOR ANY SPECIAL,
   * INDIRECT OR CONSEQUENTIAL DAMAGES OR LOST PROFITS EVEN IF Wyona HAS BEEN
   * ADVISED OF THE POSSIBILITY OF THEIR OCCURRENCE. Wyona WILL NOT BE LIABLE
   * FOR ANY THIRD PARTY CLAIMS AGAINST YOU.
   *
   * Lenya includes software developed by the Apache Software Foundation, W3C,
   * DOM4J Project, BitfluxEditor and Xopus.
   * </License>
   */
   
  package org.apache.lenya.cms.ac;
  
  import org.apache.lenya.cms.publication.Publication;
  import org.apache.lenya.cms.publication.PublicationFactory;
  
  import junit.framework.TestCase;
  
  /**
   * @author egli
   * 
   * 
   */
  public class GroupManagerTest extends TestCase {
  
  	/**
  	 * Constructor for GroupManagerTest.
  	 * @param arg0
  	 */
  	public GroupManagerTest(String arg0) {
  		super(arg0);
  	}
  
  	public static void main(String[] args) {
  		junit.textui.TestRunner.run(GroupManagerTest.class);
  	}
  
  	final public void testInstance() {
  		String publicationId = "default";
  		String servletContext = "/home/egli/build/jakarta-tomcat-4.1.21-LE-jdk14/webapps/lenya/";
  		Publication pub = PublicationFactory.getPublication(publicationId, servletContext);
  		GroupManager manager = null;
  		try {
  			manager = GroupManager.instance(pub);
  		} catch (AccessControlException e) {
  			e.printStackTrace();
  		}
  		assertNotNull(manager);
  		GroupManager anotherManager = null;
  		try {
  			anotherManager = GroupManager.instance(pub);
  		} catch (AccessControlException e1) {
  			e1.printStackTrace();
  		}
  		assertNotNull(anotherManager);
  		assertEquals(manager, anotherManager);
  	}
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-cvs-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-cvs-help@cocoon.apache.org