]> source.dussan.org Git - archiva.git/blob
0372e88097f2b8d17bb1b040f8dcbf76cac87bf3
[archiva.git] /
1 package org.apache.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.archiva.metadata.model.ArtifactMetadata;
23 import org.apache.archiva.metadata.repository.storage.RepositoryPathTranslator;
24 import org.apache.archiva.metadata.repository.storage.maven2.ArtifactMappingProvider;
25 import org.apache.archiva.metadata.repository.storage.maven2.Maven2RepositoryPathTranslator;
26 import org.apache.archiva.metadata.repository.storage.maven2.MavenArtifactFacet;
27 import org.apache.archiva.repository.AbstractRepositoryLayerTestCase;
28 import org.junit.Test;
29
30 import java.util.Collections;
31
32 import static org.junit.Assert.*;
33
34 /**
35  * ArtifactExtensionMappingTest
36  *
37  * @version $Id$
38  */
39 public class ArtifactExtensionMappingTest
40     extends AbstractRepositoryLayerTestCase
41 {
42     private RepositoryPathTranslator pathTranslator = new Maven2RepositoryPathTranslator(
43         Collections.<ArtifactMappingProvider>emptyList() );
44
45     @Test
46     public void testIsMavenPlugin()
47     {
48         assertMavenPlugin( "maven-test-plugin" );
49         assertMavenPlugin( "maven-clean-plugin" );
50         assertMavenPlugin( "cobertura-maven-plugin" );
51         assertMavenPlugin( "maven-project-info-reports-plugin" );
52         assertMavenPlugin( "silly-name-for-a-maven-plugin" );
53
54         assertNotMavenPlugin( "maven-plugin-api" );
55         assertNotMavenPlugin( "foo-lib" );
56         assertNotMavenPlugin( "another-maven-plugin-api" );
57         assertNotMavenPlugin( "secret-maven-plugin-2" );
58     }
59
60     private void assertMavenPlugin( String artifactId )
61     {
62         assertEquals( "Should be detected as maven plugin: <" + artifactId + ">", "maven-plugin", getTypeFromArtifactId(
63             artifactId ) );
64     }
65
66     private String getTypeFromArtifactId( String artifactId )
67     {
68         ArtifactMetadata artifact = pathTranslator.getArtifactFromId( null, "groupId", artifactId, "1.0",
69                                                                       artifactId + "-1.0.jar" );
70         MavenArtifactFacet facet = (MavenArtifactFacet) artifact.getFacet( MavenArtifactFacet.FACET_ID );
71         return facet.getType();
72     }
73
74     private void assertNotMavenPlugin( String artifactId )
75     {
76         assertFalse( "Should NOT be detected as maven plugin: <" + artifactId + ">", "maven-plugin".equals(
77             getTypeFromArtifactId( artifactId ) ) );
78     }
79 }