]> source.dussan.org Git - archiva.git/blob
79a3e82231c5fa168bbc2f19d4cb0720e9d2cf31
[archiva.git] /
1 package org.apache.archiva.rest.services;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
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
22 import org.apache.archiva.rest.api.model.ManagedRepository;
23 import org.apache.archiva.rest.api.services.ArchivaAdministrationService;
24 import org.apache.archiva.rest.api.services.ManagedRepositoriesService;
25 import org.apache.archiva.rest.api.services.NetworkProxyService;
26 import org.apache.archiva.rest.api.services.PingService;
27 import org.apache.archiva.rest.api.services.ProxyConnectorService;
28 import org.apache.archiva.rest.api.services.RemoteRepositoriesService;
29 import org.apache.archiva.rest.api.services.RepositoriesService;
30 import org.apache.archiva.rest.api.services.RepositoryGroupService;
31 import org.apache.cxf.jaxrs.client.JAXRSClientFactory;
32 import org.apache.cxf.jaxrs.client.WebClient;
33 import org.apache.maven.archiva.common.utils.FileUtil;
34 import org.codehaus.redback.rest.services.AbstractRestServicesTest;
35
36 import java.io.File;
37
38 /**
39  * @author Olivier Lamy
40  */
41 public abstract class AbstractArchivaRestTest
42     extends AbstractRestServicesTest
43 {
44     public String guestAuthzHeader =
45         "Basic " + org.apache.cxf.common.util.Base64Utility.encode( ( "guest" + ":" ).getBytes() );
46
47     @Override
48     protected String getSpringConfigLocation()
49     {
50         return "classpath*:META-INF/spring-context.xml,classpath:META-INF/spring-context-test.xml";
51     }
52
53     protected RepositoriesService getRepositoriesService()
54     {
55         return JAXRSClientFactory.create( "http://localhost:" + port + "/services/archivaServices/",
56                                           RepositoriesService.class );
57
58     }
59
60     protected ManagedRepositoriesService getManagedRepositoriesService()
61     {
62         return JAXRSClientFactory.create( "http://localhost:" + port + "/services/archivaServices/",
63                                           ManagedRepositoriesService.class );
64
65     }
66
67     protected PingService getPingService()
68     {
69         return JAXRSClientFactory.create( "http://localhost:" + port + "/services/archivaServices/",
70                                           PingService.class );
71     }
72
73     protected RemoteRepositoriesService getRemoteRepositoriesService()
74     {
75         return JAXRSClientFactory.create( "http://localhost:" + port + "/services/archivaServices/",
76                                           RemoteRepositoriesService.class );
77
78
79     }
80
81     protected RepositoryGroupService getRepositoryGroupService()
82     {
83         return JAXRSClientFactory.create( "http://localhost:" + port + "/services/archivaServices/",
84                                           RepositoryGroupService.class );
85     }
86
87     protected ProxyConnectorService getProxyConnectorService()
88     {
89         ProxyConnectorService service =
90             JAXRSClientFactory.create( "http://localhost:" + port + "/services/archivaServices/",
91                                        ProxyConnectorService.class );
92
93         WebClient.client( service ).header( "Authorization", authorizationHeader );
94         WebClient.getConfig( service ).getHttpConduit().getClient().setReceiveTimeout( 300000 );
95         return service;
96     }
97
98     protected NetworkProxyService getNetworkProxyService()
99     {
100         NetworkProxyService service =
101             JAXRSClientFactory.create( "http://localhost:" + port + "/services/archivaServices/",
102                                        NetworkProxyService.class );
103
104         WebClient.client( service ).header( "Authorization", authorizationHeader );
105         WebClient.getConfig( service ).getHttpConduit().getClient().setReceiveTimeout( 300000 );
106         return service;
107     }
108
109     protected ArchivaAdministrationService getArchivaAdministrationService()
110     {
111         ArchivaAdministrationService service =
112             JAXRSClientFactory.create( "http://localhost:" + port + "/services/archivaServices/",
113                                        ArchivaAdministrationService.class );
114
115         WebClient.client( service ).header( "Authorization", authorizationHeader );
116         WebClient.getConfig( service ).getHttpConduit().getClient().setReceiveTimeout( 300000 );
117         return service;
118     }
119
120     protected ManagedRepository getTestManagedRepository()
121     {
122         String location = new File( FileUtil.getBasedir(), "target/test-repo" ).getAbsolutePath();
123         return new ManagedRepository( "TEST", "test", location, "default", true, true, false, false, "2 * * * * ?" );
124     }
125 }