aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/openecomp/sdc/impl/ToscaParserConfigurationTest.java
blob: b81506496de8e065493d8c3f630b30e5c2599938 (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
package org.openecomp.sdc.impl;

import org.openecomp.sdc.tosca.parser.config.ErrorConfiguration;
import org.openecomp.sdc.tosca.parser.config.JtoscaValidationIssueConfiguration;
import org.testng.annotations.Test;
import org.openecomp.sdc.tosca.parser.config.Configuration;
import org.openecomp.sdc.tosca.parser.config.ConfigurationManager;

import java.io.IOException;

import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotNull;

public class ToscaParserConfigurationTest extends SdcToscaParserBasicTest {

    @Test
    public void testConfigurationConformanceLevel() throws IOException {
        Configuration config = ConfigurationManager.getInstance().getConfiguration();
        assertNotNull(config);
        assertNotNull(config.getConformanceLevel());
        assertNotNull(config.getConformanceLevel().getMaxVersion());
        assertNotNull(config.getConformanceLevel().getMinVersion());
    }


    @Test
    public void testErrorConfigurations() throws IOException {
        ErrorConfiguration errorConfig = ConfigurationManager.getInstance().getErrorConfiguration();
        assertNotNull(errorConfig);
        assertNotNull(errorConfig.getErrors());
    }

    @Test
    public void testSetErrorConfiguration() throws IOException {
        ConfigurationManager configurationManager = ConfigurationManager.getInstance();
        configurationManager.setErrorConfiguration("error-configuration-test.yaml");
        ErrorConfiguration errorConfig = configurationManager.getErrorConfiguration();
        assertEquals(false, errorConfig.getErrorInfo("CONFORMANCE_LEVEL_ERROR").getFailOnError());
        assertEquals(true, errorConfig.getErrorInfo("FILE_NOT_FOUND").getFailOnError());
    }

    @Test
    public void testSetJtoscaValidationIssueConfiguration() throws IOException {
        ConfigurationManager configurationManager = ConfigurationManager.getInstance();
        configurationManager.setJtoscaValidationIssueConfiguration(
            "jtosca-validation-issue-configuration-test.yaml");
        JtoscaValidationIssueConfiguration issueConfig = configurationManager
            .getJtoscaValidationIssueConfiguration();
        assertNotNull(issueConfig);
    }
}