/* 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.wiki.auth.authorize; import java.io.File; import java.security.Principal; import java.sql.Connection; import java.sql.SQLException; import java.util.Properties; import javax.naming.Context; import javax.naming.InitialContext; import javax.naming.NameAlreadyBoundException; import javax.sql.DataSource; import junit.framework.TestCase; import org.apache.wiki.*; import org.apache.wiki.api.exceptions.WikiException; import org.apache.wiki.auth.NoSuchPrincipalException; import org.apache.wiki.auth.WikiPrincipal; import org.apache.wiki.auth.WikiSecurityException; /** */ public class JDBCGroupDatabaseTest extends TestCase { private HsqlDbUtils m_hu = new HsqlDbUtils(); private Connection m_conn = null; private JDBCGroupDatabase m_db = null; private String m_wiki; /** * @see junit.framework.TestCase#setUp() */ protected void setUp() throws Exception { super.setUp(); m_hu.setUp(); Properties props = TestEngine.getTestProperties(); WikiEngine engine = new TestEngine( props ); m_wiki = engine.getApplicationName(); // Set up the mock JNDI initial context TestJNDIContext.initialize(); Context initCtx = new InitialContext(); try { initCtx.bind( "java:comp/env", new TestJNDIContext() ); } catch( NameAlreadyBoundException e ) { // ignore } Context ctx = (Context) initCtx.lookup( "java:comp/env" ); DataSource ds = new TestJDBCDataSource( new File( "target/test-classes/jspwiki-custom.properties" ) ); ctx.bind( JDBCGroupDatabase.DEFAULT_GROUPDB_DATASOURCE, ds ); // Get the JDBC connection and init tables try { m_conn = ds.getConnection(); } catch( SQLException e ) { fail("Looks like your database could not be connected to - "+ "please make sure that you have started your database, exception: " + e.getMessage()); } // Initialize the user database m_db = new JDBCGroupDatabase(); m_db.initialize( engine, new Properties() ); } public void tearDown() throws Exception { if ( m_conn != null ) { m_conn.close(); } m_hu.tearDown(); } public void testDelete() throws WikiException { // First, count the number of groups in the db now. int oldUserCount = m_db.groups().length; // Create a new group with random name String name = "TestGroup" + String.valueOf( System.currentTimeMillis() ); Group group = new Group( name, m_wiki ); Principal al = new WikiPrincipal( "Al" ); Principal bob = new WikiPrincipal( "Bob" ); group.add( al ); group.add( bob ); m_db.save(group, new WikiPrincipal( "Tester") ); // Make sure the profile saved successfully group = backendGroup( name ); assertEquals( name, group.getName() ); assertEquals( oldUserCount+1, m_db.groups().length ); // Now delete the profile; should be back to old count m_db.delete( group ); assertEquals( oldUserCount, m_db.groups().length ); } public void testGroups() throws WikiSecurityException { // Test file has 4 groups in it: TV, Literature, Art, and Admin Group[] groups = m_db.groups(); assertEquals( 4, groups.length ); Group group; // Group TV has 3 members group = backendGroup( "TV" ); assertEquals("TV", group.getName() ); assertEquals( 3, group.members().length ); // Group Literature has 2 members group = backendGroup( "Literature" ); assertEquals("Literature", group.getName() ); assertEquals( 2, group.members().length ); // Group Art has no members group = backendGroup( "Art" ); assertEquals("Art", group.getName() ); assertEquals( 0, group.members().length ); // Group Admin has 1 member (Administrator) group = backendGroup( "Admin" ); assertEquals("Admin", group.getName() ); assertEquals( 1, group.members().length ); assertEquals( "Administrator", group.members()[0].getName() ); // Group Archaeology doesn't exist try { group = backendGroup( "Archaeology" ); // We should never get here assertTrue(false); } catch (NoSuchPrincipalException e) { assertTrue(true); } } public void testSave() throws Exception { // Create a new group with random name String name = "TestGroup" + String.valueOf( System.currentTimeMillis() ); Group group = new Group( name, m_wiki ); Principal al = new WikiPrincipal( "Al" ); Principal bob = new WikiPrincipal( "Bob" ); Principal cookie = new WikiPrincipal( "Cookie" ); group.add( al ); group.add( bob ); group.add( cookie ); m_db.save(group, new WikiPrincipal( "Tester" ) ); // Make sure the profile saved successfully group = backendGroup( name ); assertEquals( name, group.getName() ); assertEquals( 3, group.members().length ); assertTrue( group.isMember( new WikiPrincipal( "Al" ) ) ); assertTrue( group.isMember( new WikiPrincipal( "Bob" ) ) ); assertTrue( group.isMember( new WikiPrincipal( "Cookie" ) ) ); // The back-end should have timestamped the create/modify fields assertNotNull( group.getCreator() ); assertEquals( "Tester", group.getCreator() ); assertNotNull( group.getCreated() ); assertNotNull( group.getModifier() ); assertEquals( "Tester", group.getModifier() ); assertNotNull( group.getLastModified() ); assertNotSame( group.getCreated(), group.getLastModified() ); // Remove the group m_db.delete( group ); } public void testResave() throws Exception { // Create a new group with random name & 3 members String name = "TestGroup" + String.valueOf( System.currentTimeMillis() ); Group group = new Group( name, m_wiki ); Principal al = new WikiPrincipal( "Al" ); Principal bob = new WikiPrincipal( "Bob" ); Principal cookie = new WikiPrincipal( "Cookie" ); group.add( al ); group.add( bob ); group.add( cookie ); m_db.save(group, new WikiPrincipal( "Tester" ) ); // Make sure the profile saved successfully group = backendGroup( name ); assertEquals( name, group.getName() ); // Modify the members by adding the group; re-add Al while we're at it Principal dave = new WikiPrincipal( "Dave" ); group.add( al ); group.add( dave ); m_db.save(group, new WikiPrincipal( "SecondTester" ) ); // We should see 4 members and new timestamp info Principal[] members = group.members(); assertEquals( 4, members.length ); assertNotNull( group.getCreator() ); assertEquals( "Tester", group.getCreator() ); assertNotNull( group.getCreated() ); assertNotNull( group.getModifier() ); assertEquals( "SecondTester", group.getModifier() ); assertNotNull( group.getLastModified() ); // Check the back-end; We should see the same thing group = backendGroup( name ); members = group.members(); assertEquals( 4, members.length ); assertNotNull( group.getCreator() ); assertEquals( "Tester", group.getCreator() ); assertNotNull( group.getCreated() ); assertNotNull( group.getModifier() ); assertEquals( "SecondTester", group.getModifier() ); assertNotNull( group.getLastModified() ); // Remove the group m_db.delete( group ); } private Group backendGroup( String name ) throws WikiSecurityException { Group[] groups = m_db.groups(); for ( int i = 0; i < groups.length; i++ ) { Group group = groups[i]; if ( group.getName().equals( name ) ) { return group; } } throw new NoSuchPrincipalException( "No group named " + name ); } }