]> source.dussan.org Git - archiva.git/blob
0533faa371388b8962189a60ec5de1f1c387b516
[archiva.git] /
1 package org.apache.archiva.admin.repository;
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 junit.framework.TestCase;
22 import org.apache.archiva.admin.AuditInformation;
23 import org.apache.archiva.admin.mock.MockAuditListener;
24 import org.apache.archiva.admin.repository.managed.ManagedRepository;
25 import org.apache.archiva.admin.repository.managed.ManagedRepositoryAdmin;
26 import org.apache.archiva.admin.repository.proxyconnector.ProxyConnectorAdmin;
27 import org.apache.archiva.admin.repository.remote.RemoteRepository;
28 import org.apache.archiva.admin.repository.remote.RemoteRepositoryAdmin;
29 import org.apache.commons.io.FileUtils;
30 import org.apache.commons.lang.StringUtils;
31 import org.codehaus.plexus.redback.role.RoleManager;
32 import org.codehaus.plexus.redback.users.User;
33 import org.codehaus.plexus.redback.users.memory.SimpleUser;
34 import org.junit.runner.RunWith;
35 import org.slf4j.Logger;
36 import org.slf4j.LoggerFactory;
37 import org.springframework.test.context.ContextConfiguration;
38 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
39
40 import javax.inject.Inject;
41 import java.io.File;
42 import java.util.List;
43
44 /**
45  * @author Olivier Lamy
46  */
47 @RunWith( SpringJUnit4ClassRunner.class )
48 @ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" } )
49 public abstract class AbstractRepositoryAdminTest
50     extends TestCase
51 {
52     protected Logger log = LoggerFactory.getLogger( getClass() );
53
54     public static final String APPSERVER_BASE_PATH = System.getProperty( "appserver.base" );
55
56     @Inject
57     protected MockAuditListener mockAuditListener;
58
59     @Inject
60     protected RoleManager roleManager;
61
62     @Inject
63     protected RemoteRepositoryAdmin remoteRepositoryAdmin;
64
65     @Inject
66     protected ManagedRepositoryAdmin managedRepositoryAdmin;
67
68     @Inject
69     protected ProxyConnectorAdmin proxyConnectorAdmin;
70
71     protected AuditInformation getFakeAuditInformation()
72     {
73         AuditInformation auditInformation = new AuditInformation( getFakeUser(), "archiva-localhost" );
74         return auditInformation;
75     }
76
77     protected User getFakeUser()
78     {
79         SimpleUser user = new SimpleUser()
80         {
81             @Override
82             public Object getPrincipal()
83             {
84                 return "root";
85             }
86
87         };
88
89         user.setUsername( "root" );
90         user.setFullName( "The top user" );
91         return user;
92     }
93
94     protected ManagedRepository getTestManagedRepository( String repoId, String repoLocation )
95     {
96         return new ManagedRepository( repoId, "test repo", repoLocation, "default", false, true, true, "0 0 * * * ?",
97                                       repoLocation + "/.index", false, 1, 2, true );
98     }
99
100     protected File clearRepoLocation( String path )
101         throws Exception
102     {
103         File repoDir = new File( path );
104         if ( repoDir.exists() )
105         {
106             FileUtils.deleteDirectory( repoDir );
107         }
108         assertFalse( repoDir.exists() );
109         return repoDir;
110     }
111
112     protected ManagedRepository findManagedRepoById( List<ManagedRepository> repos, String id )
113     {
114         for ( ManagedRepository repo : repos )
115         {
116             if ( StringUtils.equals( id, repo.getId() ) )
117             {
118                 return repo;
119             }
120         }
121         return null;
122     }
123
124     protected RemoteRepository getRemoteRepository()
125     {
126         return getRemoteRepository( "foo" );
127     }
128
129     protected RemoteRepository getRemoteRepository(String id)
130     {
131         RemoteRepository remoteRepository = new RemoteRepository();
132         remoteRepository.setUrl( "http://foo.com/maven-it-rocks" );
133         remoteRepository.setTimeout( 10 );
134         remoteRepository.setName( "maven foo" );
135         remoteRepository.setUserName( "foo-name" );
136         remoteRepository.setPassword( "toto" );
137         remoteRepository.setId( id );
138         return remoteRepository;
139     }
140 }