]> source.dussan.org Git - archiva.git/blob
aed5b3f937254a4211c286e5cc959655ea06b4ca
[archiva.git] /
1 package org.apache.archiva.webapp.ui.services.api;
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 import org.apache.archiva.webapp.ui.services.model.ApplicationRuntimeInfo;
22 import org.apache.commons.io.FileUtils;
23 import org.apache.commons.lang.StringUtils;
24 import org.apache.cxf.jaxrs.client.JAXRSClientFactory;
25 import org.codehaus.jackson.jaxrs.JacksonJaxbJsonProvider;
26 import org.apache.archiva.redback.rest.services.AbstractRestServicesTest;
27 import org.junit.Before;
28 import org.junit.Test;
29
30 import java.io.File;
31 import java.util.Collections;
32
33 /**
34  * @author Olivier Lamy
35  */
36 public class RuntimeInfoServiceTest
37     extends AbstractRestServicesTest
38 {
39     @Override
40     @Before
41     public void startServer()
42         throws Exception
43     {
44         File appServerBase = new File( System.getProperty( "appserver.base" ) );
45
46         File jcrDirectory = new File( appServerBase, "jcr" );
47
48         if ( jcrDirectory.exists() )
49         {
50             FileUtils.deleteDirectory( jcrDirectory );
51         }
52
53         super.startServer();
54     }
55
56     @Override
57     protected String getSpringConfigLocation()
58     {
59         return "classpath*:META-INF/spring-context.xml,classpath*:META-INF/spring-context-test.xml";
60     }
61
62     protected String getRestServicesPath()
63     {
64         return "restServices";
65     }
66
67     protected String getBaseUrl()
68     {
69         String baseUrlSysProps = System.getProperty( "archiva.baseRestUrl" );
70         return StringUtils.isBlank( baseUrlSysProps ) ? "http://localhost:" + port : baseUrlSysProps;
71     }
72
73     @Test
74     public void runtimeInfoService()
75         throws Exception
76     {
77         RuntimeInfoService service =
78             JAXRSClientFactory.create( getBaseUrl() + "/" + getRestServicesPath() + "/archivaUiServices/",
79                                        RuntimeInfoService.class,
80                                        Collections.singletonList( new JacksonJaxbJsonProvider() ) );
81
82         ApplicationRuntimeInfo applicationRuntimeInfo = service.getApplicationRuntimeInfo( "en" );
83
84         assertEquals( System.getProperty( "expectedVersion" ), applicationRuntimeInfo.getVersion() );
85         assertFalse( applicationRuntimeInfo.isJavascriptLog() );
86         assertTrue( applicationRuntimeInfo.isLogMissingI18n() );
87
88     }
89 }