]> source.dussan.org Git - archiva.git/blob
f12ad2a83ded0c61ffcc1cd3176606f3c73fc22b
[archiva.git] /
1 package org.apache.archiva.metadata.repository.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 java.util.ArrayList;
23 import java.util.Collection;
24 import java.util.Collections;
25 import java.util.Date;
26 import java.util.List;
27
28 import org.apache.archiva.metadata.model.ArtifactMetadata;
29 import org.apache.archiva.metadata.model.MetadataFacet;
30 import org.apache.archiva.metadata.model.ProjectMetadata;
31 import org.apache.archiva.metadata.model.ProjectVersionMetadata;
32 import org.apache.archiva.metadata.model.ProjectVersionReference;
33 import org.apache.archiva.metadata.repository.MetadataRepository;
34 import org.apache.archiva.metadata.repository.MetadataResolverException;
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.setVersion( projectVersion );
67         artifact.setId( projectId + "-" + projectVersion + ".jar" );
68         artifact.setProject( projectId );
69         artifact.setRepositoryId( TEST_REPO );
70         artifact.setWhenGathered( whenGathered );
71         artifacts.add( artifact );
72
73         versions.add( projectVersion );
74     }
75
76     public ProjectMetadata getProject( String repoId, String namespace, String projectId )
77     {
78         throw new UnsupportedOperationException();
79     }
80
81     public ProjectVersionMetadata getProjectVersion( String repoId, String namespace, String projectId,
82                                                      String projectVersion )
83         throws MetadataResolverException
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         throws MetadataResolverException
117     {
118         return versions;
119     }
120
121     public void updateProject( String repoId, ProjectMetadata project )
122     {
123         throw new UnsupportedOperationException();
124     }
125
126     public void updateArtifact( String repoId, String namespace, String projectId, String projectVersion,
127                                 ArtifactMetadata artifactMeta )
128     {
129         throw new UnsupportedOperationException();
130     }
131
132     public void updateProjectVersion( String repoId, String namespace, String projectId,
133                                       ProjectVersionMetadata versionMetadata )
134     {
135         throw new UnsupportedOperationException();
136     }
137
138     public void updateProjectReference( String repoId, String namespace, String projectId, String projectVersion,
139                                         ProjectVersionReference reference )
140     {
141         throw new UnsupportedOperationException();
142     }
143
144     public void updateNamespace( String repoId, String namespace )
145     {
146         throw new UnsupportedOperationException();
147     }
148
149     public List<String> getMetadataFacets( String repodId, String facetId )
150     {
151         return Collections.emptyList();
152     }
153
154     public MetadataFacet getMetadataFacet( String repositoryId, String facetId, String name )
155     {
156         throw new UnsupportedOperationException();
157     }
158
159     public void addMetadataFacet( String repositoryId, String facetId, String name, MetadataFacet metadataFacet )
160     {
161         throw new UnsupportedOperationException();
162     }
163
164     public void removeMetadataFacets( String repositoryId, String facetId )
165     {
166         throw new UnsupportedOperationException();
167     }
168
169     public List<ArtifactMetadata> getArtifactsByDateRange( String repoId, Date startTime, Date endTime )
170     {
171         return artifacts;
172     }
173
174     public Collection<String> getRepositories()
175     {
176         return Collections.singletonList( TEST_REPO );
177     }
178
179     public Collection<ArtifactMetadata> getArtifacts( String repoId, String namespace, String projectId,
180                                                       String projectVersion )
181     {
182         return artifacts;
183     }
184 }