]> source.dussan.org Git - archiva.git/blob
0774095d5b890c3a348a28423e4b6a3c98c083d2
[archiva.git] /
1 package org.apache.maven.archiva.reporting;
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.apache.maven.artifact.repository.metadata.Snapshot;
25 import org.codehaus.plexus.PlexusTestCase;
26
27 import java.io.File;
28 import java.util.List;
29
30 /**
31  *
32  */
33 public abstract class AbstractRepositoryQueryLayerTestCase
34     extends PlexusTestCase
35 {
36     private ArtifactFactory artifactFactory;
37
38     protected ArtifactRepository repository;
39
40     protected CachedRepositoryQueryLayer queryLayer;
41
42     protected void setUp()
43         throws Exception
44     {
45         super.setUp();
46         File repositoryDirectory = getTestFile( "src/test/repository" );
47
48         artifactFactory = (ArtifactFactory) lookup( ArtifactFactory.ROLE );
49         ArtifactRepositoryFactory factory = (ArtifactRepositoryFactory) lookup( ArtifactRepositoryFactory.ROLE );
50         ArtifactRepositoryLayout layout = (ArtifactRepositoryLayout) lookup( ArtifactRepositoryLayout.ROLE, "default" );
51
52         repository =
53             factory.createArtifactRepository( "test", repositoryDirectory.toURL().toString(), layout, null, null );
54     }
55
56     public void testContainsArtifactTrue()
57     {
58         Artifact artifact = getArtifact( "groupId", "artifactId", "1.0-alpha-1" );
59
60         assertTrue( "check artifact", queryLayer.containsArtifact( artifact ) );
61     }
62
63     public void testContainsArtifactFalse()
64     {
65         Artifact artifact = getArtifact( "groupId", "artifactId", "1.0-beta-1" );
66
67         assertFalse( "check non-existent artifact", queryLayer.containsArtifact( artifact ) );
68     }
69
70     public void testContainsSnapshotArtifactTrue()
71     {
72         Snapshot snapshot = new Snapshot();
73         snapshot.setTimestamp( "20050611.202024" );
74         snapshot.setBuildNumber( 1 );
75
76         Artifact artifact = getArtifact( "groupId", "snapshot-artifact", "1.0-alpha-1-SNAPSHOT" );
77         assertTrue( "check for snapshot artifact", queryLayer.containsArtifact( artifact, snapshot ) );
78     }
79
80     public void testContainsSnapshotArtifactFalse()
81     {
82         Snapshot snapshot = new Snapshot();
83         snapshot.setTimestamp( "20050611.202024" );
84         snapshot.setBuildNumber( 2 );
85
86         Artifact artifact = getArtifact( "groupId", "snapshot-artifact", "1.0-alpha-1-SNAPSHOT" );
87         assertFalse( "check for non-existent snapshot artifact", queryLayer.containsArtifact( artifact, snapshot ) );
88     }
89
90     public void testArtifactVersionsTrue()
91         throws Exception
92     {
93         Artifact artifact = getArtifact( "groupId", "artifactId", "ignored" );
94
95         List versions = queryLayer.getVersions( artifact );
96
97         assertTrue( "check version 1.0-alpha-1", versions.contains( "1.0-alpha-1" ) );
98         assertTrue( "check version 1.0-alpha-2", versions.contains( "1.0-alpha-2" ) );
99         assertFalse( "check version 1.0-alpha-3", versions.contains( "1.0-alpha-3" ) );
100     }
101
102     public void testArtifactVersionsFalse()
103         throws Exception
104     {
105         Artifact artifact = getArtifact( "groupId", "artifactId", "ignored" );
106
107         List versions = queryLayer.getVersions( artifact );
108
109         assertTrue( "check version 1.0-alpha-1", versions.contains( "1.0-alpha-1" ) );
110         assertTrue( "check version 1.0-alpha-2", versions.contains( "1.0-alpha-2" ) );
111         assertFalse( "check version 1.0-alpha-3", versions.contains( "1.0-alpha-3" ) );
112     }
113
114     public void testArtifactVersionsError()
115     {
116         Artifact artifact = getArtifact( "groupId", "none", "ignored" );
117
118         try
119         {
120             queryLayer.getVersions( artifact );
121             fail( "expected error not thrown" );
122         }
123         catch ( RepositoryQueryLayerException e )
124         {
125             //expected
126         }
127     }
128
129     private Artifact getArtifact( String groupId, String artifactId, String version )
130     {
131         return artifactFactory.createBuildArtifact( groupId, artifactId, version, "pom" );
132     }
133
134     protected void tearDown()
135         throws Exception
136     {
137         release( artifactFactory );
138         super.tearDown();
139         artifactFactory = null;
140         repository = null;
141     }
142 }