]> source.dussan.org Git - archiva.git/blob
1ab8c807a976e9a22fc011d22baa986c7d295840
[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.commons.lang.StringUtils;
23 import org.apache.maven.archiva.model.ArtifactReference;
24 import org.apache.maven.archiva.repository.AbstractRepositoryLayerTestCase;
25 import org.apache.maven.archiva.repository.ManagedRepositoryContent;
26 import org.apache.maven.archiva.repository.layout.LayoutException;
27
28 import java.io.File;
29
30 /**
31  * RepositoryRequestTest
32  *
33  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
34  * @version $Id$
35  */
36 public class RepositoryRequestTest
37     extends AbstractRepositoryLayerTestCase
38 {
39     public void testInvalidRequestNoArtifactId()
40     {
41         assertInvalidRequest( "groupId/jars/-1.0.jar" );
42     }
43
44     public void testInvalidLegacyRequestBadLocation()
45     {
46         assertInvalidRequest( "org.apache.maven.test/jars/artifactId-1.0.war" );
47     }
48
49     public void testInvalidRequestTooShort()
50     {
51         assertInvalidRequest( "org.apache.maven.test/artifactId-2.0.jar" );
52     }
53
54     public void testInvalidDefaultRequestBadLocation()
55     {
56         assertInvalidRequest( "invalid/invalid/1.0-20050611.123456-1/invalid-1.0-20050611.123456-1.jar" );
57     }
58
59     public void testValidLegacyGanymed()
60         throws Exception
61     {
62         assertValid( "ch.ethz.ganymed/jars/ganymed-ssh2-build210.jar", "ch.ethz.ganymed", "ganymed-ssh2", "build210",
63                      null, "jar" );
64     }
65
66     public void testValidDefaultGanymed()
67         throws Exception
68     {
69         assertValid( "ch/ethz/ganymed/ganymed-ssh2/build210/ganymed-ssh2-build210.jar", "ch.ethz.ganymed",
70                      "ganymed-ssh2", "build210", null, "jar" );
71     }
72
73     public void testValidLegacyJavaxComm()
74         throws Exception
75     {
76         assertValid( "javax/jars/comm-3.0-u1.jar", "javax", "comm", "3.0-u1", null, "jar" );
77     }
78
79     public void testValidDefaultJavaxComm()
80         throws Exception
81     {
82         assertValid( "javax/comm/3.0-u1/comm-3.0-u1.jar", "javax", "comm", "3.0-u1", null, "jar" );
83     }
84
85     public void testValidLegacyJavaxPersistence()
86         throws Exception
87     {
88         assertValid( "javax.persistence/jars/ejb-3.0-public_review.jar", "javax.persistence", "ejb",
89                      "3.0-public_review", null, "jar" );
90     }
91
92     public void testValidDefaultJavaxPersistence()
93         throws Exception
94     {
95         assertValid( "javax/persistence/ejb/3.0-public_review/ejb-3.0-public_review.jar", "javax.persistence", "ejb",
96                      "3.0-public_review", null, "jar" );
97     }
98
99     public void testValidLegacyMavenTestPlugin()
100         throws Exception
101     {
102         assertValid( "maven/jars/maven-test-plugin-1.8.2.jar", "maven", "maven-test-plugin", "1.8.2", null, "jar" );
103     }
104
105     public void testValidDefaultMavenTestPlugin()
106         throws Exception
107     {
108         assertValid( "maven/maven-test-plugin/1.8.2/maven-test-plugin-1.8.2.pom", "maven", "maven-test-plugin",
109                      "1.8.2", null, "pom" );
110     }
111
112     public void testValidLegacyCommonsLangJavadoc()
113         throws Exception
114     {
115         assertValid( "commons-lang/javadoc.jars/commons-lang-2.1-javadoc.jar", "commons-lang", "commons-lang", "2.1",
116                      "javadoc", "javadoc" );
117     }
118
119     public void testValidDefaultCommonsLangJavadoc()
120         throws Exception
121     {
122         assertValid( "commons-lang/commons-lang/2.1/commons-lang-2.1-javadoc.jar", "commons-lang", "commons-lang",
123                      "2.1", "javadoc", "javadoc" );
124     }
125
126     public void testValidLegacyDerbyPom()
127         throws Exception
128     {
129         assertValid( "org.apache.derby/poms/derby-10.2.2.0.pom", "org.apache.derby", "derby", "10.2.2.0", null, "pom" );
130         // Starting slash should not prevent detection.
131         assertValid( "/org.apache.derby/poms/derby-10.2.2.0.pom", "org.apache.derby", "derby", "10.2.2.0", null, "pom" );
132     }
133
134     public void testValidDefaultDerbyPom()
135         throws Exception
136     {
137         assertValid( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0.pom", "org.apache.derby", "derby", "10.2.2.0",
138                      null, "pom" );
139     }
140
141     public void testValidLegacyGeronimoEjbSpec()
142         throws Exception
143     {
144         assertValid( "org.apache.geronimo.specs/jars/geronimo-ejb_2.1_spec-1.0.1.jar", "org.apache.geronimo.specs",
145                      "geronimo-ejb_2.1_spec", "1.0.1", null, "jar" );
146     }
147
148     public void testValidDefaultGeronimoEjbSpec()
149         throws Exception
150     {
151         assertValid( "org/apache/geronimo/specs/geronimo-ejb_2.1_spec/1.0.1/geronimo-ejb_2.1_spec-1.0.1.jar",
152                      "org.apache.geronimo.specs", "geronimo-ejb_2.1_spec", "1.0.1", null, "jar" );
153     }
154
155     public void testValidLegacyLdapSnapshot()
156         throws Exception
157     {
158         assertValid( "directory-clients/poms/ldap-clients-0.9.1-SNAPSHOT.pom", "directory-clients", "ldap-clients",
159                      "0.9.1-SNAPSHOT", null, "pom" );
160     }
161
162     public void testValidDefaultLdapSnapshot()
163         throws Exception
164     {
165         assertValid( "directory-clients/ldap-clients/0.9.1-SNAPSHOT/ldap-clients-0.9.1-SNAPSHOT.pom",
166                      "directory-clients", "ldap-clients", "0.9.1-SNAPSHOT", null, "pom" );
167     }
168
169     public void testValidLegacyTestArchSnapshot()
170         throws Exception
171     {
172         assertValid( "test.maven-arch/poms/test-arch-2.0.3-SNAPSHOT.pom", "test.maven-arch", "test-arch",
173                      "2.0.3-SNAPSHOT", null, "pom" );
174     }
175
176     public void testValidDefaultTestArchSnapshot()
177         throws Exception
178     {
179         assertValid( "test/maven-arch/test-arch/2.0.3-SNAPSHOT/test-arch-2.0.3-SNAPSHOT.pom", "test.maven-arch",
180                      "test-arch", "2.0.3-SNAPSHOT", null, "pom" );
181     }
182
183     public void testValidLegacyOddDottedArtifactId()
184         throws Exception
185     {
186         assertValid( "com.company.department/poms/com.company.department.project-0.2.pom", "com.company.department",
187                      "com.company.department.project", "0.2", null, "pom" );
188     }
189
190     public void testValidDefaultOddDottedArtifactId()
191         throws Exception
192     {
193         assertValid( "com/company/department/com.company.department.project/0.2/com.company.department.project-0.2.pom",
194                      "com.company.department", "com.company.department.project", "0.2", null, "pom" );
195     }
196
197     public void testValidLegacyTimestampedSnapshot()
198         throws Exception
199     {
200         assertValid( "org.apache.archiva.test/jars/redonkulous-3.1-beta-1-20050831.101112-42.jar",
201                      "org.apache.archiva.test", "redonkulous", "3.1-beta-1-20050831.101112-42", null, "jar" );
202     }
203
204     public void testValidDefaultTimestampedSnapshot()
205         throws Exception
206     {
207         assertValid(
208                      "org/apache/archiva/test/redonkulous/3.1-beta-1-SNAPSHOT/redonkulous-3.1-beta-1-20050831.101112-42.jar",
209                      "org.apache.archiva.test", "redonkulous", "3.1-beta-1-20050831.101112-42", null, "jar" );
210     }
211
212     public void testIsSupportFile()
213     {
214         assertTrue( repoRequest.isSupportFile( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0-bin.tar.gz.sha1" ) );
215         assertTrue( repoRequest.isSupportFile( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0-bin.tar.gz.md5" ) );
216         assertTrue( repoRequest.isSupportFile( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0-bin.tar.gz.asc" ) );
217         assertTrue( repoRequest.isSupportFile( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0-bin.tar.gz.pgp" ) );
218         assertTrue( repoRequest.isSupportFile( "org/apache/derby/derby/10.2.2.0/maven-metadata.xml.sha1" ) );
219         assertTrue( repoRequest.isSupportFile( "org/apache/derby/derby/10.2.2.0/maven-metadata.xml.md5" ) );
220
221         assertFalse( repoRequest.isSupportFile( "test.maven-arch/poms/test-arch-2.0.3-SNAPSHOT.pom" ) );
222         assertFalse( repoRequest.isSupportFile( "test/maven-arch/test-arch/2.0.3-SNAPSHOT/test-arch-2.0.3-SNAPSHOT.jar" ) );
223         assertFalse( repoRequest.isSupportFile( "org/apache/archiva/archiva-api/1.0/archiva-api-1.0.xml.zip" ) );
224         assertFalse( repoRequest.isSupportFile( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0-bin.tar.gz" ) );
225         assertFalse( repoRequest.isSupportFile( "org/apache/derby/derby/10.2.2.0/maven-metadata.xml" ) );
226         assertFalse( repoRequest.isSupportFile( "org/apache/derby/derby/maven-metadata.xml" ) );
227     }
228
229     public void testIsMetadata()
230     {
231         assertTrue( repoRequest.isMetadata( "org/apache/derby/derby/10.2.2.0/maven-metadata.xml" ));
232         assertTrue( repoRequest.isMetadata( "org/apache/derby/derby/maven-metadata.xml" ));
233
234         assertFalse( repoRequest.isMetadata( "test.maven-arch/poms/test-arch-2.0.3-SNAPSHOT.pom" ) );
235         assertFalse( repoRequest.isMetadata( "test/maven-arch/test-arch/2.0.3-SNAPSHOT/test-arch-2.0.3-SNAPSHOT.jar" ) );
236         assertFalse( repoRequest.isMetadata( "org/apache/archiva/archiva-api/1.0/archiva-api-1.0.xml.zip" ) );
237         assertFalse( repoRequest.isMetadata( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0-bin.tar.gz" ) );
238         assertFalse( repoRequest.isMetadata( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0-bin.tar.gz.pgp" ) );
239         assertFalse( repoRequest.isMetadata( "org/apache/derby/derby/10.2.2.0/maven-metadata.xml.sha1" ) );
240     }
241
242     public void testIsDefault()
243     {
244         assertFalse( repoRequest.isDefault( "test.maven-arch/poms/test-arch-2.0.3-SNAPSHOT.pom" ) );
245         assertFalse( repoRequest.isDefault( "directory-clients/poms/ldap-clients-0.9.1-SNAPSHOT.pom" ) );
246         assertFalse( repoRequest.isDefault( "commons-lang/jars/commons-lang-2.1-javadoc.jar" ) );
247
248         assertTrue( repoRequest.isDefault( "test/maven-arch/test-arch/2.0.3-SNAPSHOT/test-arch-2.0.3-SNAPSHOT.jar" ) );
249         assertTrue( repoRequest.isDefault( "org/apache/archiva/archiva-api/1.0/archiva-api-1.0.xml.zip" ) );
250         assertTrue( repoRequest.isDefault( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0-bin.tar.gz" ) );
251         assertTrue( repoRequest.isDefault( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0-bin.tar.gz.pgp" ) );
252         assertTrue( repoRequest.isDefault( "org/apache/derby/derby/10.2.2.0/maven-metadata.xml.sha1" ) );
253
254         assertFalse( repoRequest.isDefault( null ) );
255         assertFalse( repoRequest.isDefault( "" ) );
256         assertFalse( repoRequest.isDefault( "foo" ) );
257         assertFalse( repoRequest.isDefault( "some.short/path" ) );
258     }
259
260     public void testIsLegacy()
261     {
262         assertTrue( repoRequest.isLegacy( "test.maven-arch/poms/test-arch-2.0.3-SNAPSHOT.pom" ) );
263         assertTrue( repoRequest.isLegacy( "directory-clients/poms/ldap-clients-0.9.1-SNAPSHOT.pom" ) );
264         assertTrue( repoRequest.isLegacy( "commons-lang/jars/commons-lang-2.1-javadoc.jar" ) );
265
266         assertFalse( repoRequest.isLegacy( "test/maven-arch/test-arch/2.0.3-SNAPSHOT/test-arch-2.0.3-SNAPSHOT.jar" ) );
267         assertFalse( repoRequest.isLegacy( "org/apache/archiva/archiva-api/1.0/archiva-api-1.0.xml.zip" ) );
268         assertFalse( repoRequest.isLegacy( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0-bin.tar.gz" ) );
269         assertFalse( repoRequest.isLegacy( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0-bin.tar.gz.pgp" ) );
270         assertFalse( repoRequest.isLegacy( "org/apache/derby/derby/10.2.2.0/maven-metadata.xml.sha1" ) );
271
272         assertFalse( repoRequest.isLegacy( null ) );
273         assertFalse( repoRequest.isLegacy( "" ) );
274         assertFalse( repoRequest.isLegacy( "some.short/path" ) );
275     }
276
277     private ManagedRepositoryContent createManagedRepo( String layout )
278         throws Exception
279     {
280         File repoRoot = getTestFile( "target/test-repo" );
281         return createManagedRepositoryContent( "test-internal", "Internal Test Repo", repoRoot, layout );
282     }
283
284     /**
285      * [MRM-481] Artifact requests with a .xml.zip extension fail with a 404 Error
286      */
287     public void testToNativePathArtifactDefaultToDefaultDualExtension()
288         throws Exception
289     {
290         ManagedRepositoryContent repository = createManagedRepo( "default" );
291
292         // Test (artifact) default to default - dual extension
293         assertEquals( "org/project/example-presentation/3.2/example-presentation-3.2.xml.zip", repoRequest
294             .toNativePath( "org/project/example-presentation/3.2/example-presentation-3.2.xml.zip", repository ) );
295     }
296
297     /**
298      * [MRM-481] Artifact requests with a .xml.zip extension fail with a 404 Error
299      */
300     public void testToNativePathArtifactLegacyToDefaultDualExtension()
301         throws Exception
302     {
303         ManagedRepositoryContent repository = createManagedRepo( "default" );
304
305         // Test (artifact) legacy to default - dual extension
306         // NOTE: The detection of a dual extension is flawed.
307         assertEquals( "org/project/example-presentation/3.2.xml/example-presentation-3.2.xml.zip", repoRequest
308             .toNativePath( "org.project/zips/example-presentation-3.2.xml.zip", repository ) );
309     }
310
311     public void testToNativePathMetadataDefaultToDefault()
312         throws Exception
313     {
314         ManagedRepositoryContent repository = createManagedRepo( "default" );
315
316         // Test (metadata) default to default
317         assertEquals( "org/apache/derby/derby/10.2.2.0/maven-metadata.xml.sha1", repoRequest
318             .toNativePath( "org/apache/derby/derby/10.2.2.0/maven-metadata.xml.sha1", repository ) );
319     }
320
321     public void testNativePathPomLegacyToDefault()
322         throws Exception
323     {
324         ManagedRepositoryContent repository = createManagedRepo( "default" );
325
326         // Test (pom) legacy to default
327         assertEquals( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0.pom",
328                       repoRequest.toNativePath( "org.apache.derby/poms/derby-10.2.2.0.pom", repository ) );
329     }
330
331     public void testNativePathPomLegacyToLegacy()
332         throws Exception
333     {
334         ManagedRepositoryContent repository = createManagedRepo( "legacy" );
335
336         // Test (pom) legacy to default
337         assertEquals( "org.apache.derby/poms/derby-10.2.2.0.pom",
338                       repoRequest.toNativePath( "org.apache.derby/poms/derby-10.2.2.0.pom", repository ) );
339     }
340
341     public void testNativePathPomLegacyToDefaultEjb()
342         throws Exception
343     {
344         ManagedRepositoryContent repository = createManagedRepo( "default" );
345
346         // Test (pom) legacy to default
347         assertEquals( "mygroup/myejb/1.0/myejb-1.0.jar",
348                       repoRequest.toNativePath( "mygroup/ejbs/myejb-1.0.jar", repository ) );
349     }
350
351     public void testNativePathPomLegacyToLegacyEjb()
352         throws Exception
353     {
354         ManagedRepositoryContent repository = createManagedRepo( "legacy" );
355
356         // Test (pom) legacy to default
357         assertEquals( "mygroup/ejbs/myejb-1.0.jar",
358                       repoRequest.toNativePath( "mygroup/ejbs/myejb-1.0.jar", repository ) );
359     }
360
361     public void testNativePathSupportFileLegacyToDefault()
362         throws Exception
363     {
364         ManagedRepositoryContent repository = createManagedRepo( "default" );
365
366         // Test (supportfile) legacy to default
367         assertEquals( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0.jar.sha1", repoRequest
368             .toNativePath( "org.apache.derby/jars/derby-10.2.2.0.jar.sha1", repository ) );
369     }
370
371     public void testNativePathBadRequestTooShort()
372         throws Exception
373     {
374         ManagedRepositoryContent repository = createManagedRepo( "default" );
375
376         // Test bad request path (too short)
377         try
378         {
379             repoRequest.toNativePath( "org.apache.derby/license.txt", repository );
380             fail( "Should have thrown an exception about a too short path." );
381         }
382         catch ( LayoutException e )
383         {
384             // expected path.
385         }
386     }
387
388     public void testNativePathBadRequestBlank()
389         throws Exception
390     {
391         ManagedRepositoryContent repository = createManagedRepo( "default" );
392
393         // Test bad request path (too short)
394         try
395         {
396             repoRequest.toNativePath( "", repository );
397             fail( "Should have thrown an exception about an blank request." );
398         }
399         catch ( LayoutException e )
400         {
401             // expected path.
402         }
403     }
404
405     public void testNativePathBadRequestNull()
406         throws Exception
407     {
408         ManagedRepositoryContent repository = createManagedRepo( "default" );
409
410         // Test bad request path (too short)
411         try
412         {
413             repoRequest.toNativePath( null, repository );
414             fail( "Should have thrown an exception about an null request." );
415         }
416         catch ( LayoutException e )
417         {
418             // expected path.
419         }
420     }
421
422     public void testNativePathBadRequestUnknownType()
423         throws Exception
424     {
425         ManagedRepositoryContent repository = createManagedRepo( "default" );
426
427         // Test bad request path (too short)
428         try
429         {
430             repoRequest.toNativePath( "org/apache/derby/derby/10.2.2.0/license.txt", repository );
431             fail( "Should have thrown an exception about an invalid type." );
432         }
433         catch ( LayoutException e )
434         {
435             // expected path.
436         }
437     }
438
439     public void testToNativePathLegacyMetadataDefaultToLegacy()
440         throws Exception
441     {
442         ManagedRepositoryContent repository = createManagedRepo( "legacy" );
443
444         // Test (metadata) default to legacy
445
446         // Special Case: This direction is not supported, should throw a LayoutException.
447         try
448         {
449             repoRequest.toNativePath( "org/apache/derby/derby/10.2.2.0/maven-metadata.xml", repository );
450             fail("Should have thrown a LayoutException, can't translate a maven-metadata.xml to a legacy layout.");
451         }
452         catch(LayoutException e)
453         {
454             // expected path.
455         }
456     }
457
458     public void testNativePathPomDefaultToLegacy()
459         throws Exception
460     {
461         ManagedRepositoryContent repository = createManagedRepo( "legacy" );
462
463         // Test (pom) default to legacy
464         assertEquals( "org.apache.derby/poms/derby-10.2.2.0.pom", repoRequest
465             .toNativePath( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0.pom", repository ) );
466     }
467
468     public void testNativePathSupportFileDefaultToLegacy()
469         throws Exception
470     {
471         ManagedRepositoryContent repository = createManagedRepo( "legacy" );
472
473         // Test (supportfile) default to legacy
474         assertEquals( "org.apache.derby/jars/derby-10.2.2.0.jar.sha1", repoRequest
475             .toNativePath( "org/apache/derby/derby/10.2.2.0/derby-10.2.2.0.jar.sha1", repository ) );
476     }
477
478     private void assertValid( String path, String groupId, String artifactId, String version, String classifier,
479                               String type )
480         throws Exception
481     {
482         String expectedId = "ArtifactReference - " + groupId + ":" + artifactId + ":" + version + ":"
483             + ( classifier != null ? classifier + ":" : "" ) + type;
484
485         ArtifactReference reference = repoRequest.toArtifactReference( path );
486
487         assertNotNull( expectedId + " - Should not be null.", reference );
488
489         assertEquals( expectedId + " - Group ID", groupId, reference.getGroupId() );
490         assertEquals( expectedId + " - Artifact ID", artifactId, reference.getArtifactId() );
491         if ( StringUtils.isNotBlank( classifier ) )
492         {
493             assertEquals( expectedId + " - Classifier", classifier, reference.getClassifier() );
494         }
495         assertEquals( expectedId + " - Version ID", version, reference.getVersion() );
496         assertEquals( expectedId + " - Type", type, reference.getType() );
497     }
498
499     private void assertInvalidRequest( String path )
500     {
501         try
502         {
503             repoRequest.toArtifactReference( path );
504             fail( "Expected a LayoutException on an invalid path [" + path + "]" );
505         }
506         catch ( LayoutException e )
507         {
508             /* expected path */
509         }
510     }
511
512     private RepositoryRequest repoRequest;
513
514     @Override
515     protected void setUp()
516         throws Exception
517     {
518         super.setUp();
519
520         repoRequest = (RepositoryRequest) lookup( RepositoryRequest.class );
521     }
522 }