]> source.dussan.org Git - archiva.git/blob
e7185610f645539f504fdaa9e50237b19b38e2a9
[archiva.git] /
1 package org.apache.maven.archiva.discoverer;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *   http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.maven.artifact.repository.ArtifactRepository;
23 import org.apache.maven.artifact.repository.ArtifactRepositoryFactory;
24 import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;
25 import org.codehaus.plexus.PlexusTestCase;
26
27 import java.io.File;
28
29 /**
30  * @author Edwin Punzalan
31  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
32  */
33 public abstract class AbstractDiscovererTestCase
34     extends PlexusTestCase
35 {
36     protected Discoverer discoverer;
37
38     protected void setUp()
39         throws Exception
40     {
41         super.setUp();
42
43         discoverer = (Discoverer) lookup( Discoverer.ROLE );
44     }
45
46     protected void tearDown()
47         throws Exception
48     {
49         release( discoverer );
50         super.tearDown();
51     }
52
53     protected ArtifactRepository getLegacyRepository()
54         throws Exception
55     {
56         File repoBaseDir = new File( getBasedir(), "src/test/legacy-repository" );
57         ArtifactRepository repository = createRepository( repoBaseDir, "legacy" );
58         resetRepositoryState( repository );
59         return repository;
60     }
61
62     protected ArtifactRepository getDefaultRepository()
63         throws Exception
64     {
65         File repoBaseDir = new File( getBasedir(), "src/test/repository" );
66         ArtifactRepository repository = createRepository( repoBaseDir, "default" );
67         resetRepositoryState( repository );
68         return repository;
69     }
70
71     protected void resetRepositoryState( ArtifactRepository repository )
72     {
73         // Implement any kind of repository cleanup.
74     }
75
76     protected ArtifactRepository createRepository( File basedir, String layout )
77         throws Exception
78     {
79         ArtifactRepositoryFactory factory = (ArtifactRepositoryFactory) lookup( ArtifactRepositoryFactory.ROLE );
80
81         ArtifactRepositoryLayout repoLayout = (ArtifactRepositoryLayout) lookup( ArtifactRepositoryLayout.ROLE, layout );
82
83         return factory.createArtifactRepository( "discoveryRepo-" + getName(), "file://" + basedir, repoLayout, null,
84                                                  null );
85     }
86 }