]> source.dussan.org Git - archiva.git/blob
78a7a6cbe3313d792314f0bfdce21bd8e331e401
[archiva.git] /
1 package org.apache.maven.archiva.discoverer;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import org.apache.maven.artifact.Artifact;
20 import org.apache.maven.artifact.factory.ArtifactFactory;
21 import org.apache.maven.artifact.repository.ArtifactRepository;
22 import org.apache.maven.artifact.repository.ArtifactRepositoryFactory;
23 import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;
24 import org.codehaus.plexus.PlexusTestCase;
25
26 import java.io.File;
27
28 /**
29  * @author Edwin Punzalan
30  */
31 public abstract class AbstractArtifactDiscovererTest
32     extends PlexusTestCase
33 {
34     protected ArtifactDiscoverer discoverer;
35
36     private ArtifactFactory factory;
37
38     protected ArtifactRepository repository;
39
40     protected abstract String getLayout();
41
42     protected abstract File getRepositoryFile();
43
44     protected void setUp()
45         throws Exception
46     {
47         super.setUp();
48
49         discoverer = (ArtifactDiscoverer) lookup( ArtifactDiscoverer.ROLE, getLayout() );
50
51         factory = (ArtifactFactory) lookup( ArtifactFactory.ROLE );
52
53         repository = getRepository();
54     }
55
56     protected ArtifactRepository getRepository()
57         throws Exception
58     {
59         File basedir = getRepositoryFile();
60
61         ArtifactRepositoryFactory factory = (ArtifactRepositoryFactory) lookup( ArtifactRepositoryFactory.ROLE );
62
63         ArtifactRepositoryLayout layout =
64             (ArtifactRepositoryLayout) lookup( ArtifactRepositoryLayout.ROLE, getLayout() );
65
66         return factory.createArtifactRepository( "discoveryRepo", "file://" + basedir, layout, null, null );
67     }
68
69     protected Artifact createArtifact( String groupId, String artifactId, String version )
70     {
71         Artifact artifact = factory.createArtifact( groupId, artifactId, version, null, "jar" );
72         artifact.setFile( new File( repository.getBasedir(), repository.pathOf( artifact ) ) );
73         artifact.setRepository( repository );
74         return artifact;
75     }
76
77     protected Artifact createArtifact( String groupId, String artifactId, String version, String type )
78     {
79         return factory.createArtifact( groupId, artifactId, version, null, type );
80     }
81
82     protected Artifact createArtifact( String groupId, String artifactId, String version, String type,
83                                        String classifier )
84     {
85         return factory.createArtifactWithClassifier( groupId, artifactId, version, type, classifier );
86     }
87 }