ee23ebd438e480e2a52f4c6dfe1e751700b6db88
[so.git] / bpmn / MSOCoreBPMN / src / test / java / org / onap / so / bpmn / core / domain / NetworkResourceTest.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 package org.onap.so.bpmn.core.domain;
21
22 import static org.junit.Assert.*;
23
24 import com.fasterxml.jackson.databind.ObjectMapper;
25 import org.junit.Test;
26
27 import java.io.IOException;
28
29 public class NetworkResourceTest {
30         private NetworkResource nr = new NetworkResource();
31
32         @Test
33         public void testNetworkResource() {
34                 nr.setNetworkType("networkType");
35                 nr.setNetworkRole("networkRole");
36                 nr.setNetworkTechnology("networkTechnology");
37                 nr.setNetworkScope("networkScope");
38                 assertEquals(nr.getNetworkType(), "networkType");
39                 assertEquals(nr.getNetworkRole(), "networkRole");
40                 assertEquals(nr.getNetworkTechnology(), "networkTechnology");
41                 assertEquals(nr.getNetworkScope(), "networkScope");
42                 
43         }
44
45         @Test
46         public void networkResourceMapperTest() throws IOException {
47                 String jsonStr = "{\"networkScope\": \"code123\", \"resourceInput\": \"sample\"}";
48                 ObjectMapper objectMapper = new ObjectMapper();
49                 NetworkResource networkResource = objectMapper.readValue(jsonStr, NetworkResource.class);
50
51                 assertTrue(networkResource != null);
52         }
53
54 }