Merge "Add subscription for notifications"
[so.git] / bpmn / so-bpmn-tasks / src / test / java / org / onap / so / bpmn / infrastructure / flowspecific / tasks / AssignNetworkBBUtilsTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.bpmn.infrastructure.flowspecific.tasks;
21
22 import static org.junit.Assert.assertEquals;
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.mockito.InjectMocks;
26 import org.onap.so.bpmn.BaseTaskTest;
27 import org.onap.so.bpmn.servicedecomposition.bbobjects.CloudRegion;
28
29 public class AssignNetworkBBUtilsTest extends BaseTaskTest {
30
31     @InjectMocks
32     private AssignNetworkBBUtils nonMockAssignNetworkBBUtils = new AssignNetworkBBUtils();
33
34     private CloudRegion cloudRegion;
35
36     @Before
37     public void before() {
38         cloudRegion = setCloudRegion();
39     }
40
41     @Test
42     public void getCloudRegionTest25() throws Exception {
43         cloudRegion.setCloudRegionVersion("2.5");
44
45         nonMockAssignNetworkBBUtils.getCloudRegion(execution);
46
47         assertEquals(cloudRegion.getLcpCloudRegionId(), execution.getVariable("cloudRegionPo"));
48         assertEquals("AAIAIC25", execution.getVariable("cloudRegionSdnc"));
49     }
50
51     @Test
52     public void getCloudRegionTest30() throws Exception {
53         cloudRegion.setCloudRegionVersion("3.0");
54
55         nonMockAssignNetworkBBUtils.getCloudRegion(execution);
56
57         assertEquals(cloudRegion.getLcpCloudRegionId(), execution.getVariable("cloudRegionPo"));
58         assertEquals(cloudRegion.getLcpCloudRegionId(), execution.getVariable("cloudRegionSdnc"));
59     }
60 }