]> source.dussan.org Git - archiva.git/blob
76debd58e00212b7252d46de15be80dec8cdf0b7
[archiva.git] /
1 package org.apache.maven.archiva.layer;
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 import java.util.List;
28
29 /**
30  *
31  */
32 public abstract class AbstractRepositoryQueryLayerTestCase
33     extends PlexusTestCase
34 {
35     private ArtifactFactory artifactFactory;
36
37     protected ArtifactRepository repository;
38
39     protected RepositoryQueryLayer queryLayer;
40
41     protected void setUp()
42         throws Exception
43     {
44         super.setUp();
45         File repositoryDirectory = getTestFile( "src/test/repository" );
46
47         artifactFactory = (ArtifactFactory) lookup( ArtifactFactory.ROLE );
48         ArtifactRepositoryFactory factory = (ArtifactRepositoryFactory) lookup( ArtifactRepositoryFactory.ROLE );
49         ArtifactRepositoryLayout layout = (ArtifactRepositoryLayout) lookup( ArtifactRepositoryLayout.ROLE, "default" );
50
51         repository =
52             factory.createArtifactRepository( "test", repositoryDirectory.toURL().toString(), layout, null, null );
53     }
54
55     public void testContainsArtifactTrue()
56     {
57         Artifact artifact = getArtifact( "groupId", "artifactId", "1.0-alpha-1" );
58
59         assertTrue( "check artifact", queryLayer.containsArtifact( artifact ) );
60     }
61
62     public void testContainsArtifactFalse()
63     {
64         Artifact artifact = getArtifact( "groupId", "artifactId", "1.0-beta-1" );
65
66         assertFalse( "check non-existent artifact", queryLayer.containsArtifact( artifact ) );
67     }
68
69     public void testContainsSnapshotArtifactTrue()
70     {
71         Artifact artifact = getArtifact( "groupId", "snapshot-artifact", "1.0-alpha-1-20050611.202024-1" );
72         assertTrue( "check for snapshot artifact", queryLayer.containsArtifact( artifact ) );
73     }
74
75     public void testContainsSnapshotArtifactFalse()
76     {
77         Artifact artifact = getArtifact( "groupId", "snapshot-artifact", "1.0-alpha-1-20050611.202024-2" );
78         assertFalse( "check for non-existent snapshot artifact", queryLayer.containsArtifact( artifact ) );
79     }
80
81     public void testArtifactVersions()
82         throws Exception
83     {
84         Artifact artifact = getArtifact( "groupId", "artifactId", "ignored" );
85
86         List versions = queryLayer.getVersions( artifact );
87
88         assertTrue( "check version 1.0-alpha-1", versions.contains( "1.0-alpha-1" ) );
89         assertFalse( "check version 1.0-alpha-2", versions.contains( "1.0-alpha-2" ) );
90     }
91
92     public void testArtifactVersionsError()
93     {
94         Artifact artifact = getArtifact( "groupId", "none", "ignored" );
95
96         try
97         {
98             queryLayer.getVersions( artifact );
99             fail( "expected error not thrown" );
100         }
101         catch ( RepositoryQueryLayerException e )
102         {
103             //expected
104         }
105     }
106
107     private Artifact getArtifact( String groupId, String artifactId, String version )
108     {
109         Artifact projectArtifact = artifactFactory.createProjectArtifact( groupId, artifactId, version );
110         projectArtifact.isSnapshot();
111         return projectArtifact;
112     }
113 }