summaryrefslogtreecommitdiffstats
path: root/common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/CliConfigurationImpTest.java
blob: 897583f605413a07884223b37d799db609194e57 (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
106
107
108
109
110
111
112
113
114
115
116
/*
 * Copyright (C) 2019 Samsung. 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.
 */

package org.onap.config;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

import java.util.HashMap;
import java.util.Map;

import org.junit.Assert;
import org.junit.Test;
import org.onap.config.api.ConfigurationManager;
import org.onap.config.impl.CliConfigurationImpl;
import org.onap.config.util.ConfigTestConstant;
import org.onap.config.util.TestImplementationConfiguration;

public class CliConfigurationImpTest {

    private static final String NAMESPACE = "CLIConfiguration";
    private static final String TENANT = "OPENECOMP";
    private static final String IMPL_KEY = "CLIImpl";
    private static final String SERVICE_CONF = "testService";

    @Test
    public void testGenerateAndPopulateMap() {

        // given
        ConfigurationManager conf = new CliConfigurationImpl();
        // when
        Map outputMap = conf.generateMap(TENANT, NAMESPACE, ConfigTestConstant.ARTIFACT);
        TestImplementationConfiguration testServiceImpl =
            conf.populateMap(TENANT, NAMESPACE, IMPL_KEY, TestImplementationConfiguration.class)
                .get(SERVICE_CONF);

        // then
        validateCliMapConfig(outputMap);
        assertTrue(testServiceImpl.isEnable());
        assertEquals("org.junit.Test", testServiceImpl.getImplementationClass());
    }

    @Test
    public void listConfigurationNullQueryShouldntFailWithNPETest() {
        ConfigurationManager conf = new CliConfigurationImpl();
        Assert.assertEquals(0, conf.listConfiguration(null).size());
    }

    @Test
    public void listConfigurationEmptyQueryTest() {
        ConfigurationManager conf = new CliConfigurationImpl();
        Assert.assertEquals(0, conf.listConfiguration(new HashMap<>()).size());
    }

    @Test
    public void getConfigurationValueNullQueryShouldntFailWithNPETest() {
        ConfigurationManager conf = new CliConfigurationImpl();
        Assert.assertNull (conf.getConfigurationValue(null));
    }

    @Test
    public void getConfigurationValueEmptyQueryTest() {
        ConfigurationManager conf = new CliConfigurationImpl();
        Assert.assertNull (conf.getConfigurationValue(new HashMap<>()));
    }

    private void validateCliMapConfig(Map outputMap) {
        assertEquals("appc",
            outputMap.get(withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_CONSUMER)));
        assertEquals("6",
            extract(outputMap, withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_NAME_MINLENGTH)));
        assertEquals("true",
            outputMap.get(withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_ENCODED)));
        assertEquals("14",
            extract(outputMap, withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH)));
        assertEquals("pdf", outputMap.get(withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_EXT)));
        assertEquals("Base64",
            outputMap.get(withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_ENC)));
        assertEquals("a-zA-Z_0-9",
            extract(outputMap, withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_NAME_UPPER)));
        assertEquals("deleted",
            outputMap.get(withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_STATUS)));

    }

    private String withoutArtifactPrefix(String key) {
        return key.replace(ConfigTestConstant.ARTIFACT + ".", "");
    }

    private String extract(Map map, String keys) {

        String[] keysList = keys.split("\\.");
        Map recursive = (Map) map.get(keysList[0]);

        for (int i = 1; i < keysList.length; i++) {
            if (i == keysList.length - 1) {
                return (String) recursive.get(keysList[i]);
            }
            recursive = (Map) recursive.get(keysList[i]);
        }
        return null;
    }
}