]> source.dussan.org Git - archiva.git/blob
1da181adf273168a01144aed5273ddf2a7c67432
[archiva.git] /
1 package org.apache.archiva.admin.repository.remote;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import org.apache.archiva.admin.repository.AbstractRepositoryAdminTest;
22 import org.junit.Test;
23
24 import javax.inject.Inject;
25 import java.util.List;
26
27 /**
28  * @author Olivier Lamy
29  */
30 public class RemoteRepositoryAdminTest
31     extends AbstractRepositoryAdminTest
32 {
33
34     @Inject
35     private RemoteRepositoryAdmin remoteRepositoryAdmin;
36
37     @Test
38     public void getAll()
39         throws Exception
40     {
41         List<RemoteRepository> remoteRepositories = remoteRepositoryAdmin.getRemoteRepositories();
42         assertNotNull( remoteRepositories );
43         assertTrue( remoteRepositories.size() > 0 );
44         log.info( "remote " + remoteRepositories );
45     }
46
47     @Test
48     public void getById()
49         throws Exception
50     {
51         RemoteRepository central = remoteRepositoryAdmin.getRemoteRepository( "central" );
52         assertNotNull( central );
53         assertEquals( "http://repo1.maven.org/maven2", central.getUrl() );
54         assertEquals( 60, central.getTimeout() );
55         assertNull( central.getUserName() );
56         assertNull( central.getPassword() );
57     }
58
59     @Test
60     public void addAndDelete()
61         throws Exception
62     {
63         int initialSize = remoteRepositoryAdmin.getRemoteRepositories().size();
64
65         RemoteRepository remoteRepository = getRemoteRepository();
66
67         remoteRepositoryAdmin.addRemoteRepository( remoteRepository );
68
69         assertEquals( initialSize + 1, remoteRepositoryAdmin.getRemoteRepositories().size() );
70
71         RemoteRepository repo = remoteRepositoryAdmin.getRemoteRepository( "foo" );
72         assertNotNull( repo );
73         assertEquals( getRemoteRepository().getPassword(), repo.getPassword() );
74         assertEquals( getRemoteRepository().getUrl(), repo.getUrl() );
75         assertEquals( getRemoteRepository().getUserName(), repo.getUserName() );
76         assertEquals( getRemoteRepository().getName(), repo.getName() );
77         assertEquals( getRemoteRepository().getTimeout(), repo.getTimeout() );
78
79         remoteRepositoryAdmin.deleteRemoteRepository( "foo" );
80
81         assertEquals( initialSize, remoteRepositoryAdmin.getRemoteRepositories().size() );
82
83         repo = remoteRepositoryAdmin.getRemoteRepository( "foo" );
84         assertNull( repo );
85     }
86
87
88     private RemoteRepository getRemoteRepository()
89     {
90         RemoteRepository remoteRepository = new RemoteRepository();
91         remoteRepository.setUrl( "http://foo.com/maven-it-rocks" );
92         remoteRepository.setTimeout( 10 );
93         remoteRepository.setName( "maven foo" );
94         remoteRepository.setUserName( "foo-name" );
95         remoteRepository.setPassword( "toto" );
96         remoteRepository.setId( "foo" );
97         return remoteRepository;
98     }
99 }