blob: 05b81ed2a29d6d36673bba8acdfae4f96fe8c3e3 [file] [log] [blame]
/*
* 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.eclipse.aether.util.repository;
import static org.junit.Assert.*;
import org.eclipse.aether.DefaultRepositorySystemSession;
import org.eclipse.aether.RepositorySystemSession;
import org.eclipse.aether.repository.Authentication;
import org.eclipse.aether.repository.AuthenticationContext;
import org.eclipse.aether.repository.AuthenticationDigest;
import org.eclipse.aether.repository.RemoteRepository;
import org.junit.Test;
public class ComponentAuthenticationTest
{
private static class Component
{
}
private RepositorySystemSession newSession()
{
return new DefaultRepositorySystemSession();
}
private RemoteRepository newRepo( Authentication auth )
{
return new RemoteRepository.Builder( "test", "default", "http://localhost" ).setAuthentication( auth ).build();
}
private AuthenticationContext newContext( Authentication auth )
{
return AuthenticationContext.forRepository( newSession(), newRepo( auth ) );
}
private String newDigest( Authentication auth )
{
return AuthenticationDigest.forRepository( newSession(), newRepo( auth ) );
}
@Test
public void testFill()
{
Component comp = new Component();
Authentication auth = new ComponentAuthentication( "key", comp );
AuthenticationContext context = newContext( auth );
assertEquals( null, context.get( "another-key" ) );
assertSame( comp, context.get( "key", Component.class ) );
}
@Test
public void testDigest()
{
Authentication auth1 = new ComponentAuthentication( "key", new Component() );
Authentication auth2 = new ComponentAuthentication( "key", new Component() );
String digest1 = newDigest( auth1 );
String digest2 = newDigest( auth2 );
assertEquals( digest1, digest2 );
Authentication auth3 = new ComponentAuthentication( "key", new Object() );
String digest3 = newDigest( auth3 );
assertFalse( digest3.equals( digest1 ) );
Authentication auth4 = new ComponentAuthentication( "Key", new Component() );
String digest4 = newDigest( auth4 );
assertFalse( digest4.equals( digest1 ) );
}
@Test
public void testEquals()
{
Authentication auth1 = new ComponentAuthentication( "key", new Component() );
Authentication auth2 = new ComponentAuthentication( "key", new Component() );
Authentication auth3 = new ComponentAuthentication( "key", new Object() );
assertEquals( auth1, auth2 );
assertFalse( auth1.equals( auth3 ) );
assertFalse( auth1.equals( null ) );
}
@Test
public void testHashCode()
{
Authentication auth1 = new ComponentAuthentication( "key", new Component() );
Authentication auth2 = new ComponentAuthentication( "key", new Component() );
assertEquals( auth1.hashCode(), auth2.hashCode() );
}
}