aboutsummaryrefslogtreecommitdiffstats
path: root/common/openecomp-common-configuration-management/openecomp-configuration-management-test/src/test/java/org/openecomp/config/test/NodeSpecificCLITest.java
blob: 795780b83bc3bdeb8b716a2dab6949e33f424bad (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
117
package org.openecomp.config.test;

import org.openecomp.config.Constants;
import org.openecomp.config.api.ConfigurationChangeListener;
import org.openecomp.config.api.ConfigurationManager;
import org.openecomp.config.util.ConfigTestConstant;
import org.openecomp.config.util.TestUtil;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.Test;

import javax.management.JMX;
import javax.management.MBeanServerConnection;
import javax.management.ObjectName;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.lang.management.ManagementFactory;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;

/**
 * Created by sheetalm on 10/19/2016.
 * Scenario 19
 * Pre-requisite - set -Dnode.config.location=${"user.home"}/TestResources/ while running test
 * Verify node specific override using CLI
 */
public class NodeSpecificCLITest {

    public final static String NAMESPACE = "NodeCLI";
    private String updatedValue = "";

    @Test
    public void testCLIApi() throws Exception{
        //Verify without fallback
        Map<String, Object> input = new HashMap<>();
        input.put("ImplClass", "org.openecomp.config.type.ConfigurationQuery");
        input.put("namespace", NAMESPACE);
        input.put("key", ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH);

        MBeanServerConnection mbsc = ManagementFactory.getPlatformMBeanServer();
        ObjectName mbeanName = new ObjectName(Constants.MBEAN_NAME);
        ConfigurationManager conf = JMX.newMBeanProxy(mbsc, mbeanName, org.openecomp.config.api.ConfigurationManager.class, true);
        String maxLength = conf.getConfigurationValue(input);

        //Verify Property from Namespace configurations
        Assert.assertEquals("30",maxLength);

        //Add node specific configurations
        Properties props = new Properties();
        props.setProperty(ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH, "50");
        props.setProperty("_config.namespace",NAMESPACE);
        File f = new File(TestUtil.jsonSchemaLoc+"config.properties");
        OutputStream out = new FileOutputStream( f );
        props.store(out, "Node Config Property");
        out.close();

        Thread.sleep(35000);

        //Verify property from node specific configuration
        input.put("nodeSpecific", true);
        String nodeVal = conf.getConfigurationValue(input);
        Assert.assertEquals("50", nodeVal);

        //Add Change Listener
        conf.addConfigurationChangeListener(NAMESPACE, ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH, new CLINodeListener());

        //Update maxlength
        input.put("ImplClass", "org.openecomp.config.type.ConfigurationUpdate");
        input.put("nodeOverride", true);
        input.put("nodeSpecific", false);
        input.put("value", "60");
        conf.updateConfigurationValue(input);

        Thread.sleep(35000);

        Assert.assertEquals("60",updatedValue);

        //Fetch the updated nodespecific value
        input.put("nodeOverride", false);
        input.put("nodeSpecific", true);
        input.put("ImplClass", "org.openecomp.config.type.ConfigurationQuery");
        String updatedMaxLength = conf.getConfigurationValue(input);
        Assert.assertEquals("60",updatedMaxLength);

        //Verify maxlength on other nodes by deleting node specific configuration
        if(f.exists()) {
            boolean isDeleted = f.delete();
        }

        Thread.sleep(35000);

        input.put("ImplClass", "org.openecomp.config.type.ConfigurationQuery");
        input.put("nodeOverride", false);
        input.put("nodeSpecific", false);
        System.out.println("val on other node is::"+conf.getConfigurationValue(input));
        Assert.assertEquals("30",conf.getConfigurationValue(input));
    }

    @AfterClass
    public static void tearDown() throws Exception {
        TestUtil.cleanUp();
        File f = new File(TestUtil.jsonSchemaLoc+"config.properties");
        if(f.exists()) {
            boolean isDeleted = f.delete();
        }
    }

    private class CLINodeListener implements ConfigurationChangeListener {
        @Override
        public void notify(String key, Object oldValue, Object newValue) {
            System.out.println("received notification::oldValue=="+oldValue+" newValue=="+newValue);
            updatedValue = newValue.toString();
        }
    }
}