615afd49b57253222bb82e45ed5997113010b29d
[aaf/cadi.git] / sidecar / rproxy / src / test / java / org / onap / aaf / rproxy / ReverseProxyIT.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aaf
4  * ================================================================================
5  * Copyright © 2018 European Software Marketing Ltd.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * 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, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.aaf.rproxy;
21
22 import static org.assertj.core.api.Assertions.assertThat;
23
24 import org.eclipse.jetty.util.security.Password;
25 import org.junit.Test;
26 import org.junit.runner.RunWith;
27 import org.springframework.beans.factory.annotation.Autowired;
28 import org.springframework.boot.test.context.SpringBootTest;
29 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
30 import org.springframework.test.context.junit4.SpringRunner;
31
32 @RunWith(SpringRunner.class)
33 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
34 public class ReverseProxyIT {
35
36     static {
37         System.setProperty("server.ssl.key-store-password",
38                 Password.deobfuscate("OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10"));
39     }
40
41     @Autowired
42     private ReverseProxyService rProxyService;
43
44     @Test
45     public void contexLoads() throws Exception {
46         assertThat(rProxyService).isNotNull();
47     }
48 }