Increase code coverage on aai-common: aai-els-onap-logging library
[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 package org.onap.aai.util;
23
24 import org.junit.Before;
25 import org.junit.Test;
26 import org.onap.aai.exceptions.AAIException;
27
28 import static org.junit.Assert.assertEquals;
29 import static org.junit.Assert.assertTrue;
30
31 public class AAIApplicationConfigTest {
32
33     @Before
34     public void setup() {
35         AAIApplicationConfig.init();
36     }
37
38     @Test
39     public void truststoreTest() throws AAIException {
40         assertEquals("truststore.jks", AAIApplicationConfig.getTruststore());
41     }
42     @Test
43     public void keystoreTest() throws AAIException {
44         assertEquals("keystore.jks", AAIApplicationConfig.getKeystore());
45     }
46
47     @Test
48     public void getKeystorePkcs12Test() throws AAIException {
49         assertEquals("keystore.pkcs12", AAIApplicationConfig.getKeystorePkcs12());
50     }
51
52     @Test
53     public void getValueWithDefaultTest() throws AAIException {
54         assertEquals("default-value", AAIApplicationConfig.get("non-existing-key", "default-value"));
55     }
56
57     @Test
58     public void getValueTest() throws AAIException {
59         assertEquals("certificates", AAIApplicationConfig.get("server.certs.location"));
60     }
61     @Test
62     public void getIntValueTest() throws AAIException {
63         assertTrue(8446 == AAIApplicationConfig.getInt("server.port"));
64     }
65
66     @Test
67     public void getIntValueWithDefaultTest() throws AAIException {
68         assertTrue(9999 == AAIApplicationConfig.getInt("non-existing-key", "9999"));
69     }
70
71     @Test
72     public void getValueWithReplacementTest() throws AAIException {
73         assertEquals("/opt/app/aai/etc/auth/aai-client-cert.p12", AAIApplicationConfig.get("schema.service.ssl.key-store"));
74     }
75 }