Package org.apache.directory.server.core.authn

Source Code of org.apache.directory.server.core.authn.SimpleAuthenticatorOneWayEncryptedTest

/*
*  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.directory.server.core.authn;


import org.apache.directory.server.core.authn.SimpleAuthenticator;
import org.apache.directory.shared.ldap.util.StringTools;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;


/**
* Test case for helper methods within SimpleAuthenticator.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class SimpleAuthenticatorOneWayEncryptedTest
{
    private SimpleAuthenticator auth = null;


    @Before
    public void setUp() throws Exception
    {

        this.auth = new SimpleAuthenticator();
    }


    @Test
    public void testGetAlgorithmForHashedPassword()
    {
        String digestetValue = "{SHA}LhkDrSoM6qr0fW6hzlfOJQW61tc=";
        assertEquals( "SHA", auth.getAlgorithmForHashedPassword( StringTools.getBytesUtf8( digestetValue ) ) );
        assertEquals( "SHA", auth.getAlgorithmForHashedPassword( digestetValue.getBytes() ) );

        String noAlgorithm = "Secret1!";
        assertEquals( null, auth.getAlgorithmForHashedPassword( StringTools.getBytesUtf8( noAlgorithm ) ) );
        assertEquals( null, auth.getAlgorithmForHashedPassword( noAlgorithm.getBytes() ) );

        String unknownAlgorithm = "{XYZ}LhkDrSoM6qr0fW6hzlfOJQW61tc=";
        assertEquals( null, auth.getAlgorithmForHashedPassword( StringTools.getBytesUtf8( unknownAlgorithm ) ) );
        assertEquals( null, auth.getAlgorithmForHashedPassword( unknownAlgorithm.getBytes() ) );
    }


    @Test
    public void testCreateDigestedPassword() throws IllegalArgumentException
    {
        String pwd = "Secret1!";
        String expected = "{SHA}znbJr3+tymFoQD4+Njh4ITtI7Cc=";
        String digested = auth.createDigestedPassword( "SHA", StringTools.getBytesUtf8( pwd ) );

        assertEquals( expected, digested );
    }
}
TOP

Related Classes of org.apache.directory.server.core.authn.SimpleAuthenticatorOneWayEncryptedTest

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.