blob: f63cab0a5a0ae6d0c056b322da523fb8286c6c68 [file] [log] [blame]
SureshBR0bc64992015-12-03 16:38:02 +05301/*
2 * Copyright 2014-2015 Open Networking Laboratory
3 *
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.resources;
17
18import static org.easymock.EasyMock.createMock;
19import static org.easymock.EasyMock.expect;
20import static org.easymock.EasyMock.replay;
21import static org.hamcrest.Matchers.is;
22import static org.hamcrest.Matchers.notNullValue;
23import static org.junit.Assert.assertThat;
24import static org.onosproject.net.NetTestTools.device;
25import static org.onosproject.net.NetTestTools.did;
26
27import org.junit.After;
28import org.junit.Before;
29import org.junit.Test;
30import org.onlab.osgi.ServiceDirectory;
31import org.onlab.osgi.TestServiceDirectory;
32import org.onlab.rest.BaseResource;
33import org.onosproject.codec.CodecService;
34import org.onosproject.net.Device;
35import org.onosproject.net.DeviceId;
36import org.onosproject.vtnrsc.classifier.ClassifierService;
37import org.onosproject.vtnweb.web.SfcCodecContext;
38
39import com.eclipsesource.json.JsonObject;
40import com.google.common.collect.ImmutableList;
41import com.sun.jersey.api.client.WebResource;
42/**
43 * Unit tests for classifier REST APIs.
44 */
45public class ClassifierResourceTest extends VtnResourceTest {
46
47 final ClassifierService classifierService = createMock(ClassifierService.class);
48
49 /**
50 * Sets up the global values for all the tests.
51 */
52 @Before
53 public void setUpTest() {
54
55 SfcCodecContext context = new SfcCodecContext();
56 ServiceDirectory testDirectory = new TestServiceDirectory().add(ClassifierService.class, classifierService)
57 .add(CodecService.class, context.codecManager());
58 BaseResource.setServiceDirectory(testDirectory);
59
60 }
61
62 /**
63 * Cleans up.
64 */
65 @After
66 public void tearDownTest() {
67 }
68
69 /**
70 * Tests the result of the rest api GET when there are no classifiers.
71 */
72 @Test
73 public void testClassifiersEmpty() {
74
75 expect(classifierService.getClassifiers()).andReturn(null).anyTimes();
76 replay(classifierService);
77 final WebResource rs = resource();
78 final String response = rs.path("classifiers").get(String.class);
79 assertThat(response, is("{\"classifiers\":[]}"));
80 }
81
82 /**
83 * Tests the result of a rest api GET for classifiers.
84 */
85 @Test
86 public void testClassifiers() {
87
88 DeviceId devId1 = did("dev1");
89 Device device1 = device("dev1");
90
91 expect(classifierService.getClassifiers()).andReturn(ImmutableList.of(devId1)).anyTimes();
92 replay(classifierService);
93
94 final WebResource rs = resource();
95 final String response = rs.path("classifiers").get(String.class);
96 final JsonObject result = JsonObject.readFrom(response);
97 assertThat(result, notNullValue());
98 }
99}