Enable ControllerExecutionBB for service scope
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / client / cds / ServiceCDSRequestProviderTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.so.client.cds;
21
22 import com.fasterxml.jackson.databind.JsonNode;
23 import com.fasterxml.jackson.databind.ObjectMapper;
24 import org.junit.Test;
25 import org.mockito.InjectMocks;
26 import org.mockito.Mock;
27 import org.onap.so.bpmn.servicedecomposition.bbobjects.ServiceInstance;
28 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
29 import static org.assertj.core.api.Assertions.assertThat;
30 import static org.junit.Assert.assertNotNull;
31 import static org.junit.Assert.assertTrue;
32 import static org.mockito.Mockito.*;
33
34 public class ServiceCDSRequestProviderTest extends AbstractVnfCDSRequestProviderTest {
35
36     @InjectMocks
37     private ServiceCDSRequestProvider serviceCDSRequestProvider;
38
39     @Mock
40     private ConfigureInstanceParamsForService configureInstanceParamsForService;
41
42     @Test
43     public void testRequestPayloadForCreateService() throws Exception {
44         // given
45         setScopeAndAction(SERVICE_SCOPE, SERVICE_ACTION);
46         ServiceInstance instance = createServiceInstance();
47         buildingBlockExecution.getGeneralBuildingBlock().setServiceInstance(instance);
48
49         // when
50         serviceCDSRequestProvider.setExecutionObject(buildingBlockExecution);
51         String payload = serviceCDSRequestProvider.buildRequestPayload(SERVICE_ACTION).get();
52
53         // verify
54         ObjectMapper mapper = new ObjectMapper();
55         JsonNode payloadJson = mapper.readTree(payload);
56         JsonNode requestNode = payloadJson.findValue("create-request");
57         JsonNode propertiesNode = payloadJson.findValue("create-properties");
58
59         assertNotNull(payload);
60         assertTrue(verfiyJsonFromString(payload));
61         assertThat(requestNode.get("resolution-key").asText()).isEqualTo(SERVICE_INSTANCE_NAME);
62         assertThat(propertiesNode.get("service-instance-id").asText()).isEqualTo(SERVICE_INSTANCE_ID);
63         assertThat(propertiesNode.get("service-model-uuid").asText()).isEqualTo(SERVICE_MODEL_UUID);
64     }
65 }