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