aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/clamp/clds/config/sdc/SdcSingleControllerConfigurationTest.java
blob: d27690bfa2b2c7b31f7676a642b09f30295f80fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*-
 * ============LICENSE_START=======================================================
 * ONAP CLAMP
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 * Modifications copyright (c) 2018 Nokia
 * ================================================================================
 *
 */

package org.onap.clamp.clds.config.sdc;

import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import com.google.gson.JsonObject;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
import org.junit.Test;
import org.onap.clamp.clds.exception.sdc.controller.SdcParametersException;
import org.onap.clamp.clds.util.JsonUtils;
import org.onap.clamp.clds.util.ResourceFileUtil;

/**
 * This class tests the SDC Controller config.
 */
public class SdcSingleControllerConfigurationTest {

    /**
     * @param fileName file for sdc controller configuration.
     * @param sdcControllerName sdc controller name.
     * @return instance of SdcSingleControllerConfiguration.
     */
    public static SdcSingleControllerConfiguration loadControllerConfiguration(String fileName,
        String sdcControllerName) {

        InputStreamReader streamReader = new InputStreamReader(ResourceFileUtil.getResourceAsStream(fileName),
            StandardCharsets.UTF_8);
        JsonObject jsonNode = JsonUtils.GSON.fromJson(streamReader, JsonObject.class);

        return new SdcSingleControllerConfiguration(jsonNode, sdcControllerName);
    }

    @Test
    public final void testTheInit() throws SdcParametersException, IOException {
        SdcSingleControllerConfiguration sdcConfig = loadControllerConfiguration("clds/sdc-controller-config-TLS.json",
            "sdc-controller1");
        assertEquals("User", sdcConfig.getUser());
        assertEquals("ThePassword", sdcConfig.getPassword());
        assertEquals("consumerGroup", sdcConfig.getConsumerGroup());
        assertEquals("consumerId", sdcConfig.getConsumerID());
        assertEquals("environmentName", sdcConfig.getEnvironmentName());
        assertEquals("hostname:8080", sdcConfig.getAsdcAddress());
        assertEquals(10, sdcConfig.getPollingInterval());
        assertEquals(30, sdcConfig.getPollingTimeout());

        assertThat(SdcSingleControllerConfiguration.SUPPORTED_ARTIFACT_TYPES_LIST)
            .hasSameSizeAs(sdcConfig.getRelevantArtifactTypes());
        assertEquals("ThePassword", sdcConfig.getKeyStorePassword());
        assertTrue(sdcConfig.activateServerTLSAuth());
        assertThat(sdcConfig.getMsgBusAddress()).contains("localhost");
    }

    @Test(expected = SdcParametersException.class)
    public final void testAllRequiredParameters() throws IOException {
        SdcSingleControllerConfiguration sdcConfig = loadControllerConfiguration("clds/sdc-controller-config-TLS.json",
            "sdc-controller1");
        // No exception should be raised
        sdcConfig.testAllRequiredParameters();
        sdcConfig = loadControllerConfiguration("clds/sdc-controller-config-bad.json", "sdc-controller1");
        fail("Should have raised an exception");
    }

    @Test
    public final void testAllRequiredParametersEmptyEncrypted() throws IOException {
        SdcSingleControllerConfiguration sdcConfig = loadControllerConfiguration(
            "clds/sdc-controller-config-empty-encrypted.json", "sdc-controller1");
        sdcConfig.testAllRequiredParameters();
        assertNull(sdcConfig.getKeyStorePassword());
    }

    @Test
    public final void testConsumerGroupWithNull() throws IOException {
        SdcSingleControllerConfiguration sdcConfig = loadControllerConfiguration("clds/sdc-controller-config-NULL.json",
            "sdc-controller1");
        assertTrue(sdcConfig.getConsumerGroup() == null);
    }
}