]> source.dussan.org Git - archiva.git/blob
ea1ea8450008017c451267e5487360581d87ff73
[archiva.git] /
1 package org.apache.archiva.metadata.repository.storage.maven2;
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.admin.model.beans.ManagedRepository;
23 import org.apache.archiva.admin.model.beans.RemoteRepository;
24 import org.apache.archiva.repository.ManagedRepositoryContent;
25 import org.apache.archiva.repository.RemoteRepositoryContent;
26 import org.apache.archiva.test.utils.ArchivaSpringJUnit4ClassRunner;
27 import org.junit.Rule;
28 import org.junit.rules.TestName;
29 import org.junit.runner.RunWith;
30 import org.springframework.context.ApplicationContext;
31 import org.springframework.test.context.ContextConfiguration;
32
33 import javax.inject.Inject;
34 import java.io.File;
35
36 /**
37  * AbstractRepositoryLayerTestCase
38  *
39  *
40  */
41 @RunWith( ArchivaSpringJUnit4ClassRunner.class )
42 @ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" } )
43 public abstract class AbstractRepositoryLayerTestCase
44 {
45     @Rule
46     public TestName name = new TestName();
47
48     @Inject
49     protected ApplicationContext applicationContext;
50
51     protected ManagedRepository createRepository( String id, String name, File location )
52     {
53         ManagedRepository repo = new ManagedRepository();
54         repo.setId( id );
55         repo.setName( name );
56         repo.setLocation( location.getAbsolutePath() );
57         return repo;
58     }
59
60     protected RemoteRepository createRemoteRepository( String id, String name, String url )
61     {
62         RemoteRepository repo = new RemoteRepository();
63         repo.setId( id );
64         repo.setName( name );
65         repo.setUrl( url );
66         return repo;
67     }
68
69     protected ManagedRepositoryContent createManagedRepositoryContent( String id, String name, File location,
70                                                                        String layout )
71         throws Exception
72     {
73         ManagedRepository repo = new ManagedRepository();
74         repo.setId( id );
75         repo.setName( name );
76         repo.setLocation( location.getAbsolutePath() );
77         repo.setLayout( layout );
78
79         ManagedRepositoryContent repoContent =
80             applicationContext.getBean( "managedRepositoryContent#" + layout, ManagedRepositoryContent.class );
81         repoContent.setRepository( repo );
82
83         return repoContent;
84     }
85
86     protected RemoteRepositoryContent createRemoteRepositoryContent( String id, String name, String url, String layout )
87         throws Exception
88     {
89         RemoteRepository repo = new RemoteRepository();
90         repo.setId( id );
91         repo.setName( name );
92         repo.setUrl( url );
93         repo.setLayout( layout );
94
95         RemoteRepositoryContent repoContent =
96             applicationContext.getBean( "remoteRepositoryContent#" + layout, RemoteRepositoryContent.class );
97         repoContent.setRepository( repo );
98
99         return repoContent;
100     }
101 }