ba876e04222e584e46ba720f56401798a400a0a8
[aaf/cadi.git] / sidecar / fproxy / src / test / java / org / onap / aaf / fproxy / FProxyIT.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.fproxy;
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.onap.aaf.fproxy.service.ForwardingProxyService;
28 import org.springframework.beans.factory.annotation.Autowired;
29 import org.springframework.boot.test.context.SpringBootTest;
30 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
31 import org.springframework.test.context.junit4.SpringRunner;
32
33 @RunWith(SpringRunner.class)
34 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
35 public class FProxyIT {
36
37     static {
38         System.setProperty("server.ssl.key-store-password",
39                 Password.deobfuscate("OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10"));
40     }
41
42     @Autowired
43     private ForwardingProxyService fProxyService;
44
45     @Test
46     public void contexLoads() throws Exception {
47         assertThat(fProxyService).isNotNull();
48     }
49 }