summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/DataTypesImportManagerTest.java
blob: e4e63fc3b77703efaae277177b251dcb5c47966b (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
118
119
120
121
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.sdc.be.components.impl;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.Mockito.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.when;
import fj.data.Either;
import java.util.Collections;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.ArgumentCaptor;
import org.mockito.InjectMocks;
import org.mockito.Mockito;
import org.mockito.MockitoAnnotations;
import org.mockito.Spy;
import org.openecomp.sdc.be.dao.janusgraph.JanusGraphGenericDao;
import org.openecomp.sdc.be.impl.ComponentsUtils;
import org.openecomp.sdc.be.model.DataTypeDefinition;
import org.openecomp.sdc.be.model.operations.api.StorageOperationStatus;
import org.openecomp.sdc.be.model.operations.impl.ModelOperation;
import org.openecomp.sdc.be.model.operations.impl.PropertyOperation;

public class DataTypesImportManagerTest {

    private static final ComponentsUtils componentsUtils = mock(ComponentsUtils.class);
    private static final JanusGraphGenericDao janusGraphGenericDao = mock(JanusGraphGenericDao.class);
    private static final PropertyOperation propertyOperation = mock(PropertyOperation.class);
    private static final ModelOperation modelOperation = mock(ModelOperation.class);
    @Spy
    private CommonImportManager commonImportManager = new CommonImportManager(componentsUtils, propertyOperation, modelOperation);

    @InjectMocks
    private DataTypeImportManager dataTypeImportManager = new DataTypeImportManager();

    private AutoCloseable closeable;

    @BeforeEach
    public void openMocks() {
        closeable = MockitoAnnotations.openMocks(this);
    }

    @AfterEach
    public void releaseMocks() throws Exception {
        closeable.close();
    }

    @Test
    public void testCreateDataTypes() {

        DataTypeDefinition rootDataTypeDef = new DataTypeDefinition();
        rootDataTypeDef.setName("tosca.datatypes.Root");
        rootDataTypeDef.setProperties(Collections.emptyList());
        DataTypeDefinition testADataTypeDef = new DataTypeDefinition();
        testADataTypeDef.setName("tosca.datatypes.test_a");
        testADataTypeDef.setProperties(Collections.emptyList());
        DataTypeDefinition testCDataTypeDef = new DataTypeDefinition();
        testCDataTypeDef.setName("tosca.datatypes.test_c");
        testCDataTypeDef.setProperties(Collections.emptyList());
        when(propertyOperation.getDataTypeByName("tosca.datatypes.Root", null)).thenReturn(Either.left(rootDataTypeDef));
        when(propertyOperation.getDataTypeByName("tosca.datatypes.test_c", null)).thenReturn(Either.left(testCDataTypeDef));

        when(propertyOperation.getJanusGraphGenericDao()).thenReturn(janusGraphGenericDao);
        when(propertyOperation.getDataTypeByUidWithoutDerived("tosca.datatypes.Root.datatype", true)).thenReturn(Either.left(rootDataTypeDef));
        when(propertyOperation.getDataTypeByUidWithoutDerived("tosca.datatypes.test_a.datatype", true))
                .thenReturn(Either.right(StorageOperationStatus.NOT_FOUND));
        when(propertyOperation.getDataTypeByUidWithoutDerived("tosca.datatypes.test_b.datatype", true))
                .thenReturn(Either.right(StorageOperationStatus.NOT_FOUND));
        when(propertyOperation.getDataTypeByUidWithoutDerived("tosca.datatypes.test_c.datatype", true))
                .thenReturn(Either.right(StorageOperationStatus.NOT_FOUND));
        when(propertyOperation.addDataType(any())).thenReturn(Either.left(testADataTypeDef));

        String dataTypeYml = 
                "tosca.datatypes.test_a:\n" + 
                "  derived_from: tosca.datatypes.Root\n" + 
                "  properties:\n" + 
                "    prop2:\n" +
                "      type: tosca.datatypes.test_b\n" +
                "tosca.datatypes.test_b:\n" +
                "  derived_from: tosca.datatypes.test_c\n" +
                "  properties:\n" +
                "    prop2:\n" +
                "      type: string\n" +
                "tosca.datatypes.test_c:\n" +
                "  derived_from: tosca.datatypes.Root\n" +
                "  properties:\n" +
                "    prop1:\n" +
                "      type: string";
        dataTypeImportManager.createDataTypes(dataTypeYml, "", false);

        ArgumentCaptor<DataTypeDefinition> dataTypeDefinitionCaptor = ArgumentCaptor.forClass(DataTypeDefinition.class);
        Mockito.verify(propertyOperation, times(3)).addDataType(dataTypeDefinitionCaptor.capture());

        assertEquals("tosca.datatypes.test_c", dataTypeDefinitionCaptor.getAllValues().get(0).getName());
        assertEquals("tosca.datatypes.test_b", dataTypeDefinitionCaptor.getAllValues().get(1).getName());
        assertEquals("tosca.datatypes.test_a", dataTypeDefinitionCaptor.getAllValues().get(2).getName());
    }


}