FlowObjectiveResourceTest.java
5.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
* Copyright 2016 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.rest;
import com.eclipsesource.json.Json;
import com.eclipsesource.json.JsonObject;
import org.hamcrest.Matchers;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.onlab.osgi.ServiceDirectory;
import org.onlab.osgi.TestServiceDirectory;
import org.onlab.rest.BaseResource;
import org.onosproject.codec.CodecService;
import org.onosproject.codec.impl.CodecManager;
import org.onosproject.core.CoreService;
import org.onosproject.net.NetTestTools;
import org.onosproject.net.flowobjective.FlowObjectiveService;
import javax.ws.rs.client.Entity;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import java.io.InputStream;
import java.net.HttpURLConnection;
import static org.easymock.EasyMock.anyObject;
import static org.easymock.EasyMock.anyShort;
import static org.easymock.EasyMock.createMock;
import static org.easymock.EasyMock.expect;
import static org.easymock.EasyMock.expectLastCall;
import static org.easymock.EasyMock.replay;
import static org.easymock.EasyMock.verify;
import static org.hamcrest.Matchers.hasSize;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.notNullValue;
import static org.junit.Assert.assertThat;
import static org.onosproject.net.NetTestTools.APP_ID;
/**
* Unit tests for flow objectives REST APIs.
*/
public class FlowObjectiveResourceTest extends ResourceTest {
final FlowObjectiveService mockFlowObjectiveService = createMock(FlowObjectiveService.class);
CoreService mockCoreService = createMock(CoreService.class);
public static final String REST_APP_ID = "org.onosproject.rest";
/**
* Sets up the global values for all the tests.
*/
@Before
public void setUpTest() {
// Mock Core Service
expect(mockCoreService.getAppId(anyShort()))
.andReturn(NetTestTools.APP_ID).anyTimes();
expect(mockCoreService.registerApplication(REST_APP_ID))
.andReturn(APP_ID).anyTimes();
replay(mockCoreService);
// Register the services needed for the test
final CodecManager codecService = new CodecManager();
codecService.activate();
ServiceDirectory testDirectory =
new TestServiceDirectory()
.add(FlowObjectiveService.class, mockFlowObjectiveService)
.add(CodecService.class, codecService)
.add(CoreService.class, mockCoreService);
BaseResource.setServiceDirectory(testDirectory);
}
/**
* Cleans up and verifies the mocks.
*/
@After
public void tearDownTest() {
verify(mockFlowObjectiveService);
verify(mockCoreService);
}
/**
* Tests creating a filtering objective with POST.
*/
@Test
public void testFilteringObjectivePost() {
mockFlowObjectiveService.filter(anyObject(), anyObject());
prepareService();
testObjectiveCreation("post-filter-objective.json", "of:0000000000000001", "filter");
}
/**
* Tests creating a forwarding objective with POST.
*/
@Test
public void testForwardingObjectivePost() {
mockFlowObjectiveService.forward(anyObject(), anyObject());
prepareService();
testObjectiveCreation("post-forward-objective.json", "of:0000000000000001", "forward");
}
/**
* Tests creating a next objective with POST.
*/
@Test
public void testNextObjectivePost() {
mockFlowObjectiveService.next(anyObject(), anyObject());
prepareService();
testObjectiveCreation("post-next-objective.json", "of:0000000000000001", "next");
}
/**
* Tests obtaining a global unique nextId with GET.
*/
@Test
public void testNextId() {
expect(mockFlowObjectiveService.allocateNextId()).andReturn(10).anyTimes();
prepareService();
WebTarget wt = target();
final String response = wt.path("flowobjectives/next").request().get(String.class);
final JsonObject result = Json.parse(response).asObject();
assertThat(result, notNullValue());
assertThat(result.names(), hasSize(1));
assertThat(result.names().get(0), is("nextId"));
final int jsonNextId = result.get("nextId").asInt();
assertThat(jsonNextId, is(10));
}
private void prepareService() {
expectLastCall();
replay(mockFlowObjectiveService);
}
/**
* A base class for testing various objective creation.
*
* @param jsonFile json file path
* @param deviceId device id in string format
* @param method objective method
*/
private void testObjectiveCreation(String jsonFile, String deviceId, String method) {
WebTarget wt = target();
InputStream jsonStream = FlowsResourceTest.class
.getResourceAsStream(jsonFile);
StringBuilder sb = new StringBuilder();
sb.append("flowobjectives");
sb.append("/");
sb.append(deviceId);
sb.append("/");
sb.append(method);
Response response = wt.path(sb.toString())
.request(MediaType.APPLICATION_JSON_TYPE)
.post(Entity.json(jsonStream));
assertThat(response.getStatus(), is(HttpURLConnection.HTTP_CREATED));
String location = response.getLocation().getPath();
assertThat(location, Matchers.startsWith("/" + sb.toString()));
}
}