]> source.dussan.org Git - archiva.git/blob
4f4e3bee94fbb3505bf1f00b213ff4fcbe087530
[archiva.git] /
1 package org.apache.archiva.repository.content.legacy;
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
23 import org.apache.archiva.configuration.ArchivaConfiguration;
24 import org.apache.archiva.configuration.LegacyArtifactPath;
25 import org.apache.archiva.model.ArtifactReference;
26 import org.apache.archiva.repository.layout.LayoutException;
27 import org.apache.archiva.test.utils.ArchivaSpringJUnit4ClassRunner;
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.junit.runner.RunWith;
31 import org.springframework.test.context.ContextConfiguration;
32
33 import javax.inject.Inject;
34 import javax.inject.Named;
35
36 import static org.junit.Assert.*;
37
38 /**
39  * LegacyPathParserTest
40  *
41  *
42  */
43 @RunWith ( ArchivaSpringJUnit4ClassRunner.class )
44 @ContextConfiguration ( locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" } )
45 public class LegacyPathParserTest
46 {
47     private LegacyPathParser parser;
48
49     @Inject
50     @Named( value = "archivaConfiguration#default" )
51     ArchivaConfiguration config;
52
53     /**
54      * Configure the ArchivaConfiguration
55      * {@inheritDoc}
56      */
57     @Before
58     public void setUp()
59         throws Exception
60     {
61         parser = new LegacyPathParser( config );
62         LegacyArtifactPath jaxen = new LegacyArtifactPath();
63         jaxen.setPath( "jaxen/jars/jaxen-1.0-FCS-full.jar" );
64         jaxen.setArtifact( "jaxen:jaxen:1.0-FCS:full:jar" );
65         config.getConfiguration().addLegacyArtifactPath( jaxen );
66         parser.configuration = config;
67     }
68
69     @Test
70     public void testBadPathArtifactIdMissingA()
71     {
72         assertBadPath( "groupId/jars/-1.0.jar", "artifactId is missing" );
73     }
74
75     @Test
76     public void testBadPathArtifactIdMissingB()
77     {
78         assertBadPath( "groupId/jars/1.0.jar", "artifactId is missing" );
79     }
80
81     @Test
82     public void testBadPathMissingType()
83     {
84         assertBadPath( "invalid/invalid/1/invalid-1", "missing type" );
85     }
86
87     @Test
88     public void testBadPathTooShort()
89     {
90         // NEW
91         assertBadPath( "invalid/invalid-1.0.jar", "path is too short" );
92     }
93
94     @Test
95     public void testBadPathWrongPackageExtension()
96     {
97         assertBadPath( "org.apache.maven.test/jars/artifactId-1.0.war", "wrong package extension" );
98     }
99
100     /**
101      * [MRM-481] Artifact requests with a .xml.zip extension fail with a 404 Error
102      */
103     @Test
104     public void testGoodButDualExtensions()
105         throws LayoutException
106     {
107         String groupId = "org.project";
108         String artifactId = "example-presentation";
109         String version = "3.2.xml";
110         String type = "distribution-zip";
111         String path = "org.project/zips/example-presentation-3.2.xml.zip";
112
113         assertLayout( path, groupId, artifactId, version, null, type );
114     }
115
116     /**
117      * [MRM-432] Oddball version spec.
118      * Example of an oddball / unusual version spec.
119      *
120      * @throws org.apache.archiva.repository.layout.LayoutException
121      */
122     @Test
123     public void testGoodButOddVersionSpecGanymedSsh2()
124         throws LayoutException
125     {
126         String groupId = "ch.ethz.ganymed";
127         String artifactId = "ganymed-ssh2";
128         String version = "build210";
129         String type = "jar";
130         String path = "ch.ethz.ganymed/jars/ganymed-ssh2-build210.jar";
131
132         assertLayout( path, groupId, artifactId, version, null, type );
133     }
134
135     /**
136      * [MRM-432] Oddball version spec.
137      * Example of an oddball / unusual version spec.
138      *
139      * @throws org.apache.archiva.repository.layout.LayoutException
140      */
141     @Test
142     public void testGoodButOddVersionSpecJavaxComm()
143         throws LayoutException
144     {
145         String groupId = "javax";
146         String artifactId = "comm";
147         String version = "3.0-u1";
148         String type = "jar";
149         String path = "javax/jars/comm-3.0-u1.jar";
150
151         assertLayout( path, groupId, artifactId, version, null, type );
152     }
153
154     /**
155      * [MRM-432] Oddball version spec.
156      * Example of an oddball / unusual version spec.
157      *
158      * @throws org.apache.archiva.repository.layout.LayoutException
159      */
160     @Test
161     public void testGoodButOddVersionSpecJavaxPersistence()
162         throws LayoutException
163     {
164         String groupId = "javax.persistence";
165         String artifactId = "ejb";
166         String version = "3.0-public_review";
167         String type = "jar";
168         String path = "javax.persistence/jars/ejb-3.0-public_review.jar";
169
170         /*
171          * The version id of "public_review" can cause problems. is it part of
172          * the version spec? or the classifier?
173          */
174
175         assertLayout( path, groupId, artifactId, version, null, type );
176     }
177
178     @Test
179     public void testGoodCommonsLang()
180         throws LayoutException
181     {
182         String groupId = "commons-lang";
183         String artifactId = "commons-lang";
184         String version = "2.1";
185         String type = "jar";
186         String path = "commons-lang/jars/commons-lang-2.1.jar";
187
188         assertLayout( path, groupId, artifactId, version, null, type );
189     }
190
191     @Test
192     public void testGoodDerby()
193         throws LayoutException
194     {
195         String groupId = "org.apache.derby";
196         String artifactId = "derby";
197         String version = "10.2.2.0";
198         String type = "jar";
199         String path = "org.apache.derby/jars/derby-10.2.2.0.jar";
200
201         assertLayout( path, groupId, artifactId, version, null, type );
202     }
203
204     /**
205      * Test the ejb-client type spec.
206      * Type specs are not a 1 to 1 map to the extension.
207      * This tests that effect.
208      * @throws org.apache.archiva.repository.layout.LayoutException
209      */
210     /* TODO: Re-enabled in the future.
211     public void testGoodFooEjbClient()
212         throws LayoutException
213     {
214         String groupId = "com.foo";
215         String artifactId = "foo-client";
216         String version = "1.0";
217         String type = "ejb"; // oddball type-spec (should result in jar extension)
218         String path = "com.foo/ejbs/foo-client-1.0.jar";
219
220         assertLayout( path, groupId, artifactId, version, classifier, type );
221     }
222     */
223
224     /**
225      * Test the classifier.
226      *
227      * @throws org.apache.archiva.repository.layout.LayoutException
228      */
229     @Test
230     public void testGoodFooLibJavadoc()
231         throws LayoutException
232     {
233         String groupId = "com.foo.lib";
234         String artifactId = "foo-lib";
235         String version = "2.1-alpha-1";
236         String type = "javadoc";
237         String classifier = "javadoc";
238         String path = "com.foo.lib/javadoc.jars/foo-lib-2.1-alpha-1-javadoc.jar";
239
240         assertLayout( path, groupId, artifactId, version, classifier, type );
241
242         assertLayout( "com.foo.lib/javadocs/foo-lib-2.1-alpha-1-javadoc.jar", "com.foo.lib", "foo-lib", "2.1-alpha-1",
243                       "javadoc", "javadoc" );
244     }
245
246     /**
247      * Test the classifier, and java-source type spec.
248      *
249      * @throws org.apache.archiva.repository.layout.LayoutException
250      */
251     @Test
252     public void testGoodFooLibSources()
253         throws LayoutException
254     {
255         String groupId = "com.foo.lib";
256         String artifactId = "foo-lib";
257         String version = "2.1-alpha-1";
258         String type = "java-source"; // oddball type-spec (should result in jar extension)
259         String classifier = "sources";
260         String path = "com.foo.lib/java-sources/foo-lib-2.1-alpha-1-sources.jar";
261
262         assertLayout( path, groupId, artifactId, version, classifier, type );
263     }
264
265     /**
266      * Test the classifier, and java-source type spec.
267      *
268      * @throws org.apache.archiva.repository.layout.LayoutException
269      */
270     @Test
271     public void testBadClassifierFooLibSources()
272         throws LayoutException
273     {
274         assertBadPath( "com.foo.lib/java-sources/foo-lib-2.1-alpha-1.jar", "missing required classifier" );
275         assertBadPath( "com.foo.lib/java-sources/foo-lib-2.1-alpha-1-javadoc.jar", "incorrect classifier" );
276         assertBadPath( "com.foo.lib/java-sources/foo-lib-2.1-alpha-1-other.jar", "incorrect classifier" );
277     }
278
279     /**
280      * Test the classifier, and java-source type spec.
281      *
282      * @throws org.apache.archiva.repository.layout.LayoutException
283      */
284     @Test
285     public void testGoodFooLibTestSources()
286         throws LayoutException
287     {
288         String groupId = "com.foo.lib";
289         String artifactId = "foo-lib";
290         String version = "2.1-alpha-1-test-sources";
291         String type = "jar";
292         String classifier = null; // we can't parse this type of classifier in legacy format
293         String path = "com.foo.lib/jars/foo-lib-2.1-alpha-1-test-sources.jar";
294
295         assertLayout( path, groupId, artifactId, version, classifier, type );
296     }
297
298     @Test
299     public void testGoodFooTool()
300         throws LayoutException
301     {
302         String groupId = "com.foo";
303         String artifactId = "foo-tool";
304         String version = "1.0";
305         String type = "jar";
306         String path = "com.foo/jars/foo-tool-1.0.jar";
307
308         assertLayout( path, groupId, artifactId, version, null, type );
309     }
310
311     @Test
312     public void testGoodGeronimoEjbSpec()
313         throws LayoutException
314     {
315         String groupId = "org.apache.geronimo.specs";
316         String artifactId = "geronimo-ejb_2.1_spec";
317         String version = "1.0.1";
318         String type = "jar";
319         String path = "org.apache.geronimo.specs/jars/geronimo-ejb_2.1_spec-1.0.1.jar";
320
321         assertLayout( path, groupId, artifactId, version, null, type );
322     }
323
324     @Test
325     public void testGoodLdapClientsPom()
326         throws LayoutException
327     {
328         String groupId = "directory-clients";
329         String artifactId = "ldap-clients";
330         String version = "0.9.1-SNAPSHOT";
331         String type = "pom";
332         String path = "directory-clients/poms/ldap-clients-0.9.1-SNAPSHOT.pom";
333
334         assertLayout( path, groupId, artifactId, version, null, type );
335     }
336
337     /**
338      * A timestamped versioned artifact, should reside in a SNAPSHOT baseversion directory.
339      *
340      * @throws org.apache.archiva.repository.layout.LayoutException
341      */
342     @Test
343     public void testGoodSnapshotMavenTest()
344         throws LayoutException
345     {
346         String groupId = "org.apache.archiva.test";
347         String artifactId = "redonkulous";
348         String version = "3.1-beta-1-20050831.101112-42";
349         String type = "jar";
350         String path = "org.apache.archiva.test/jars/redonkulous-3.1-beta-1-20050831.101112-42.jar";
351
352         assertLayout( path, groupId, artifactId, version, null, type );
353     }
354
355     /**
356      * [MRM-519] version identifiers within filename cause misidentification of version.
357      * Example uses "test" in artifact Id, which is also part of the versionKeyword list.
358      */
359     @Test
360     public void testGoodVersionKeywordInArtifactId()
361         throws LayoutException
362     {
363         String groupId = "maven";
364         String artifactId = "maven-test-plugin";
365         String version = "1.8.2";
366         String type = "pom";
367
368         String path = "maven/poms/maven-test-plugin-1.8.2.pom";
369
370         assertLayout( path, groupId, artifactId, version, null, type );
371     }
372
373     /**
374      * [MRM-562] Artifact type "maven-plugin" is not detected correctly in .toArtifactReference() methods.
375      * Example uses "test" in artifact Id, which is also part of the versionKeyword list.
376      */
377     @Test
378     public void testGoodDetectPluginMavenTest()
379         throws LayoutException
380     {
381         String groupId = "maven";
382         String artifactId = "maven-test-plugin";
383         String version = "1.8.2";
384         String type = "maven-one-plugin";
385         String path = "maven/plugins/maven-test-plugin-1.8.2.jar";
386
387         assertLayout( path, groupId, artifactId, version, null, type );
388     }
389
390     /**
391      * [MRM-562] Artifact type "maven-plugin" is not detected correctly in .toArtifactReference() methods.
392      */
393     @Test
394     public void testGoodDetectPluginAvalonMeta()
395         throws LayoutException
396     {
397         String groupId = "avalon-meta";
398         String artifactId = "avalon-meta-plugin";
399         String version = "1.1";
400         String type = "maven-one-plugin";
401         String path = "avalon-meta/plugins/avalon-meta-plugin-1.1.jar";
402
403         assertLayout( path, groupId, artifactId, version, null, type );
404     }
405
406     /**
407      * [MRM-562] Artifact type "maven-plugin" is not detected correctly in .toArtifactReference() methods.
408      */
409     @Test
410     public void testGoodDetectPluginCactusMaven()
411         throws LayoutException
412     {
413         String groupId = "cactus";
414         String artifactId = "cactus-maven";
415         String version = "1.7dev-20040815";
416         String type = "maven-one-plugin";
417         String path = "cactus/plugins/cactus-maven-1.7dev-20040815.jar";
418
419         assertLayout( path, groupId, artifactId, version, null, type );
420     }
421
422     /**
423      * [MRM-562] Artifact type "maven-plugin" is not detected correctly in .toArtifactReference() methods.
424      */
425     @Test
426     public void testGoodDetectPluginGeronimoPackaging()
427         throws LayoutException
428     {
429         String groupId = "geronimo";
430         String artifactId = "geronimo-packaging-plugin";
431         String version = "1.0.1";
432         String type = "maven-one-plugin";
433         String path = "geronimo/plugins/geronimo-packaging-plugin-1.0.1.jar";
434
435         assertLayout( path, groupId, artifactId, version, null, type );
436     }
437
438     /**
439      * [MRM-594] add some hook in LegacyPathParser to allow exceptions in artifact resolution
440      *
441      * @since 1.1
442      */
443     @Test
444     public void testCustomExceptionsInArtifactResolution()
445         throws LayoutException
446     {
447         String groupId = "jaxen";
448         String artifactId = "jaxen";
449         String version = "1.0-FCS";
450         String type = "jar";
451         String classifier = "full";
452         String path = "jaxen/jars/jaxen-1.0-FCS-full.jar";
453
454         assertLayout( path, groupId, artifactId, version, classifier, type );
455     }
456
457     /**
458      * Perform a path to artifact reference lookup, and verify the results.
459      */
460     private void assertLayout( String path, String groupId, String artifactId, String version, String classifier,
461                                String type )
462         throws LayoutException
463     {
464         // Path to Artifact Reference.
465         ArtifactReference testReference = parser.toArtifactReference( path );
466         assertArtifactReference( testReference, groupId, artifactId, version, classifier, type );
467     }
468
469     private void assertArtifactReference( ArtifactReference actualReference, String groupId, String artifactId,
470                                           String version, String classifier, String type )
471     {
472         String expectedId =
473             "ArtifactReference - " + groupId + ":" + artifactId + ":" + version + ":" + classifier + ":" + type;
474
475         assertNotNull( expectedId + " - Should not be null.", actualReference );
476
477         assertEquals( expectedId + " - Group ID", groupId, actualReference.getGroupId() );
478         assertEquals( expectedId + " - Artifact ID", artifactId, actualReference.getArtifactId() );
479         assertEquals( expectedId + " - Version ID", version, actualReference.getVersion() );
480         assertEquals( expectedId + " - classifier", classifier, actualReference.getClassifier() );
481         assertEquals( expectedId + " - Type", type, actualReference.getType() );
482     }
483
484     protected void assertBadPath( String path, String reason )
485     {
486         try
487         {
488             parser.toArtifactReference( path );
489             fail(
490                 "Should have thrown a LayoutException on the invalid path [" + path + "] because of [" + reason + "]" );
491         }
492         catch ( LayoutException e )
493         {
494             /* expected path */
495         }
496     }
497 }