Merge "[AAI] Fix doc config files"
[aai/aai-common.git] / aai-els-onap-logging / src / test / java / org / onap / aai / util / AAIApplicationConfigTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  *  Modifications Copyright © 2018 IBM.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *    http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.aai.util;
24
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertTrue;
27
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.onap.aai.exceptions.AAIException;
31
32 public class AAIApplicationConfigTest {
33
34     @Before
35     public void setup() {
36         AAIApplicationConfig.init();
37     }
38
39     @Test
40     public void truststoreTest() throws AAIException {
41         assertEquals("truststore.jks", AAIApplicationConfig.getTruststore());
42     }
43
44     @Test
45     public void keystoreTest() throws AAIException {
46         assertEquals("keystore.jks", AAIApplicationConfig.getKeystore());
47     }
48
49     @Test
50     public void getKeystorePkcs12Test() throws AAIException {
51         assertEquals("keystore.pkcs12", AAIApplicationConfig.getKeystorePkcs12());
52     }
53
54     @Test
55     public void getValueWithDefaultTest() throws AAIException {
56         assertEquals("default-value", AAIApplicationConfig.get("non-existing-key", "default-value"));
57     }
58
59     @Test
60     public void getValueTest() throws AAIException {
61         assertEquals("certificates", AAIApplicationConfig.get("server.certs.location"));
62     }
63
64     @Test
65     public void getIntValueTest() throws AAIException {
66         assertTrue(8446 == AAIApplicationConfig.getInt("server.port"));
67     }
68
69     @Test
70     public void getIntValueWithDefaultTest() throws AAIException {
71         assertTrue(9999 == AAIApplicationConfig.getInt("non-existing-key", "9999"));
72     }
73
74     @Test
75     public void getValueWithReplacementTest() throws AAIException {
76         assertEquals("/opt/app/aai/etc/auth/aai-client-cert.p12",
77                 AAIApplicationConfig.get("schema.service.ssl.key-store"));
78     }
79 }