]> source.dussan.org Git - archiva.git/blob
6657a29a0097794dbbd64e071d6c544c48f46f6e
[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.repository.metadata.Snapshot;
21
22 import java.util.ArrayList;
23 import java.util.Collections;
24 import java.util.Iterator;
25 import java.util.List;
26
27 /**
28  * 
29  */
30 public class MockRepositoryQueryLayer
31     implements RepositoryQueryLayer
32 {
33     private List queryConditions;
34
35     private Iterator iterator;
36
37     public MockRepositoryQueryLayer()
38     {
39         queryConditions = new ArrayList();
40     }
41
42     public boolean containsArtifact( Artifact artifact )
43     {
44         if ( iterator == null || !iterator.hasNext() ) // not initialized or reached end of the list. start again
45         {
46             iterator = queryConditions.iterator();
47         }
48         boolean b;
49         if ( queryConditions.isEmpty() )
50         {
51             b = false;
52         }
53         else
54         {
55             b = ( (Boolean) iterator.next() ).booleanValue();
56         }
57         return b;
58     }
59
60     public void addReturnValue( boolean queryCondition )
61     {
62         queryConditions.add( Boolean.valueOf( queryCondition ) );
63     }
64
65     public void clearList()
66     {
67         queryConditions.clear();
68     }
69
70     public boolean containsArtifact( Artifact artifact, Snapshot snapshot )
71     {
72         return containsArtifact( artifact );
73     }
74
75     public List getVersions( Artifact artifact )
76     {
77         return Collections.EMPTY_LIST;
78     }
79 }