Containerization feature of SO
[so.git] / adapters / mso-adapter-utils / src / test / java / org / onap / so / cloudify / beans / DeploymentInfoTest.java
1 /*
2 * ============LICENSE_START=======================================================
3  * ONAP : SO
4  * ================================================================================
5  * Copyright (C) 2018 TechMahindra
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
21 package org.onap.so.cloudify.beans;
22
23 import static org.mockito.Mockito.mock;
24 import java.util.HashMap;
25 import java.util.Map;
26 import org.junit.Test;
27 import org.mockito.Mock;
28 import org.onap.so.cloudify.v3.model.Deployment;
29 import org.onap.so.cloudify.v3.model.DeploymentOutputs;
30 import org.onap.so.cloudify.v3.model.Execution;
31 import org.powermock.api.mockito.PowerMockito;
32
33 public class DeploymentInfoTest {
34     
35     @Mock
36     DeploymentStatus status;
37     
38     @Mock
39     DeploymentOutputs out;
40     
41     @Mock
42     Execution execution;
43     
44     @Mock
45     Deployment deployment;
46
47     @Test
48     public void test() {
49         Deployment deployment=mock(Deployment.class);
50         Map<String,Object> dep=new HashMap();
51         Map<String,Object> outputs = new HashMap<String,Object>();
52         Map<String,Object> inputs = new HashMap<String,Object>();
53         inputs.put("id",dep);
54         status=DeploymentStatus.CREATED;
55         outputs.put("id", out);
56         dep.put("id", outputs);
57         DeploymentInfo dinfo=new DeploymentInfo(deployment);
58         DeploymentInfo dinfi=new DeploymentInfo("id");
59         DeploymentInfo din=new DeploymentInfo("id",outputs);
60         DeploymentInfo dfo=new DeploymentInfo("id", status);
61         DeploymentInfo dfoi=new DeploymentInfo(deployment, out, execution);
62         dinfo=PowerMockito.spy(new DeploymentInfo());
63         dinfo.setId("id");
64         dinfi.setInputs(inputs);
65         din.setStatus(status);
66         din.setOutputs(outputs); 
67         assert(din.toString()!=null);
68         assert(din.getOutputs().equals(outputs));
69         assert(din.getId().equals("id"));
70         assert(din.getStatus().equals(status));
71         din.getLastAction();
72         din.getErrorMessage();
73         din.getActionStatus();
74     }
75
76 }