65d7ca104141bfbbc99f12bf08767b4d47929609
[policy/distribution.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Intel. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.distribution.reception.handling.sdc;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertTrue;
26 import static org.junit.Assert.fail;
27
28 import com.google.gson.Gson;
29 import com.google.gson.GsonBuilder;
30
31 import java.io.FileReader;
32 import java.io.IOException;
33 import java.util.Arrays;
34
35 import org.junit.Test;
36 import org.onap.policy.common.parameters.GroupValidationResult;
37
38 /**
39  * Class to perform unit test of {@link SdcConfiguration}.
40  *
41  */
42 public class TestSdcConfiguration {
43
44     @Test
45     public void testSdcConfiguration() throws IOException {
46         SdcReceptionHandlerConfigurationParameterGroup configParameters = null;
47         try {
48             final Gson gson = new GsonBuilder().create();
49             configParameters = gson.fromJson(new FileReader("src/test/resources/handling-sdc.json"),
50                     SdcReceptionHandlerConfigurationParameterGroup.class);
51         } catch (final Exception e) {
52             fail("test should not thrown an exception here: " + e.getMessage());
53         }
54         final GroupValidationResult validationResult = configParameters.validate();
55         assertTrue(validationResult.isValid());
56         final SdcConfiguration config = new SdcConfiguration(configParameters);
57         assertEquals(Arrays.asList("a.com", "b.com", "c.com"), config.getMsgBusAddress());
58         assertEquals(Arrays.asList("TOSCA_CSAR", "HEAT"), config.getRelevantArtifactTypes());
59         assertEquals("localhost", config.getAsdcAddress());
60         assertEquals("policy", config.getUser());
61         assertEquals("policy", config.getPassword());
62         assertEquals(20, config.getPollingInterval());
63         assertEquals(30, config.getPollingTimeout());
64         assertEquals("policy-id", config.getConsumerID());
65         assertEquals("policy-group", config.getConsumerGroup());
66         assertEquals("TEST", config.getEnvironmentName());
67         assertEquals("null", config.getKeyStorePath());
68         assertEquals("null", config.getKeyStorePassword());
69         assertEquals(false, config.activateServerTLSAuth());
70         assertEquals(true, config.isFilterInEmptyResources());
71         assertEquals(false, config.isUseHttpsWithDmaap());
72     }
73
74     @Test
75     public void testInvalidSdcConfiguration() throws IOException {
76         SdcReceptionHandlerConfigurationParameterGroup configParameters = null;
77         try {
78             final Gson gson = new GsonBuilder().create();
79             configParameters = gson.fromJson(new FileReader("src/test/resources/handling-sdcInvalid.json"),
80                     SdcReceptionHandlerConfigurationParameterGroup.class);
81         } catch (final Exception e) {
82             fail("test should not thrown an exception here: " + e.getMessage());
83         }
84         final GroupValidationResult validationResult = configParameters.validate();
85         assertFalse(validationResult.isValid());
86
87     }
88 }