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