Merge "Add INFO.yaml file"
[clamp.git] / src / test / java / org / onap / clamp / clds / it / config / SdcControllersConfigurationItCase.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.clamp.clds.it.config;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertTrue;
25 import static org.junit.Assert.fail;
26
27 import java.io.IOException;
28 import java.util.Map;
29
30 import org.junit.Test;
31 import org.junit.runner.RunWith;
32 import org.onap.clamp.clds.config.sdc.SdcControllersConfiguration;
33 import org.onap.clamp.clds.config.sdc.SdcSingleControllerConfiguration;
34 import org.onap.clamp.clds.exception.sdc.controller.SdcParametersException;
35 import org.springframework.beans.factory.annotation.Autowired;
36 import org.springframework.boot.test.context.SpringBootTest;
37 import org.springframework.test.context.junit4.SpringRunner;
38 import org.springframework.test.util.ReflectionTestUtils;
39
40 /**
41  * This class tests the SDC Controller config.
42  */
43 @RunWith(SpringRunner.class)
44 @SpringBootTest
45 public class SdcControllersConfigurationItCase {
46
47     @Autowired
48     private SdcControllersConfiguration sdcControllersConfiguration;
49
50     public final void loadFile(String fileName) throws IOException {
51         ReflectionTestUtils.setField(sdcControllersConfiguration, "sdcControllerFile", fileName);
52         sdcControllersConfiguration.loadConfiguration();
53     }
54
55     @Test
56     public void testGetAllDefinedControllers() throws IOException {
57         loadFile("classpath:/clds/sdc-controllers-config.json");
58         Map<String, SdcSingleControllerConfiguration> mapResult = sdcControllersConfiguration
59                 .getAllDefinedControllers();
60         assertTrue(mapResult.size() == 2);
61         assertEquals("sdc-controller1", mapResult.get("sdc-controller1").getSdcControllerName());
62         assertEquals("sdc-controller2", mapResult.get("sdc-controller2").getSdcControllerName());
63     }
64
65     @Test
66     public void testGetSdcSingleControllerConfiguration() throws IOException {
67         loadFile("classpath:/clds/sdc-controllers-config.json");
68         assertEquals("sdc-controller1", sdcControllersConfiguration
69                 .getSdcSingleControllerConfiguration("sdc-controller1").getSdcControllerName());
70         assertEquals("sdc-controller2", sdcControllersConfiguration
71                 .getSdcSingleControllerConfiguration("sdc-controller2").getSdcControllerName());
72     }
73
74     @Test(expected = IOException.class)
75     public void testBadJsonLoading() throws IOException {
76         loadFile("classpath:/clds/sdc-controllers-config-bad.json");
77         fail("Should have raised an exception");
78     }
79
80     @Test(expected = SdcParametersException.class)
81     public void testMissingParamInJsonLoading() throws IOException {
82         loadFile("classpath:/clds/sdc-controllers-config-missing-param.json");
83         sdcControllersConfiguration.getAllDefinedControllers();
84         fail("Should have raised an exception");
85     }
86 }