]> source.dussan.org Git - archiva.git/blob
ce6af3240cf72988f468c2e01e282b6a6f2dc730
[archiva.git] /
1 package org.apache.maven.archiva.repository.content;
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.archiva.model.ArtifactReference;
23 import org.apache.maven.archiva.repository.AbstractRepositoryLayerTestCase;
24 import org.apache.maven.archiva.repository.layout.LayoutException;
25
26 /**
27  * AbstractLegacyRepositoryContentTestCase 
28  *
29  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
30  * @version $Id$
31  */
32 public abstract class AbstractLegacyRepositoryContentTestCase
33     extends AbstractRepositoryLayerTestCase
34 {
35     public void testBadPathArtifactIdMissingA()
36     {
37         assertBadPath( "groupId/jars/-1.0.jar", "artifactId is missing" );
38     }
39
40     public void testBadPathArtifactIdMissingB()
41     {
42         assertBadPath( "groupId/jars/1.0.jar", "artifactId is missing" );
43     }
44
45     public void testBadPathMissingType()
46     {
47         assertBadPath( "invalid/invalid/1/invalid-1", "missing type" );
48     }
49
50     public void testBadPathTooShort()
51     {
52         // NEW
53         assertBadPath( "invalid/invalid-1.0.jar", "path is too short" );
54     }
55
56     public void testBadPathWrongPackageExtension()
57     {
58         assertBadPath( "org.apache.maven.test/jars/artifactId-1.0.war", "wrong package extension" );
59     }
60
61     /** 
62      * [MRM-432] Oddball version spec.
63      * Example of an oddball / unusual version spec.
64      * @throws LayoutException 
65      */
66     public void testGoodButOddVersionSpecGanymedSsh2()
67         throws LayoutException
68     {
69         String groupId = "ch.ethz.ganymed";
70         String artifactId = "ganymed-ssh2";
71         String version = "build210";
72         String type = "jar";
73         String path = "ch.ethz.ganymed/jars/ganymed-ssh2-build210.jar";
74
75         assertLayout( path, groupId, artifactId, version, null, type );
76     }
77
78     /**
79      * [MRM-432] Oddball version spec.
80      * Example of an oddball / unusual version spec.
81      * @throws LayoutException
82      */
83     public void testGoodButOddVersionSpecJavaxComm()
84         throws LayoutException
85     {
86         String groupId = "javax";
87         String artifactId = "comm";
88         String version = "3.0-u1";
89         String type = "jar";
90         String path = "javax/jars/comm-3.0-u1.jar";
91
92         assertLayout( path, groupId, artifactId, version, null, type );
93     }
94
95     /**
96      * [MRM-432] Oddball version spec.
97      * Example of an oddball / unusual version spec.
98      * @throws LayoutException
99      */
100     public void testGoodButOddVersionSpecJavaxPersistence()
101         throws LayoutException
102     {
103         String groupId = "javax.persistence";
104         String artifactId = "ejb";
105         String version = "3.0-public_review";
106         String type = "jar";
107         String path = "javax.persistence/jars/ejb-3.0-public_review.jar";
108
109         /*
110          * The version id of "public_review" can cause problems. is it part of
111          * the version spec? or the classifier?
112          */
113
114         assertLayout( path, groupId, artifactId, version, null, type );
115     }
116
117     public void testGoodCommonsLang()
118         throws LayoutException
119     {
120         String groupId = "commons-lang";
121         String artifactId = "commons-lang";
122         String version = "2.1";
123         String type = "jar";
124         String path = "commons-lang/jars/commons-lang-2.1.jar";
125
126         assertLayout( path, groupId, artifactId, version, null, type );
127     }
128
129     public void testGoodDerby()
130         throws LayoutException
131     {
132         String groupId = "org.apache.derby";
133         String artifactId = "derby";
134         String version = "10.2.2.0";
135         String type = "jar";
136         String path = "org.apache.derby/jars/derby-10.2.2.0.jar";
137
138         assertLayout( path, groupId, artifactId, version, null, type );
139     }
140
141     /**
142      * Test the ejb-client type spec.
143      * Type specs are not a 1 to 1 map to the extension.
144      * This tests that effect.
145      * @throws LayoutException
146      */
147     /* TODO: Re-enabled in the future.
148     public void testGoodFooEjbClient()
149         throws LayoutException
150     {
151         String groupId = "com.foo";
152         String artifactId = "foo-client";
153         String version = "1.0";
154         String type = "ejb"; // oddball type-spec (should result in jar extension)
155         String path = "com.foo/ejbs/foo-client-1.0.jar";
156
157         assertLayout( path, groupId, artifactId, version, classifier, type );
158     }
159     */
160
161     /**
162      * Test the classifier.
163      * @throws LayoutException
164      */
165     public void testGoodFooLibJavadoc()
166         throws LayoutException
167     {
168         String groupId = "com.foo.lib";
169         String artifactId = "foo-lib";
170         String version = "2.1-alpha-1";
171         String type = "javadoc";
172         String classifier = "javadoc";
173         String path = "com.foo.lib/javadoc.jars/foo-lib-2.1-alpha-1-javadoc.jar";
174
175         assertLayout( path, groupId, artifactId, version, classifier, type );
176     }
177
178     /**
179      * Test the classifier, and java-source type spec.
180      * @throws LayoutException
181      */
182     public void testGoodFooLibSources()
183         throws LayoutException
184     {
185         String groupId = "com.foo.lib";
186         String artifactId = "foo-lib";
187         String version = "2.1-alpha-1";
188         String type = "java-source"; // oddball type-spec (should result in jar extension)
189         String classifier = "sources";
190         String path = "com.foo.lib/java-sources/foo-lib-2.1-alpha-1-sources.jar";
191
192         assertLayout( path, groupId, artifactId, version, classifier, type );
193     }
194
195     public void testGoodFooTool()
196         throws LayoutException
197     {
198         String groupId = "com.foo";
199         String artifactId = "foo-tool";
200         String version = "1.0";
201         String type = "jar";
202         String path = "com.foo/jars/foo-tool-1.0.jar";
203
204         assertLayout( path, groupId, artifactId, version, null, type );
205     }
206
207     public void testGoodGeronimoEjbSpec()
208         throws LayoutException
209     {
210         String groupId = "org.apache.geronimo.specs";
211         String artifactId = "geronimo-ejb_2.1_spec";
212         String version = "1.0.1";
213         String type = "jar";
214         String path = "org.apache.geronimo.specs/jars/geronimo-ejb_2.1_spec-1.0.1.jar";
215
216         assertLayout( path, groupId, artifactId, version, null, type );
217     }
218
219     public void testGoodLdapClientsPom()
220         throws LayoutException
221     {
222         String groupId = "directory-clients";
223         String artifactId = "ldap-clients";
224         String version = "0.9.1-SNAPSHOT";
225         String type = "pom";
226         String path = "directory-clients/poms/ldap-clients-0.9.1-SNAPSHOT.pom";
227
228         assertLayout( path, groupId, artifactId, version, null, type );
229     }
230
231     /**
232      * A timestamped versioned artifact, should reside in a SNAPSHOT baseversion directory.
233      * @throws LayoutException
234      */
235     public void testGoodSnapshotMavenTest()
236         throws LayoutException
237     {
238         String groupId = "org.apache.archiva.test";
239         String artifactId = "redonkulous";
240         String version = "3.1-beta-1-20050831.101112-42";
241         String type = "jar";
242         String path = "org.apache.archiva.test/jars/redonkulous-3.1-beta-1-20050831.101112-42.jar";
243
244         assertLayout( path, groupId, artifactId, version, null, type );
245     }
246
247     /**
248      * [MRM-519] version identifiers within filename cause misidentification of version.
249      * Example uses "test" in artifact Id, which is also part of the versionKeyword list.
250      */
251     public void testGoodVersionKeywordInArtifactId()
252         throws LayoutException
253     {
254         String groupId = "maven";
255         String artifactId = "maven-test-plugin";
256         String version = "1.8.2";
257         String type = "pom";
258
259         String path = "maven/poms/maven-test-plugin-1.8.2.pom";
260
261         assertLayout( path, groupId, artifactId, version, null, type );
262     }
263
264     /**
265      * [MRM-562] Artifact type "maven-plugin" is not detected correctly in .toArtifactReference() methods.
266      * Example uses "test" in artifact Id, which is also part of the versionKeyword list.
267      */
268     public void testGoodDetectPluginMavenTest()
269         throws LayoutException
270     {
271         String groupId = "maven";
272         String artifactId = "maven-test-plugin";
273         String version = "1.8.2";
274         String type = "maven-plugin";
275         String path = "maven/plugins/maven-test-plugin-1.8.2.jar";
276
277         assertLayout( path, groupId, artifactId, version, null, type );
278     }
279
280     /**
281      * [MRM-562] Artifact type "maven-plugin" is not detected correctly in .toArtifactReference() methods.
282      */
283     public void testGoodDetectPluginAvalonMeta()
284         throws LayoutException
285     {
286         String groupId = "avalon-meta";
287         String artifactId = "avalon-meta-plugin";
288         String version = "1.1";
289         String type = "maven-plugin";
290         String path = "avalon-meta/plugins/avalon-meta-plugin-1.1.jar";
291
292         assertLayout( path, groupId, artifactId, version, null, type );
293     }
294
295     /**
296      * [MRM-562] Artifact type "maven-plugin" is not detected correctly in .toArtifactReference() methods.
297      */
298     public void testGoodDetectPluginCactusMaven()
299         throws LayoutException
300     {
301         String groupId = "cactus";
302         String artifactId = "cactus-maven";
303         String version = "1.7dev-20040815";
304         String type = "maven-plugin";
305         String path = "cactus/plugins/cactus-maven-1.7dev-20040815.jar";
306
307         assertLayout( path, groupId, artifactId, version, null, type );
308     }
309
310     /**
311      * [MRM-562] Artifact type "maven-plugin" is not detected correctly in .toArtifactReference() methods.
312      */
313     public void testGoodDetectPluginGeronimoPackaging()
314         throws LayoutException
315     {
316         String groupId = "geronimo";
317         String artifactId = "geronimo-packaging-plugin";
318         String version = "1.0.1";
319         String type = "maven-plugin";
320         String path = "geronimo/plugins/geronimo-packaging-plugin-1.0.1.jar";
321
322         assertLayout( path, groupId, artifactId, version, null, type );
323     }
324
325     /**
326      * Perform a roundtrip through the layout routines to determine success.
327      * @param classifier TODO
328      */
329     private void assertLayout( String path, String groupId, String artifactId, String version, String classifier, String type )
330         throws LayoutException
331     {
332         ArtifactReference expectedArtifact = createArtifact( groupId, artifactId, version, classifier, type );
333
334         // --- Artifact Tests.
335         // Artifact to Path
336         assertEquals( "Artifact <" + expectedArtifact + "> to path:", path, toPath( expectedArtifact ) );
337
338         // --- Artifact Reference Tests
339
340         // Path to Artifact Reference.
341         ArtifactReference testReference = toArtifactReference( path );
342         assertArtifactReference( testReference, groupId, artifactId, version, classifier, type );
343
344         // And back again, using test Reference from previous step.
345         assertEquals( "Artifact <" + expectedArtifact + "> to path:", path, toPath( testReference ) );
346     }
347
348     private void assertArtifactReference( ArtifactReference actualReference, String groupId, String artifactId,
349                                           String version, String classifier, String type )
350     {
351         String expectedId = "ArtifactReference - " + groupId + ":" + artifactId + ":" + version + ":" + type;
352
353         assertNotNull( expectedId + " - Should not be null.", actualReference );
354
355         assertEquals( expectedId + " - Group ID", groupId, actualReference.getGroupId() );
356         assertEquals( expectedId + " - Artifact ID", artifactId, actualReference.getArtifactId() );
357         assertEquals( expectedId + " - Version ID", version, actualReference.getVersion() );
358         assertEquals( expectedId + " - classifier", classifier, actualReference.getClassifier() );
359         assertEquals( expectedId + " - Type", type, actualReference.getType() );
360     }
361
362     protected ArtifactReference createArtifact( String groupId, String artifactId, String version, String classifier, String type )
363     {
364         ArtifactReference artifact = new ArtifactReference();
365         artifact.setGroupId( groupId );
366         artifact.setArtifactId( artifactId );
367         artifact.setVersion( version );
368         artifact.setClassifier( classifier );
369         artifact.setType( type );
370         assertNotNull( artifact );
371         return artifact;
372     }
373
374     private void assertBadPath( String path, String reason )
375     {
376         try
377         {
378             toArtifactReference( path );
379             fail( "Should have thrown a LayoutException on the invalid path [" + path + "] because of [" + reason + "]" );
380         }
381         catch ( LayoutException e )
382         {
383             /* expected path */
384         }
385     }
386
387
388     protected abstract ArtifactReference toArtifactReference( String path )
389         throws LayoutException;
390
391     protected abstract String toPath( ArtifactReference reference );
392
393 }