]> source.dussan.org Git - archiva.git/blob
b98ee5e02f93542a849971f6dde56a98e97bef7b
[archiva.git] /
1 package org.apache.archiva.webtest.memory;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *   http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.archiva.metadata.model.ArtifactMetadata;
23 import org.apache.archiva.metadata.model.MetadataFacet;
24 import org.apache.archiva.metadata.model.ProjectMetadata;
25 import org.apache.archiva.metadata.model.ProjectVersionMetadata;
26 import org.apache.archiva.metadata.model.ProjectVersionReference;
27 import org.apache.archiva.metadata.repository.MetadataRepository;
28 import org.apache.archiva.metadata.repository.MetadataRepositoryException;
29
30 import java.util.ArrayList;
31 import java.util.Collection;
32 import java.util.Collections;
33 import java.util.Date;
34 import java.util.List;
35
36 public class TestMetadataRepository
37     implements MetadataRepository
38 {
39     private static final String TEST_REPO = "test-repo";
40
41     private static final String TEST_NAMESPACE = "org.apache.archiva";
42
43     private List<ArtifactMetadata> artifacts = new ArrayList<ArtifactMetadata>();
44
45     private List<String> versions = new ArrayList<String>();
46
47     public TestMetadataRepository()
48     {
49         Date whenGathered = new Date( 123456789 );
50
51         addArtifact( "artifact-one", "1.0", whenGathered );
52         addArtifact( "artifact-one", "1.1", whenGathered );
53         addArtifact( "artifact-one", "2.0", whenGathered );
54         addArtifact( "artifact-two", "1.0.1", whenGathered );
55         addArtifact( "artifact-two", "1.0.2", whenGathered );
56         addArtifact( "artifact-two", "1.0.3-SNAPSHOT", whenGathered );
57         addArtifact( "artifact-three", "2.0-SNAPSHOT", whenGathered );
58         addArtifact( "artifact-four", "1.1-beta-2", whenGathered );
59     }
60
61     private void addArtifact( String projectId, String projectVersion, Date whenGathered )
62     {
63         ArtifactMetadata artifact = new ArtifactMetadata();
64         artifact.setFileLastModified( System.currentTimeMillis() );
65         artifact.setNamespace( TEST_NAMESPACE );
66         artifact.setProjectVersion( projectVersion );
67         artifact.setVersion( projectVersion );
68         artifact.setId( projectId + "-" + projectVersion + ".jar" );
69         artifact.setProject( projectId );
70         artifact.setRepositoryId( TEST_REPO );
71         artifact.setWhenGathered( whenGathered );
72         artifacts.add( artifact );
73
74         versions.add( projectVersion );
75     }
76
77     public ProjectMetadata getProject( String repoId, String namespace, String projectId )
78     {
79         throw new UnsupportedOperationException();
80     }
81
82     public ProjectVersionMetadata getProjectVersion( String repoId, String namespace, String projectId,
83                                                      String projectVersion )
84     {
85         throw new UnsupportedOperationException();
86     }
87
88     public Collection<String> getArtifactVersions( String repoId, String namespace, String projectId,
89                                                    String projectVersion )
90     {
91         throw new UnsupportedOperationException();
92     }
93
94     public Collection<ProjectVersionReference> getProjectReferences( String repoId, String namespace, String projectId,
95                                                                      String projectVersion )
96     {
97         throw new UnsupportedOperationException();
98     }
99
100     public Collection<String> getRootNamespaces( String repoId )
101     {
102         throw new UnsupportedOperationException();
103     }
104
105     public Collection<String> getNamespaces( String repoId, String namespace )
106     {
107         throw new UnsupportedOperationException();
108     }
109
110     public Collection<String> getProjects( String repoId, String namespace )
111     {
112         throw new UnsupportedOperationException();
113     }
114
115     public Collection<String> getProjectVersions( String repoId, String namespace, String projectId )
116     {
117         return versions;
118     }
119
120     public void updateProject( String repoId, ProjectMetadata project )
121     {
122         throw new UnsupportedOperationException();
123     }
124
125     public void updateArtifact( String repoId, String namespace, String projectId, String projectVersion,
126                                 ArtifactMetadata artifactMeta )
127     {
128         throw new UnsupportedOperationException();
129     }
130
131     public void updateProjectVersion( String repoId, String namespace, String projectId,
132                                       ProjectVersionMetadata versionMetadata )
133     {
134         throw new UnsupportedOperationException();
135     }
136
137     public void updateNamespace( String repoId, String namespace )
138     {
139         throw new UnsupportedOperationException();
140     }
141
142     public List<String> getMetadataFacets( String repodId, String facetId )
143     {
144         return Collections.emptyList();
145     }
146
147     public MetadataFacet getMetadataFacet( String repositoryId, String facetId, String name )
148     {
149         throw new UnsupportedOperationException();
150     }
151
152     public void addMetadataFacet( String repositoryId, MetadataFacet metadataFacet )
153     {
154         throw new UnsupportedOperationException();
155     }
156
157     public void removeMetadataFacets( String repositoryId, String facetId )
158     {
159         throw new UnsupportedOperationException();
160     }
161
162     public void removeMetadataFacet( String repoId, String facetId, String name )
163     {
164         //To change body of implemented methods use File | Settings | File Templates.
165     }
166
167     public List<ArtifactMetadata> getArtifactsByDateRange( String repoId, Date startTime, Date endTime )
168     {
169         return artifacts;
170     }
171
172     public Collection<String> getRepositories()
173     {
174         return Collections.singletonList( TEST_REPO );
175     }
176
177     public List<ArtifactMetadata> getArtifactsByChecksum( String repoId, String checksum )
178     {
179         return null;
180     }
181
182     public void removeArtifact( String repositoryId, String namespace, String project, String version, String id )
183     {
184         throw new UnsupportedOperationException();
185     }
186
187     public void removeArtifact( String repositoryId, String namespace, String project, String version,
188                                 MetadataFacet metadataFacet )
189         throws MetadataRepositoryException
190     {
191         throw new UnsupportedOperationException();
192     }
193
194     public void removeRepository( String repoId )
195     {
196         throw new UnsupportedOperationException();
197     }
198
199     public Collection<ArtifactMetadata> getArtifacts( String repoId, String namespace, String projectId,
200                                                       String projectVersion )
201     {
202         return artifacts;
203     }
204
205     public void save()
206     {
207     }
208
209     public void close()
210     {
211     }
212
213     public void revert()
214     {
215         throw new UnsupportedOperationException();
216     }
217
218     public boolean canObtainAccess( Class<?> aClass )
219     {
220         return false;
221     }
222
223     public Object obtainAccess( Class<?> aClass )
224     {
225         return null;
226     }
227
228     public List<ArtifactMetadata> getArtifacts( String repositoryId )
229     {
230         return artifacts;
231     }
232
233     public void removeArtifact( ArtifactMetadata artifactMetadata, String baseVersion )
234         throws MetadataRepositoryException
235     {
236         throw new UnsupportedOperationException();
237     }
238 }