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 / AAIConfigTest.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.*;
29
30 public class AAIConfigTest {
31
32     @Before
33     public void setup() throws AAIException {
34         AAIConfig.init();
35     }
36
37     @Test
38     public void getValueWithDefaultTest() throws AAIException {
39         assertEquals("default-value", AAIConfig.get("non-existing-key", "default-value"));
40     }
41
42     @Test
43     public void getValueTest() throws AAIException {
44         assertEquals("10", AAIConfig.get("aai.logging.maxStackTraceEntries"));
45     }
46     @Test
47     public void getIntValueTest() throws AAIException {
48         assertTrue(10 == AAIConfig.getInt("aai.logging.maxStackTraceEntries"));
49     }
50
51     @Test
52     public void getIntValueWithDefaultTest() throws AAIException {
53         assertTrue(9999 == AAIConfig.getInt("non-existing-key", "9999"));
54     }
55
56     @Test
57     public void getNodeNameTest() throws AAIException {
58         assertNotNull(AAIConfig.getNodeName());
59     }
60
61     @Test
62     public void notEmptyTest() throws AAIException {
63         String value = "test";
64         assertFalse(AAIConfig.isEmpty(value));
65     }
66
67     @Test
68     public void emptyTest() throws AAIException {
69         String value = null;
70         assertTrue(AAIConfig.isEmpty(value));
71         value = "";
72         assertTrue(AAIConfig.isEmpty(value));
73     }
74 }