License agreement changes
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / client / cds / beans / ConfigAssignRequestPnfTest.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 java.util.HashMap;
26 import java.util.Map;
27 import org.junit.Test;
28
29 public class ConfigAssignRequestPnfTest {
30     ConfigAssignRequestPnf configAssignRequestPnf = new ConfigAssignRequestPnf();
31     ConfigAssignPropertiesForPnf configAssignPropertiesForPnf = new ConfigAssignPropertiesForPnf();
32     private Map<String, Object> userParam = new HashMap<String, Object>();
33     private String resolutionKey;
34
35     @Test
36     public final void testConfigAssignRequestPnfTest() {
37         configAssignRequestPnf.setResolutionKey("resolution-key");
38         configAssignRequestPnf.setConfigAssignPropertiesForPnf(configAssignPropertiesForPnf);
39         assertNotNull(configAssignRequestPnf.getResolutionKey());
40         assertNotNull(configAssignRequestPnf.getConfigAssignPropertiesForPnf());
41
42         assertEquals("resolution-key", configAssignRequestPnf.getResolutionKey());
43         assertEquals(configAssignPropertiesForPnf, configAssignRequestPnf.getConfigAssignPropertiesForPnf());
44     }
45
46     @Test
47     public void testtoString() {
48         userParam.put("Instance1", "instance1value");
49         configAssignPropertiesForPnf.setPnfCustomizationUuid("pnf-customization-uuid");
50         configAssignPropertiesForPnf.setPnfId("pnf-id");
51         configAssignPropertiesForPnf.setPnfName("pnf-name");
52         configAssignPropertiesForPnf.setServiceInstanceId("service-instance-id");
53         configAssignPropertiesForPnf.setServiceModelUuid("service-model-uuid");
54         configAssignPropertiesForPnf.setUserParam("user_params", userParam);
55         configAssignRequestPnf.setConfigAssignPropertiesForPnf(configAssignPropertiesForPnf);
56         final StringBuilder sb = new StringBuilder("{\"config-assign-request\":{");
57         sb.append("\"resolution-key\":").append("\"").append(resolutionKey).append("\"");
58         sb.append(", \"config-assign-properties\":").append(configAssignPropertiesForPnf.toString());
59         sb.append('}');
60         sb.append('}');
61         String Expexted = sb.toString();
62
63         assertEquals(Expexted, configAssignRequestPnf.toString());
64
65     }
66 }