Springboot 2.0 upgrade
[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
24 import org.junit.Before;
25 import org.junit.Test;
26 import org.mockito.InjectMocks;
27 import org.onap.so.bpmn.BaseTaskTest;
28 import org.onap.so.bpmn.servicedecomposition.bbobjects.CloudRegion;
29
30 public class AssignNetworkBBUtilsTest extends BaseTaskTest {
31         
32         @InjectMocks
33         private AssignNetworkBBUtils nonMockAssignNetworkBBUtils = new AssignNetworkBBUtils();
34         
35         private CloudRegion cloudRegion;
36         
37         @Before
38         public void before() {
39                 cloudRegion = setCloudRegion();
40         }
41         
42         @Test
43         public void getCloudRegionTest25() throws Exception {
44                 cloudRegion.setCloudRegionVersion("2.5");
45                 
46                 nonMockAssignNetworkBBUtils.getCloudRegion(execution);
47
48                 assertEquals(cloudRegion.getLcpCloudRegionId(), execution.getVariable("cloudRegionPo"));
49                 assertEquals("AAIAIC25", execution.getVariable("cloudRegionSdnc"));
50         }
51         
52         @Test
53         public void getCloudRegionTest30() throws Exception {
54                 cloudRegion.setCloudRegionVersion("3.0");
55                 
56                 nonMockAssignNetworkBBUtils.getCloudRegion(execution);
57
58                 assertEquals(cloudRegion.getLcpCloudRegionId(), execution.getVariable("cloudRegionPo"));
59                 assertEquals(cloudRegion.getLcpCloudRegionId(), execution.getVariable("cloudRegionSdnc"));
60         }
61 }