Package com.github.ebnew.ki4so.core.authentication.handlers

Source Code of com.github.ebnew.ki4so.core.authentication.handlers.SimpleTestUsernamePasswordHandlerTests

/*
* Licensed to Jasig under one or more contributor license
* agreements. See the NOTICE file distributed with this work
* for additional information regarding copyright ownership.
* Jasig 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 the following location:
*
*   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 com.github.ebnew.ki4so.core.authentication.handlers;

import junit.framework.TestCase;

import org.mockito.Mockito;

import com.github.ebnew.ki4so.core.TestUtils;
import com.github.ebnew.ki4so.core.authentication.Credential;
import com.github.ebnew.ki4so.core.authentication.UsernamePasswordCredential;
import com.github.ebnew.ki4so.core.exception.InvalidCredentialException;

/**
* Test of the simple username/password handler
*
* @author Scott Battaglia
* @version $Revision$ $Date$
* @since 3.0
*/
public final class SimpleTestUsernamePasswordHandlerTests extends TestCase {

    private SimpleTestUsernamePasswordAuthenticationHandler authenticationHandler;

    protected void setUp() throws Exception {
        this.authenticationHandler = new SimpleTestUsernamePasswordAuthenticationHandler();
        this.authenticationHandler
            .setPasswordEncoder(new PlainTextPasswordEncoder());
    }

    public void testSupportsProperUserCredentials() {
        assertTrue(this.authenticationHandler.supports(TestUtils
            .getCredentialsWithSameUsernameAndPassword()));
    }

    public void testDoesntSupportBadUserCredentials() {
      Credential credential = Mockito.mock(Credential.class);
        assertFalse(this.authenticationHandler.supports(credential));
    }

    public void testValidUsernamePassword() {
        assertTrue(this.authenticationHandler.authenticate(TestUtils
            .getCredentialsWithSameUsernameAndPassword()));
    }

    public void testInvalidUsernamePassword() {
        try {
            assertFalse(this.authenticationHandler.authenticate(TestUtils
                .getCredentialsWithDifferentUsernameAndPassword()));
        } catch (InvalidCredentialException ae) {
            // this is okay
        }
    }

    public void testNullUsernamePassword() {
        try {
            assertFalse(this.authenticationHandler.authenticate(TestUtils
                .getCredentialsWithSameUsernameAndPassword(null)));
        } catch (InvalidCredentialException ae) {
            // this is okay
        }
    }
   
    public void testAlternateClass() {
        this.authenticationHandler.setClassToSupport(UsernamePasswordCredential.class);
        assertTrue(this.authenticationHandler.supports(new UsernamePasswordCredential()));
    }
   
    public void testAlternateClassWithSubclassSupport() {
        this.authenticationHandler.setClassToSupport(UsernamePasswordCredential.class);
        this.authenticationHandler.setSupportSubClasses(true);
        assertTrue(this.authenticationHandler.supports(new ExtendedCredentials()));
    }
   
    public void testAlternateClassWithNoSubclassSupport() {
        this.authenticationHandler.setClassToSupport(UsernamePasswordCredential.class);
        this.authenticationHandler.setSupportSubClasses(false);
        assertFalse(this.authenticationHandler.supports(new ExtendedCredentials()));
    }
   
    protected class ExtendedCredentials extends UsernamePasswordCredential {

        private static final long serialVersionUID = 406992293105518363L;
        // nothing to see here
    }
}
TOP

Related Classes of com.github.ebnew.ki4so.core.authentication.handlers.SimpleTestUsernamePasswordHandlerTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.