License agreement changes
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / client / cds / beans / ConfigDeployRequestVnfTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2019 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.client.cds.beans;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25 import org.junit.Test;
26
27 public class ConfigDeployRequestVnfTest {
28
29     ConfigDeployRequestVnf configDeployRequestVnf = new ConfigDeployRequestVnf();
30     private String resolutionKey;
31     ConfigDeployPropertiesForVnf configDeployPropertiesForVnf = new ConfigDeployPropertiesForVnf();
32
33     @Test
34     public final void testConfigDeployRequestVnf() {
35         configDeployRequestVnf.setResolutionKey("resolution-key");
36         configDeployRequestVnf.setConfigDeployPropertiesForVnf(configDeployPropertiesForVnf);
37         assertNotNull(configDeployRequestVnf.getResolutionKey());
38         assertNotNull(configDeployRequestVnf.getConfigDeployPropertiesForVnf());
39         assertEquals("resolution-key", configDeployRequestVnf.getResolutionKey());
40         assertEquals(configDeployPropertiesForVnf, configDeployRequestVnf.getConfigDeployPropertiesForVnf());
41     }
42
43     @Test
44     public void testtoString() {
45         configDeployPropertiesForVnf.setServiceInstanceId("service-instance-id");
46         configDeployPropertiesForVnf.setServiceModelUuid("service-model-uuid");
47         configDeployPropertiesForVnf.setVnfCustomizationUuid("vnf-customization-uuid");
48         configDeployPropertiesForVnf.setVnfId("vnf-id");
49         configDeployPropertiesForVnf.setVnfName("vnf-name");
50         configDeployRequestVnf.setConfigDeployPropertiesForVnf(configDeployPropertiesForVnf);
51         final StringBuilder sb = new StringBuilder("{\"config-deploy-request\":{");
52         sb.append("\"resolution-key\":").append("\"").append(resolutionKey).append("\"");
53         sb.append(", \"config-deploy-properties\":").append(configDeployPropertiesForVnf.toString());
54         sb.append('}');
55         sb.append('}');
56         String Expexted = sb.toString();
57
58         assertEquals(Expexted, configDeployRequestVnf.toString());
59     }
60
61 }