d985a5d7272b9664f2b3b9f7823b40d714c42c7f
[clamp.git] / src / test / java / org / onap / clamp / clds / it / config / CldsReferencePropertiesItCase.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23
24 package org.onap.clamp.clds.it.config;
25
26 import static org.junit.Assert.assertEquals;
27
28 import java.io.IOException;
29 import org.junit.Test;
30 import org.junit.runner.RunWith;
31 import org.onap.clamp.clds.config.ClampProperties;
32 import org.onap.clamp.clds.util.ResourceFileUtil;
33 import org.springframework.beans.factory.annotation.Autowired;
34 import org.springframework.boot.test.context.SpringBootTest;
35 import org.springframework.test.context.junit4.SpringRunner;
36
37 /**
38  * Test corg.onap.clamp.ClampDesigner.model.refprop package using RefProp.
39  */
40 @RunWith(SpringRunner.class)
41 @SpringBootTest
42 public class CldsReferencePropertiesItCase {
43
44     @Autowired
45     private ClampProperties refProp;
46
47     /**
48      * Test getting a value the properties in string.
49      */
50     @Test
51     public void testGetStringValue() {
52         assertEquals("healthcheck", refProp.getStringValue("policy.api.userName"));
53     }
54
55     /**
56      * Test getting prop value as a JSON Node / template.
57      *
58      * @throws IOException when JSON parsing fails
59      */
60     @Test
61     public void testGetFileContent() throws IOException {
62         String users = ResourceFileUtil.getResourceAsString("clds/clds-users.json");
63         assertEquals(users, refProp.getFileContent("files.cldsUsers"));
64         // Test composite key
65         assertEquals(users, refProp.getFileContent("files", "cldsUsers"));
66     }
67 }