Browse Source

[MRM-1506] api to configure RemoteRepository : start adding unit tests

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1165040 13f79535-47bb-0310-9956-ffa450edef68
tags/archiva-1.4-M1
Olivier Lamy 12 years ago
parent
commit
8269936883

+ 3
- 0
archiva-modules/archiva-base/archiva-repository-admin/pom.xml View File

@@ -32,6 +32,9 @@
<groupId>org.apache.archiva</groupId>
<artifactId>archiva-configuration</artifactId>
</dependency>
<!-- FIXME should not be a dependency role constants must be moved in a new module
archiva-security-common
-->
<dependency>
<groupId>org.apache.archiva</groupId>
<artifactId>archiva-security</artifactId>

archiva-modules/archiva-base/archiva-repository-admin/src/test/java/org/apache/archiva/admin/repository/managed/AbstractRepositoryAdminTest.java → archiva-modules/archiva-base/archiva-repository-admin/src/test/java/org/apache/archiva/admin/repository/AbstractRepositoryAdminTest.java View File

@@ -1,4 +1,4 @@
package org.apache.archiva.admin.repository.managed;
package org.apache.archiva.admin.repository;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file

+ 1
- 0
archiva-modules/archiva-base/archiva-repository-admin/src/test/java/org/apache/archiva/admin/repository/managed/ManagedRepositoryAdminTest.java View File

@@ -20,6 +20,7 @@ package org.apache.archiva.admin.repository.managed;

import org.apache.archiva.admin.AuditInformation;
import org.apache.archiva.admin.mock.MockAuditListener;
import org.apache.archiva.admin.repository.AbstractRepositoryAdminTest;
import org.apache.archiva.audit.AuditEvent;
import org.apache.archiva.security.ArchivaRoleConstants;
import org.apache.commons.io.FileUtils;

+ 58
- 0
archiva-modules/archiva-base/archiva-repository-admin/src/test/java/org/apache/archiva/admin/repository/remote/RemoteRepositoryAdminTest.java View File

@@ -0,0 +1,58 @@
package org.apache.archiva.admin.repository.remote;
/*
* 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.
*/

import org.apache.archiva.admin.repository.AbstractRepositoryAdminTest;
import org.junit.Test;

import javax.inject.Inject;
import java.util.List;

/**
* @author Olivier Lamy
*/
public class RemoteRepositoryAdminTest
extends AbstractRepositoryAdminTest
{

@Inject
private RemoteRepositoryAdmin remoteRepositoryAdmin;

@Test
public void getAll()
throws Exception
{
List<RemoteRepository> remoteRepositories = remoteRepositoryAdmin.getRemoteRepositories();
assertNotNull( remoteRepositories );
assertTrue( remoteRepositories.size() > 0 );
log.info( "remote " + remoteRepositories );
}

@Test
public void getById()
throws Exception
{
RemoteRepository central = remoteRepositoryAdmin.getRemoteRepository( "central" );
assertNotNull( central );
assertEquals( "http://repo1.maven.org/maven2", central.getUrl() );
assertEquals( 60, central.getTimeout() );
assertNull( central.getUserName() );
assertNull( central.getPassword() );
}
}

Loading…
Cancel
Save