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