/* 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.login; import java.util.HashMap; import java.util.Properties; import java.util.Set; import javax.security.auth.Subject; import javax.security.auth.callback.CallbackHandler; import javax.security.auth.login.LoginException; import javax.security.auth.spi.LoginModule; import junit.framework.TestCase; import org.apache.wiki.TestEngine; import org.apache.wiki.WikiEngine; import org.apache.wiki.api.exceptions.NoRequiredPropertyException; import org.apache.wiki.auth.WikiPrincipal; import org.apache.wiki.auth.authorize.Role; import org.apache.wiki.auth.user.UserDatabase; import org.apache.wiki.auth.user.XMLUserDatabase; /** */ public class UserDatabaseLoginModuleTest extends TestCase { WikiEngine m_engine; UserDatabase m_db; Subject m_subject; public final void testLogin() { try { // Log in with a user that isn't in the database CallbackHandler handler = new WikiCallbackHandler( m_engine, null, "user", "password" ); LoginModule module = new UserDatabaseLoginModule(); module.initialize( m_subject, handler, new HashMap<String, Object>(), new HashMap<String, Object>() ); module.login(); module.commit(); Set principals = m_subject.getPrincipals(); assertEquals( 1, principals.size() ); assertTrue( principals.contains( new WikiPrincipal( "user", WikiPrincipal.LOGIN_NAME ) ) ); assertFalse( principals.contains( Role.AUTHENTICATED ) ); assertFalse( principals.contains( Role.ALL ) ); // Login with a user that IS in the database m_subject = new Subject(); handler = new WikiCallbackHandler( m_engine, null, "janne", "myP@5sw0rd" ); module = new UserDatabaseLoginModule(); module.initialize( m_subject, handler, new HashMap<String, Object>(), new HashMap<String, Object>() ); module.login(); module.commit(); principals = m_subject.getPrincipals(); assertEquals( 1, principals.size() ); assertTrue( principals.contains( new WikiPrincipal( "janne", WikiPrincipal.LOGIN_NAME ) ) ); assertFalse( principals.contains( Role.AUTHENTICATED ) ); assertFalse( principals.contains( Role.ALL ) ); } catch( LoginException e ) { System.err.println( e.getMessage() ); assertTrue( false ); } } public final void testLogout() { try { CallbackHandler handler = new WikiCallbackHandler( m_engine, null, "user", "password" ); LoginModule module = new UserDatabaseLoginModule(); module.initialize( m_subject, handler, new HashMap<String, Object>(), new HashMap<String, Object>() ); module.login(); module.commit(); Set principals = m_subject.getPrincipals(); assertEquals( 1, principals.size() ); assertTrue( principals.contains( new WikiPrincipal( "user", WikiPrincipal.LOGIN_NAME ) ) ); assertFalse( principals.contains( Role.AUTHENTICATED ) ); assertFalse( principals.contains( Role.ALL ) ); module.logout(); assertEquals( 0, principals.size() ); } catch( LoginException e ) { System.err.println( e.getMessage() ); assertTrue( false ); } } /** * @see junit.framework.TestCase#setUp() */ protected void setUp() throws Exception { Properties props = TestEngine.getTestProperties(); props.put(XMLUserDatabase.PROP_USERDATABASE, "target/test-classes/userdatabase.xml" ); m_engine = new TestEngine(props); m_db = new XMLUserDatabase(); m_subject = new Subject(); try { m_db.initialize( m_engine, props ); } catch( NoRequiredPropertyException e ) { System.err.println( e.getMessage() ); assertTrue( false ); } } }