summaryrefslogtreecommitdiffstats
path: root/common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/CliConfigurtationImpTest.java
blob: 0d460a2bb1eeffa4ef5cdd1461024c1ac8d7e4e4 (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
/*
 * 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 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;

import java.util.Map;

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

public class CliConfigurtationImpTest {

    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() throws Exception {

        // 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());
    }

    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)));

    }

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

    public 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;
    }


}