summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-tosca-lib/src/test/java/org/openecomp/sdc/tosca/services/ToscaUtilTest.java
blob: ea0726dee6211f085f76d673ee851f188626bdfd (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
/*
 *
 *  Copyright © 2017-2018 European Support Limited
 *
 *  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.openecomp.sdc.tosca.services;

import java.util.Collections;
import java.util.HashMap;
import java.util.Map;

import org.junit.Assert;
import org.junit.Test;
import org.onap.sdc.tosca.datatypes.model.NodeTemplate;
import org.onap.sdc.tosca.datatypes.model.ServiceTemplate;
import org.onap.sdc.tosca.datatypes.model.TopologyTemplate;

public class ToscaUtilTest {

    @Test
    public void testGetServiceTemplateFileNameServiceTemplateNull() {
        ServiceTemplate serviceTemplate = null;
        Assert.assertNull(ToscaUtil.getServiceTemplateFileName(serviceTemplate));
    }

    @Test
    public void testGetServiceTemplateFileNameMetadataNull() {
        ServiceTemplate serviceTemplate = new ServiceTemplate();
        Assert.assertTrue(ToscaUtil.getServiceTemplateFileName(serviceTemplate)
                .endsWith(ToscaConstants.SERVICE_TEMPLATE_FILE_POSTFIX));
    }

    @Test
    public void testGetServiceTemplateFileName() {
        ServiceTemplate serviceTemplate = new ServiceTemplate();
        serviceTemplate.setMetadata(
                Collections.singletonMap(ToscaConstants.ST_METADATA_FILE_NAME, ToscaConstants.ST_METADATA_FILE_NAME));
        Assert.assertEquals(ToscaConstants.ST_METADATA_FILE_NAME,
                ToscaUtil.getServiceTemplateFileName(serviceTemplate));
    }

    @Test
    public void testGetServiceTemplateFileNameMap() {
        Assert.assertTrue(ToscaUtil.getServiceTemplateFileName(new HashMap<>()).endsWith("ServiceTemplate.yaml"));
    }

    @Test
    public void testGetSubstitutableGroupMemberIdNodeTemplateNotPresent() {
        ServiceTemplate serviceTemplate = new ServiceTemplate();
        Assert.assertFalse(ToscaUtil.getSubstitutableGroupMemberId("main.yaml", serviceTemplate).isPresent());
    }

    @Test
    public void testGetSubstitutableGroupMemberIdSubstitutable() {
        ServiceTemplate serviceTemplate = new ServiceTemplate();
        serviceTemplate.setTopology_template(new TopologyTemplate());

        Map<String, Object> nodeTemplatePropertyMap = Collections.singletonMap(ToscaConstants
                .SERVICE_TEMPLATE_FILTER_PROPERTY_NAME, Collections.singletonMap(ToscaConstants
                .SUBSTITUTE_SERVICE_TEMPLATE_PROPERTY_NAME, "mainSubServiceTemplateName"));

        NodeTemplate nodeTemplate = new NodeTemplate();
        nodeTemplate.setProperties(nodeTemplatePropertyMap);
        Map<String, NodeTemplate> nodeTemplateMap = Collections.singletonMap(ToscaConstants
                .SERVICE_TEMPLATE_FILTER_PROPERTY_NAME, nodeTemplate);
        serviceTemplate.getTopology_template().setNode_templates(nodeTemplateMap);

        Assert.assertTrue(ToscaUtil.getSubstitutableGroupMemberId("main.yaml", serviceTemplate).isPresent());
    }

    @Test
    public void testGetSubstitutableGroupMemberIdNotSubstitutable() {
        ServiceTemplate serviceTemplate = new ServiceTemplate();
        serviceTemplate.setTopology_template(new TopologyTemplate());

        Map<String, Object> nodeTemplatePropertyMap = Collections.singletonMap(ToscaConstants
                .SUBSTITUTE_SERVICE_TEMPLATE_PROPERTY_NAME, "subServiceTemplateName");

        NodeTemplate nodeTemplate = new NodeTemplate();
        nodeTemplate.setProperties(nodeTemplatePropertyMap);
        Map<String, NodeTemplate> nodeTemplateMap = Collections.singletonMap(ToscaConstants
                .SERVICE_TEMPLATE_FILTER_PROPERTY_NAME, nodeTemplate);
        serviceTemplate.getTopology_template().setNode_templates(nodeTemplateMap);

        Assert.assertFalse(ToscaUtil.getSubstitutableGroupMemberId("main.yaml", serviceTemplate).isPresent());
    }

    @Test
    public void testAddServiceTemplateToMapWithKeyFileName() {
        Map<String, ServiceTemplate> serviceTemplateMap = new HashMap<>();
        ServiceTemplate serviceTemplate = new ServiceTemplate();

        ToscaUtil.addServiceTemplateToMapWithKeyFileName(serviceTemplateMap, serviceTemplate);

        Assert.assertEquals(1, serviceTemplateMap.size());
    }

    @Test
    public void testGetServiceTemplateFileNameWithTemplateName() {
        Assert.assertEquals("nestedServiceTemplate.yaml", ToscaUtil.getServiceTemplateFileName("nested"));
    }
}