]> source.dussan.org Git - archiva.git/blob
fd294ce607d74f9278b7b404d3b47e7c452ab892
[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.apache.archiva.audit.AuditEvent;
23 import org.junit.Test;
24
25 import javax.inject.Inject;
26 import java.util.List;
27
28 /**
29  * @author Olivier Lamy
30  */
31 public class RemoteRepositoryAdminTest
32     extends AbstractRepositoryAdminTest
33 {
34
35     @Inject
36     private RemoteRepositoryAdmin remoteRepositoryAdmin;
37
38     @Test
39     public void getAll()
40         throws Exception
41     {
42         List<RemoteRepository> remoteRepositories = remoteRepositoryAdmin.getRemoteRepositories();
43         assertNotNull( remoteRepositories );
44         assertTrue( remoteRepositories.size() > 0 );
45         log.info( "remote " + remoteRepositories );
46     }
47
48     @Test
49     public void getById()
50         throws Exception
51     {
52         RemoteRepository central = remoteRepositoryAdmin.getRemoteRepository( "central" );
53         assertNotNull( central );
54         assertEquals( "http://repo1.maven.org/maven2", central.getUrl() );
55         assertEquals( 60, central.getTimeout() );
56         assertNull( central.getUserName() );
57         assertNull( central.getPassword() );
58     }
59
60     @Test
61     public void addAndDelete()
62         throws Exception
63     {
64         mockAuditListener.clearEvents();
65         int initialSize = remoteRepositoryAdmin.getRemoteRepositories().size();
66
67         RemoteRepository remoteRepository = getRemoteRepository();
68
69         remoteRepositoryAdmin.addRemoteRepository( remoteRepository, getFakeAuditInformation() );
70
71         assertEquals( initialSize + 1, remoteRepositoryAdmin.getRemoteRepositories().size() );
72
73         RemoteRepository repo = remoteRepositoryAdmin.getRemoteRepository( "foo" );
74         assertNotNull( repo );
75         assertEquals( getRemoteRepository().getPassword(), repo.getPassword() );
76         assertEquals( getRemoteRepository().getUrl(), repo.getUrl() );
77         assertEquals( getRemoteRepository().getUserName(), repo.getUserName() );
78         assertEquals( getRemoteRepository().getName(), repo.getName() );
79         assertEquals( getRemoteRepository().getTimeout(), repo.getTimeout() );
80
81         remoteRepositoryAdmin.deleteRemoteRepository( "foo", getFakeAuditInformation() );
82
83         assertEquals( initialSize, remoteRepositoryAdmin.getRemoteRepositories().size() );
84
85         repo = remoteRepositoryAdmin.getRemoteRepository( "foo" );
86         assertNull( repo );
87
88         assertEquals( 2, mockAuditListener.getAuditEvents().size() );
89
90         assertEquals( AuditEvent.ADD_REMOTE_REPO, mockAuditListener.getAuditEvents().get( 0 ).getAction() );
91         assertEquals( "root", mockAuditListener.getAuditEvents().get( 0 ).getUserId() );
92         assertEquals( "archiva-localhost", mockAuditListener.getAuditEvents().get( 0 ).getRemoteIP() );
93
94         assertEquals( AuditEvent.DELETE_REMOTE_REPO, mockAuditListener.getAuditEvents().get( 1 ).getAction() );
95         assertEquals( "root", mockAuditListener.getAuditEvents().get( 1 ).getUserId() );
96
97     }
98
99
100     @Test
101     public void addAndUpdateAndDelete()
102         throws Exception
103     {
104         mockAuditListener.clearEvents();
105         int initialSize = remoteRepositoryAdmin.getRemoteRepositories().size();
106
107         RemoteRepository remoteRepository = getRemoteRepository();
108
109         remoteRepositoryAdmin.addRemoteRepository( remoteRepository, getFakeAuditInformation() );
110
111         assertEquals( initialSize + 1, remoteRepositoryAdmin.getRemoteRepositories().size() );
112
113         RemoteRepository repo = remoteRepositoryAdmin.getRemoteRepository( "foo" );
114         assertNotNull( repo );
115         assertEquals( getRemoteRepository().getPassword(), repo.getPassword() );
116         assertEquals( getRemoteRepository().getUrl(), repo.getUrl() );
117         assertEquals( getRemoteRepository().getUserName(), repo.getUserName() );
118         assertEquals( getRemoteRepository().getName(), repo.getName() );
119         assertEquals( getRemoteRepository().getTimeout(), repo.getTimeout() );
120
121         repo.setUserName( "foo-name-changed" );
122         repo.setPassword( "titi" );
123         repo.setUrl( "http://foo.com/maven-really-rocks" );
124
125
126         remoteRepositoryAdmin.updateRemoteRepository( repo, getFakeAuditInformation() );
127
128
129         repo = remoteRepositoryAdmin.getRemoteRepository( "foo" );
130
131         assertEquals( "foo-name-changed", repo.getUserName() );
132         assertEquals( "titi", repo.getPassword() );
133         assertEquals( "http://foo.com/maven-really-rocks", repo.getUrl() );
134
135
136
137         remoteRepositoryAdmin.deleteRemoteRepository( "foo", getFakeAuditInformation() );
138
139         assertEquals( initialSize, remoteRepositoryAdmin.getRemoteRepositories().size() );
140
141         repo = remoteRepositoryAdmin.getRemoteRepository( "foo" );
142         assertNull( repo );
143
144         assertEquals( 3, mockAuditListener.getAuditEvents().size() );
145
146         assertEquals( AuditEvent.ADD_REMOTE_REPO, mockAuditListener.getAuditEvents().get( 0 ).getAction() );
147         assertEquals( "root", mockAuditListener.getAuditEvents().get( 0 ).getUserId() );
148         assertEquals( "archiva-localhost", mockAuditListener.getAuditEvents().get( 0 ).getRemoteIP() );
149
150         assertEquals( AuditEvent.MODIFY_REMOTE_REPO, mockAuditListener.getAuditEvents().get( 1 ).getAction() );
151         assertEquals( "root", mockAuditListener.getAuditEvents().get( 1 ).getUserId() );
152         assertEquals( "archiva-localhost", mockAuditListener.getAuditEvents().get(1 ).getRemoteIP() );
153
154         assertEquals( AuditEvent.DELETE_REMOTE_REPO, mockAuditListener.getAuditEvents().get( 2 ).getAction() );
155         assertEquals( "root", mockAuditListener.getAuditEvents().get( 2 ).getUserId() );
156
157     }
158
159
160     private RemoteRepository getRemoteRepository()
161     {
162         RemoteRepository remoteRepository = new RemoteRepository();
163         remoteRepository.setUrl( "http://foo.com/maven-it-rocks" );
164         remoteRepository.setTimeout( 10 );
165         remoteRepository.setName( "maven foo" );
166         remoteRepository.setUserName( "foo-name" );
167         remoteRepository.setPassword( "toto" );
168         remoteRepository.setId( "foo" );
169         return remoteRepository;
170     }
171 }