]> source.dussan.org Git - archiva.git/blob
79f2ddcc4645b214734fcf53e58364b8660783fa
[archiva.git] /
1 package org.apache.archiva.repository.maven.content;
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  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import org.apache.archiva.model.ArtifactReference;
22 import org.apache.archiva.repository.LayoutException;
23 import org.apache.archiva.repository.BaseRepositoryContentLayout;
24 import org.apache.archiva.repository.ManagedRepositoryContent;
25 import org.apache.archiva.repository.RemoteRepository;
26 import org.apache.archiva.repository.RemoteRepositoryContent;
27 import org.apache.archiva.repository.RepositoryContent;
28 import org.apache.archiva.repository.content.Artifact;
29 import org.apache.archiva.repository.content.ItemSelector;
30 import org.apache.archiva.repository.maven.metadata.storage.ArtifactMappingProvider;
31 import org.junit.Before;
32
33 import javax.inject.Inject;
34 import java.util.List;
35
36 /**
37  * RemoteDefaultRepositoryContentTest
38  */
39 public class RemoteDefaultRepositoryContentTest
40     extends AbstractRepositoryContentTest
41 {
42
43     @Inject
44     private List<? extends ArtifactMappingProvider> artifactMappingProviders;
45
46     private RemoteRepositoryContent repoContent;
47
48     @Before
49     public void setUp()
50         throws Exception
51     {
52         RemoteRepository repository =
53             createRemoteRepository( "testRemoteRepo", "Unit Test Remote Repo", "http://repo1.maven.org/maven2/" );
54
55         repoContent = new RemoteDefaultRepositoryContent(artifactMappingProviders);
56         //repoContent = (RemoteRepositoryContent) lookup( RemoteRepositoryContent.class, "default" );
57         repoContent.setRepository( repository );
58     }
59
60     @Override
61     protected Artifact createArtifact( String groupId, String artifactId, String version, String classifier, String type ) throws LayoutException
62     {
63         return null;
64     }
65
66
67     @Override
68     protected String toPath( Artifact reference ) throws LayoutException
69     {
70         ItemSelector selector = toItemSelector( reference.getAsset( ).getPath( ) );
71         return repoContent.toPath( selector );
72     }
73
74     @Override
75     protected ItemSelector toItemSelector( String path ) throws LayoutException
76     {
77         return repoContent.toItemSelector( path );
78     }
79
80     @Override
81     protected ManagedRepositoryContent getManaged( )
82     {
83         return null;
84     }
85
86     @Override
87     protected RepositoryContent getContent( )
88     {
89         return repoContent;
90     }
91
92     @Override
93     protected String toPath( ItemSelector selector ) {
94         return repoContent.toPath( selector );
95     }
96 }