Update FProxy to separate truststore and keystore
[aaf/cadi.git] / sidecar / fproxy / src / test / java / org / onap / aaf / cadi / sidecar / fproxy / test / 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.cadi.sidecar.fproxy.test;
21
22 import static org.assertj.core.api.Assertions.assertThat;
23 import org.eclipse.jetty.util.security.Password;
24 import org.junit.Test;
25 import org.junit.runner.RunWith;
26 import org.onap.aaf.cadi.sidecar.fproxy.service.ForwardingProxyService;
27 import org.springframework.beans.factory.annotation.Autowired;
28 import org.springframework.boot.test.context.SpringBootTest;
29 import org.springframework.test.context.TestPropertySource;
30 import org.springframework.test.context.junit4.SpringRunner;
31
32 @RunWith(SpringRunner.class)
33 @SpringBootTest
34 @TestPropertySource(properties = {"TRUST_STORE_PASSWORD=OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10",
35         "KEY_STORE_PASSWORD=OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10"})
36 public class FProxyIT {
37
38     static {
39         System.setProperty("server.ssl.key-store-password",
40                 Password.deobfuscate("OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10"));
41         System.setProperty("server.ssl.trust-store-password",
42                 Password.deobfuscate("OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10"));
43     }
44
45     @Autowired
46     private ForwardingProxyService fProxyService;
47
48     @Test
49     public void contexLoads() throws Exception {
50         assertThat(fProxyService).isNotNull();
51     }
52 }