]> source.dussan.org Git - archiva.git/blob
3351bc301ce3fb3560d4a3769be9206b5adb0e0f
[archiva.git] /
1 package org.apache.maven.archiva.reporting;
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
21 /**
22  * This class tests the InvalidPomArtifactReportProcessor class.
23  */
24 public class InvalidPomArtifactReportProcessorTest
25     extends AbstractRepositoryReportsTestCase
26 {
27     private ArtifactReportProcessor artifactReportProcessor;
28
29     private ReportingDatabase reporter = new ReportingDatabase();
30
31     public void setUp()
32         throws Exception
33     {
34         super.setUp();
35         artifactReportProcessor = (ArtifactReportProcessor) lookup( ArtifactReportProcessor.ROLE, "invalid-pom" );
36     }
37
38     /**
39      * Test the InvalidPomArtifactReportProcessor when the artifact is an invalid pom.
40      */
41     public void testInvalidPomArtifactReportProcessorFailure()
42     {
43         Artifact artifact = createArtifact( "org.apache.maven", "artifactId", "1.0-alpha-3", "pom" );
44
45         artifactReportProcessor.processArtifact( artifact, null, reporter );
46         assertEquals( 1, reporter.getNumFailures() );
47     }
48
49
50     /**
51      * Test the InvalidPomArtifactReportProcessor when the artifact is a valid pom.
52      */
53     public void testInvalidPomArtifactReportProcessorSuccess()
54     {
55         Artifact artifact = createArtifact( "groupId", "artifactId", "1.0-alpha-2", "pom" );
56
57         artifactReportProcessor.processArtifact( artifact, null, reporter );
58         assertEquals( 0, reporter.getNumFailures() );
59         assertEquals( 0, reporter.getNumWarnings() );
60     }
61
62
63     /**
64      * Test the InvalidPomArtifactReportProcessor when the artifact is not a pom.
65      */
66     public void testNotAPomArtifactReportProcessorSuccess()
67     {
68         Artifact artifact = createArtifact( "groupId", "artifactId", "1.0-alpha-1", "jar" );
69
70         artifactReportProcessor.processArtifact( artifact, null, reporter );
71         assertEquals( 0, reporter.getNumFailures() );
72         assertEquals( 1, reporter.getNumWarnings() );
73     }
74 }