]> source.dussan.org Git - archiva.git/blob
69f155717e3aedb2ecb1ed995f72e7f91709cda0
[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.archiva.indexer.RepositoryArtifactIndex;
20 import org.apache.maven.archiva.indexer.RepositoryArtifactIndexFactory;
21 import org.apache.maven.archiva.indexer.record.RepositoryIndexRecordFactory;
22 import org.apache.maven.artifact.Artifact;
23 import org.apache.maven.artifact.factory.ArtifactFactory;
24 import org.apache.maven.model.Model;
25 import org.codehaus.plexus.util.FileUtils;
26
27 import java.io.File;
28 import java.util.Collections;
29
30 /**
31  * @author Edwin Punzalan
32  */
33 public class DuplicateArtifactFileReportProcessorTest
34     extends AbstractRepositoryReportsTestCase
35 {
36     private Artifact artifact;
37
38     private Model model;
39
40     private ArtifactReportProcessor processor;
41
42     private ArtifactFactory artifactFactory;
43
44     File indexDirectory;
45
46     private ReportingDatabase reportDatabase;
47
48     protected void setUp()
49         throws Exception
50     {
51         super.setUp();
52
53         indexDirectory = getTestFile( "target/indexDirectory" );
54         FileUtils.deleteDirectory( indexDirectory );
55
56         artifactFactory = (ArtifactFactory) lookup( ArtifactFactory.ROLE );
57         artifact = createArtifact( "groupId", "artifactId", "1.0-alpha-1", "1.0-alpha-1", "jar" );
58         model = new Model();
59
60         RepositoryArtifactIndexFactory factory =
61             (RepositoryArtifactIndexFactory) lookup( RepositoryArtifactIndexFactory.ROLE, "lucene" );
62
63         RepositoryArtifactIndex index = factory.createStandardIndex( indexDirectory );
64
65         RepositoryIndexRecordFactory recordFactory =
66             (RepositoryIndexRecordFactory) lookup( RepositoryIndexRecordFactory.ROLE, "standard" );
67
68         index.indexRecords( Collections.singletonList( recordFactory.createRecord( artifact ) ) );
69
70         processor = (ArtifactReportProcessor) lookup( ArtifactReportProcessor.ROLE, "duplicate" );
71
72         ReportGroup reportGroup = (ReportGroup) lookup( ReportGroup.ROLE, "health" );
73         reportDatabase = new ReportingDatabase( reportGroup );
74     }
75
76     public void testNullArtifactFile()
77         throws Exception
78     {
79         artifact.setFile( null );
80
81         processor.processArtifact( artifact, model, reportDatabase );
82
83         assertEquals( "Check warnings", 1, reportDatabase.getNumWarnings() );
84         assertEquals( "Check no failures", 0, reportDatabase.getNumFailures() );
85     }
86
87     public void testSuccessOnAlreadyIndexedArtifact()
88         throws Exception
89     {
90         processor.processArtifact( artifact, model, reportDatabase );
91
92         assertEquals( "Check warnings", 0, reportDatabase.getNumWarnings() );
93         assertEquals( "Check no failures", 0, reportDatabase.getNumFailures() );
94     }
95
96     public void testSuccessOnDifferentGroupId()
97         throws Exception
98     {
99         artifact.setGroupId( "different.groupId" );
100         processor.processArtifact( artifact, model, reportDatabase );
101
102         assertEquals( "Check warnings", 0, reportDatabase.getNumWarnings() );
103         assertEquals( "Check no failures", 0, reportDatabase.getNumFailures() );
104     }
105
106     public void testSuccessOnNewArtifact()
107         throws Exception
108     {
109         Artifact newArtifact = createArtifact( "groupId", "artifactId", "1.0-alpha-1", "1.0-alpha-1", "pom" );
110
111         processor.processArtifact( newArtifact, model, reportDatabase );
112
113         assertEquals( "Check warnings", 0, reportDatabase.getNumWarnings() );
114         assertEquals( "Check no failures", 0, reportDatabase.getNumFailures() );
115     }
116
117     public void testFailure()
118         throws Exception
119     {
120         Artifact duplicate = createArtifact( artifact.getGroupId(), "snapshot-artifact", "1.0-alpha-1-SNAPSHOT",
121                                              artifact.getVersion(), artifact.getType() );
122         duplicate.setFile( artifact.getFile() );
123
124         processor.processArtifact( duplicate, model, reportDatabase );
125
126         assertEquals( "Check warnings", 0, reportDatabase.getNumWarnings() );
127         assertEquals( "Check no failures", 1, reportDatabase.getNumFailures() );
128     }
129
130     private Artifact createArtifact( String groupId, String artifactId, String baseVersion, String version,
131                                      String type )
132     {
133         Artifact artifact = artifactFactory.createArtifact( groupId, artifactId, version, null, type );
134         artifact.setBaseVersion( baseVersion );
135         artifact.setRepository( repository );
136         artifact.setFile( new File( repository.getBasedir(), repository.pathOf( artifact ) ) );
137         return artifact;
138     }
139 }