1 package org.apache.maven.archiva.reporting;
4 * Copyright 2005-2006 The Apache Software Foundation.
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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 import org.apache.maven.artifact.Artifact;
20 import org.apache.maven.artifact.repository.ArtifactRepository;
21 import org.apache.maven.model.Model;
23 import java.util.ArrayList;
24 import java.util.Iterator;
25 import java.util.List;
30 public class MockArtifactReportProcessor
31 implements ArtifactReportProcessor
33 private List reportConditions;
35 private Iterator iterator;
37 public MockArtifactReportProcessor()
39 reportConditions = new ArrayList();
42 public void processArtifact( Model model, Artifact artifact, ArtifactReporter reporter,
43 ArtifactRepository repository )
45 if ( iterator == null || !iterator.hasNext() ) // not initialized or reached end of the list. start again
47 iterator = reportConditions.iterator();
49 if ( !reportConditions.isEmpty() )
51 while ( iterator.hasNext() )
53 ReportCondition reportCondition = (ReportCondition) iterator.next();
54 int i = reportCondition.getResult();
55 if ( i == ReportCondition.SUCCESS )
57 reporter.addSuccess( reportCondition.getArtifact() );
59 else if ( i == ReportCondition.WARNING )
61 reporter.addWarning( reportCondition.getArtifact(), reportCondition.getReason() );
63 else if ( i == ReportCondition.FAILURE )
65 reporter.addFailure( reportCondition.getArtifact(), reportCondition.getReason() );
71 public void addReturnValue( int result, Artifact artifact, String reason )
73 reportConditions.add( new ReportCondition( result, artifact, reason ) );
76 public void clearList()
78 reportConditions.clear();