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