]> source.dussan.org Git - archiva.git/blob
40fc565b3bbb91765b2134ec8a6c668239f10fe8
[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 import org.apache.maven.artifact.DefaultArtifact;
21 import org.apache.maven.artifact.handler.ArtifactHandler;
22 import org.apache.maven.artifact.handler.DefaultArtifactHandler;
23 import org.apache.maven.artifact.versioning.VersionRange;
24
25 /**
26  * This class tests the InvalidPomArtifactReportProcessor class.
27  */
28 public class InvalidPomArtifactReportProcessorTest
29     extends AbstractRepositoryReportsTestCase
30 {
31     private ArtifactReportProcessor artifactReportProcessor;
32
33     private ArtifactReporter reporter = new MockArtifactReporter();
34
35     public void setUp()
36         throws Exception
37     {
38         super.setUp();
39         artifactReportProcessor = (ArtifactReportProcessor) lookup( ArtifactReportProcessor.ROLE, "invalid-pom" );
40     }
41
42     /**
43      * Test the InvalidPomArtifactReportProcessor when the artifact is an invalid pom.
44      */
45     public void testInvalidPomArtifactReportProcessorFailure()
46         throws ReportProcessorException
47     {
48         ArtifactHandler handler = new DefaultArtifactHandler( "pom" );
49         VersionRange version = VersionRange.createFromVersion( "1.0-alpha-3" );
50         Artifact artifact =
51             new DefaultArtifact( "org.apache.maven", "artifactId", version, "compile", "pom", "", handler );
52
53         artifactReportProcessor.processArtifact( null, artifact, reporter, repository );
54         assertEquals( 1, reporter.getFailures() );
55     }
56
57
58     /**
59      * Test the InvalidPomArtifactReportProcessor when the artifact is a valid pom.
60      */
61     public void testInvalidPomArtifactReportProcessorSuccess()
62         throws ReportProcessorException
63     {
64         ArtifactHandler handler = new DefaultArtifactHandler( "pom" );
65         VersionRange version = VersionRange.createFromVersion( "1.0-alpha-2" );
66         Artifact artifact = new DefaultArtifact( "groupId", "artifactId", version, "compile", "pom", "", handler );
67
68         artifactReportProcessor.processArtifact( null, artifact, reporter, repository );
69         assertEquals( 1, reporter.getSuccesses() );
70     }
71
72
73     /**
74      * Test the InvalidPomArtifactReportProcessor when the artifact is not a pom.
75      */
76     public void testNotAPomArtifactReportProcessorSuccess()
77         throws ReportProcessorException
78     {
79         ArtifactHandler handler = new DefaultArtifactHandler( "jar" );
80         VersionRange version = VersionRange.createFromVersion( "1.0-alpha-1" );
81         Artifact artifact = new DefaultArtifact( "groupId", "artifactId", version, "compile", "jar", "", handler );
82
83         artifactReportProcessor.processArtifact( null, artifact, reporter, repository );
84         assertEquals( 1, reporter.getWarnings() );
85     }
86 }