aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/merge/GlobalInputsFilteringBusinessLogicTest.java
blob: 89b82b91d21e3a25755f8f6580181f157e50885b (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
package org.openecomp.sdc.be.components.merge;

import com.google.common.collect.Sets;
import fj.data.Either;
import org.junit.Before;
import org.junit.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.MockitoAnnotations;
import org.openecomp.sdc.be.components.impl.generic.GenericTypeBusinessLogic;
import org.openecomp.sdc.be.components.utils.ObjectGenerator;
import org.openecomp.sdc.be.dao.api.ActionStatus;
import org.openecomp.sdc.be.impl.ComponentsUtils;
import org.openecomp.sdc.be.model.InputDefinition;
import org.openecomp.sdc.be.model.Resource;
import org.openecomp.sdc.be.model.jsontitan.operations.ToscaOperationFacade;
import org.openecomp.sdc.be.model.operations.api.StorageOperationStatus;

import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.verifyZeroInteractions;
import static org.mockito.Mockito.when;

public class GlobalInputsFilteringBusinessLogicTest {

    private static final String GENERIC_TOSCA_TYPE = "myGenericType";

    @InjectMocks
    private GlobalInputsFilteringBusinessLogic testInstance;

    @Mock
    private GenericTypeBusinessLogic genericTypeBusinessLogicMock;

    @Mock
    private ToscaOperationFacade toscaOperationFacadeMock;

    @Mock
    private ComponentsUtils componentsUtils;

    @Before
    public void setUp() throws Exception {
        MockitoAnnotations.initMocks(this);
    }

    @Test
    public void testFilterGlobalInputs() throws Exception {
        Resource mockResource = Mockito.mock(Resource.class);
        String myGenericType = GENERIC_TOSCA_TYPE;
        String[] genericProperties = {"property1", "property2"};
        String[] allInputs = {"property1", "property2", "property3", "property4"};
        when(mockResource.fetchGenericTypeToscaNameFromConfig()).thenReturn(myGenericType);
        when(mockResource.getInputs()).thenReturn(ObjectGenerator.buildInputs(allInputs));
        Resource genericNodeType = ObjectGenerator.buildResourceWithProperties(genericProperties);
        when(toscaOperationFacadeMock.getLatestCertifiedNodeTypeByToscaResourceName(myGenericType)).thenReturn(Either.left(genericNodeType));
        when(genericTypeBusinessLogicMock.generateInputsFromGenericTypeProperties(genericNodeType)).thenReturn(ObjectGenerator.buildInputs(genericProperties));
        Either<List<InputDefinition>, ActionStatus> globalInputsEither = testInstance.filterGlobalInputs(mockResource);
        verifyFilteredOnlyGlobalInputs(globalInputsEither, genericProperties);
    }

    @Test
    public void testFilterGlobalInputs_errorGettingGenericType_convertToActionStatusAndReturn() throws Exception {
        Resource mockResource = Mockito.mock(Resource.class);
        when(mockResource.fetchGenericTypeToscaNameFromConfig()).thenReturn(GENERIC_TOSCA_TYPE);
        when(toscaOperationFacadeMock.getLatestCertifiedNodeTypeByToscaResourceName(GENERIC_TOSCA_TYPE)).thenReturn(Either.right(StorageOperationStatus.GENERAL_ERROR));
        when(componentsUtils.convertFromStorageResponse(StorageOperationStatus.GENERAL_ERROR)).thenReturn(ActionStatus.GENERAL_ERROR);
        Either<List<InputDefinition>, ActionStatus> globalInputsEither = testInstance.filterGlobalInputs(mockResource);
        assertTrue(globalInputsEither.isRight());
        assertEquals(ActionStatus.GENERAL_ERROR, globalInputsEither.right().value());
        verifyZeroInteractions(genericTypeBusinessLogicMock);
    }

    private void verifyFilteredOnlyGlobalInputs(Either<List<InputDefinition>, ActionStatus> globalInputsEither, String[] genericProperties) {
        assertTrue(globalInputsEither.isLeft());
        List<InputDefinition> globalInputs = globalInputsEither.left().value();
        assertEquals(2, globalInputs.size());
        Set<String> actualGlobalInputNames = globalInputs.stream().map(InputDefinition::getName).collect(Collectors.toSet());
        assertEquals(Sets.newHashSet(genericProperties), actualGlobalInputNames);
    }
}