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

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

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

/**
 * Scenario 13
 * Validate node specific configuration
 * Pre-requisite - set -Dnode.config.location=${"user.home"}/TestResources/ while running test
 *
 * Created by sheetalm on 10/14/2016.
 */
public class ValidateNodeConfigTest {

    public final static String NAMESPACE = "ValidateNodeConfig";

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

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

        Properties props = new Properties();
        props.setProperty(ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH, "56");
        props.setProperty("_config.namespace","ValidateNodeConfig");
        File f = new File(TestUtil.jsonSchemaLoc+"config.properties");
        OutputStream out = new FileOutputStream( f );
        props.store(out, "Node Config Property");
        out.close();

        System.out.println(System.getProperty("node.config.location"));

        Thread.sleep(35000);

        //Verify property from node specific configuration
        Assert.assertEquals("56", config.getAsString(NAMESPACE, ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH));

        //Verify if property is not in node specific then fetch from namespace
        //Assert.assertEquals("a-zA-Z",config.getAsString(NAMESPACE, ConfigTestConstant.ARTIFACT_NAME_UPPER));

        //Verify if property is not in node specific and namespace then fetch from global
        Assert.assertEquals("1024", config.getAsString(NAMESPACE, "maxCachedBufferSize"));

        //Deleting node configurations to test property is fetched from namespace configuration when node configuration is not present
        if(f.exists()) {
            boolean isDeleted = f.delete();
            System.out.println(isDeleted);
        }

        Thread.sleep(35000);

        Assert.assertEquals(config.getAsString(NAMESPACE, ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH), "14");
    }

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

}