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