blob: 34930eecaef7377c46fc21b669fa42ac1f24d2c9 [file] [log] [blame]
SureshBR28ab3912015-11-06 11:27:36 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
SureshBR28ab3912015-11-06 11:27:36 +05303 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.vtnweb.web;
17
18import static org.hamcrest.MatcherAssert.assertThat;
19import static org.hamcrest.Matchers.is;
20import static org.hamcrest.Matchers.notNullValue;
21
22import java.io.IOException;
23import java.io.InputStream;
24
25import org.junit.Before;
26import org.junit.Test;
27import org.onosproject.codec.JsonCodec;
28import org.onosproject.vtnrsc.PortPairGroup;
29import org.onosproject.vtnrsc.PortPairGroupId;
30import org.onosproject.vtnrsc.TenantId;
31
32import com.fasterxml.jackson.databind.JsonNode;
33import com.fasterxml.jackson.databind.ObjectMapper;
34import com.fasterxml.jackson.databind.node.ObjectNode;
35
36/**
37 * Flow rule codec unit tests.
38 */
39public class PortPairGroupCodecTest {
40
41 SfcCodecContext context;
42 JsonCodec<PortPairGroup> portPairGroupCodec;
43 /**
44 * Sets up for each test. Creates a context and fetches the flow rule
45 * codec.
46 */
47 @Before
48 public void setUp() {
49 context = new SfcCodecContext();
50 portPairGroupCodec = context.codec(PortPairGroup.class);
51 assertThat(portPairGroupCodec, notNullValue());
52 }
53
54 /**
55 * Reads in a rule from the given resource and decodes it.
56 *
57 * @param resourceName resource to use to read the JSON for the rule
58 * @return decoded flow rule
59 * @throws IOException if processing the resource fails
60 */
61 private PortPairGroup getPortPairGroup(String resourceName) throws IOException {
62 InputStream jsonStream = PortPairGroupCodecTest.class
63 .getResourceAsStream(resourceName);
64 ObjectMapper mapper = new ObjectMapper();
65 JsonNode json = mapper.readTree(jsonStream);
66 assertThat(json, notNullValue());
67 PortPairGroup portPairGroup = portPairGroupCodec.decode((ObjectNode) json, context);
68 assertThat(portPairGroup, notNullValue());
69 return portPairGroup;
70 }
71
72 /**
73 * Checks that a simple rule decodes properly.
74 *
75 * @throws IOException if the resource cannot be processed
76 */
77 @Test
78 public void codecPortPairGroupTest() throws IOException {
79
80 PortPairGroup portPairGroup = getPortPairGroup("portPairGroup.json");
81
82 assertThat(portPairGroup, notNullValue());
83
84 PortPairGroupId portPairGroupId = PortPairGroupId.of("4512d643-24fc-4fae-af4b-321c5e2eb3d1");
85 TenantId tenantId = TenantId.tenantId("d382007aa9904763a801f68ecf065cf5");
86
87 assertThat(portPairGroup.portPairGroupId().toString(), is(portPairGroupId.toString()));
88 assertThat(portPairGroup.name(), is("PG1"));
89 assertThat(portPairGroup.tenantId().toString(), is(tenantId.toString()));
90 assertThat(portPairGroup.description(), is("Two port-pairs"));
91 assertThat(portPairGroup.portPairs(), notNullValue());
92 }
93}