aboutsummaryrefslogtreecommitdiffstats
path: root/common/openecomp-common-configuration-management/openecomp-configuration-management-test/src/test/java/org/openecomp/config/test/NotificationForNodeConfigTest.java
blob: 3d1579e25e05c1fcc61b2a44b68016b52012f7ed (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
package org.openecomp.config.test;

import org.openecomp.config.api.Configuration;
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.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Properties;

/**
 * Scenario 15
 * Update and Verify Change Notifications for any change in the registered key for node specific configuration
 * Pre-requisite - set -Dnode.config.location=${"user.home"}/TestResources/ while running test
 * Created by sheetalm on 10/17/2016.
 */
public class NotificationForNodeConfigTest {
    public final static String NAMESPACE = "NotificationForNodeConfig";

    public String updatedValue = null;

    @Before
    public void setUp() throws IOException {
        String data = "{name:\"SCM\"}";
        TestUtil.writeFile(data);
    }

    @Test
    public void testNotificationForNode() throws IOException, InterruptedException {
        Configuration config = ConfigurationManager.lookup();

        System.out.println(config.getAsString(NAMESPACE, ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH));

        Properties props = new Properties();
        props.setProperty(ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH, "30");
        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
        Assert.assertEquals("30", config.getAsString(NAMESPACE, ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH));

        config.addConfigurationChangeListener(NAMESPACE, ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH, new NodePropValListener());

        props.setProperty(ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH, "80");
        out = new FileOutputStream( f );
        props.store(out, "Updated Node Config Property");
        out.close();

        Thread.sleep(35000);

        //Verify change listenere is invoked when node specific configuration is changed.
        Assert.assertEquals("80", updatedValue);

    }

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

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