1
|
|
|
"""Module to test the main napp file.""" |
2
|
1 |
|
import pytest |
3
|
1 |
|
from unittest.mock import patch, MagicMock |
4
|
|
|
|
5
|
1 |
|
from kytos.core.interface import Interface |
6
|
1 |
|
from kytos.lib.helpers import ( |
7
|
|
|
get_interface_mock, |
8
|
|
|
get_switch_mock, |
9
|
|
|
get_controller_mock, |
10
|
|
|
get_link_mock, |
11
|
|
|
get_test_client, |
12
|
|
|
) |
13
|
1 |
|
from kytos.core.rest_api import HTTPException |
14
|
|
|
|
15
|
|
|
|
16
|
|
|
# pylint: disable=too-many-public-methods, too-many-lines |
17
|
1 |
|
class TestMain: |
18
|
|
|
"""Test the Main class.""" |
19
|
|
|
|
20
|
1 |
|
def setup_method(self): |
21
|
|
|
"""Execute steps before each tests.""" |
22
|
|
|
# The decorator run_on_thread is patched, so methods that listen |
23
|
|
|
# for events do not run on threads while tested. |
24
|
|
|
# Decorators have to be patched before the methods that are |
25
|
|
|
# decorated with them are imported. |
26
|
1 |
|
patch("kytos.core.helpers.run_on_thread", lambda x: x).start() |
27
|
|
|
# pylint: disable=import-outside-toplevel |
28
|
1 |
|
from napps.amlight.sdntrace_cp.main import Main |
29
|
|
|
|
30
|
1 |
|
controller = get_controller_mock() |
31
|
1 |
|
self.napp = Main(controller) |
32
|
|
|
|
33
|
1 |
|
sw1 = get_switch_mock("00:00:00:00:00:00:00:01", 0x04) |
34
|
1 |
|
intf_sw1 = get_interface_mock("eth1", 1, sw1) |
35
|
1 |
|
intf_sw1.link = None |
36
|
1 |
|
sw1.get_interface_by_port_no.return_value = intf_sw1 |
37
|
1 |
|
sw2 = get_switch_mock("00:00:00:00:00:00:00:02", 0x04) |
38
|
1 |
|
intf_sw2 = get_interface_mock("eth1", 1, sw2) |
39
|
1 |
|
intf_sw2.link = None |
40
|
1 |
|
sw2.get_interface_by_port_no.return_value = intf_sw2 |
41
|
1 |
|
self.napp.controller.switches = {sw1.dpid: sw1, sw2.dpid: sw2} |
42
|
1 |
|
self.api_client = get_test_client(controller, self.napp) |
43
|
1 |
|
self.base_endpoint = "amlight/sdntrace_cp/v1" |
44
|
1 |
|
self.trace_endpoint = f"{self.base_endpoint}/trace" |
45
|
1 |
|
self.traces_endpoint = f"{self.base_endpoint}/traces" |
46
|
|
|
|
47
|
1 |
|
@patch("napps.amlight.sdntrace_cp.main.Main.match_and_apply") |
48
|
1 |
|
def test_trace_step(self, mock_flow_match): |
49
|
|
|
"""Test trace_step success result.""" |
50
|
1 |
|
mock_flow_match.return_value = ["1"], ["entries"], 1 |
51
|
1 |
|
switch = get_switch_mock("00:00:00:00:00:00:00:01", 0x04) |
52
|
|
|
|
53
|
1 |
|
mock_interface = Interface("interface A", 1, MagicMock()) |
54
|
1 |
|
mock_interface.address = "00:00:00:00:00:00:00:01" |
55
|
|
|
|
56
|
1 |
|
iface1 = get_interface_mock( |
57
|
|
|
"", 1, get_switch_mock("00:00:00:00:00:00:00:01") |
58
|
|
|
) |
59
|
1 |
|
iface2 = get_interface_mock( |
60
|
|
|
"", 2, get_switch_mock("00:00:00:00:00:00:00:02") |
61
|
|
|
) |
62
|
1 |
|
mock_interface.link = get_link_mock(iface1, iface2) |
63
|
1 |
|
mock_interface.link.endpoint_a.port_number = 1 |
64
|
1 |
|
mock_interface.link.endpoint_a.port_number = 2 |
65
|
|
|
|
66
|
|
|
# Patch for utils.find_endpoint |
67
|
1 |
|
switch.get_interface_by_port_no.return_value = mock_interface |
68
|
|
|
|
69
|
1 |
|
entries = MagicMock() |
70
|
|
|
|
71
|
1 |
|
stored_flows = { |
72
|
|
|
"flow": { |
73
|
|
|
"table_id": 0, |
74
|
|
|
"cookie": 84114964, |
75
|
|
|
"hard_timeout": 0, |
76
|
|
|
"idle_timeout": 0, |
77
|
|
|
"priority": 10, |
78
|
|
|
}, |
79
|
|
|
"flow_id": 1, |
80
|
|
|
"state": "installed", |
81
|
|
|
"switch": "00:00:00:00:00:00:00:01", |
82
|
|
|
} |
83
|
|
|
|
84
|
1 |
|
stored_flows_arg = { |
85
|
|
|
"00:00:00:00:00:00:00:01": [stored_flows] |
86
|
|
|
} |
87
|
|
|
|
88
|
1 |
|
result = self.napp.trace_step(switch, entries, stored_flows_arg) |
89
|
|
|
|
90
|
1 |
|
mock_flow_match.assert_called_once() |
91
|
1 |
|
assert result == { |
92
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
93
|
|
|
"in_port": 2, |
94
|
|
|
"out_port": 1, |
95
|
|
|
"entries": ["entries"], |
96
|
|
|
} |
97
|
|
|
|
98
|
1 |
|
@patch("napps.amlight.sdntrace_cp.main.Main.match_and_apply") |
99
|
1 |
|
def test_trace_step__no_endpoint(self, mock_flow_match): |
100
|
|
|
"""Test trace_step without endpoints available for switch/port.""" |
101
|
1 |
|
mock_flow_match.return_value = ["1"], ["entries"], 1 |
102
|
1 |
|
switch = get_switch_mock("00:00:00:00:00:00:00:01", 0x04) |
103
|
|
|
|
104
|
1 |
|
mock_interface = Interface("interface A", 1, MagicMock()) |
105
|
1 |
|
mock_interface.address = "00:00:00:00:00:00:00:01" |
106
|
1 |
|
mock_interface.link = None |
107
|
|
|
|
108
|
|
|
# Patch for utils.find_endpoint |
109
|
1 |
|
switch.get_interface_by_port_no.return_value = mock_interface |
110
|
|
|
|
111
|
1 |
|
entries = MagicMock() |
112
|
|
|
|
113
|
1 |
|
stored_flows = { |
114
|
|
|
"flow": { |
115
|
|
|
"table_id": 0, |
116
|
|
|
"cookie": 84114964, |
117
|
|
|
"hard_timeout": 0, |
118
|
|
|
"idle_timeout": 0, |
119
|
|
|
"priority": 10, |
120
|
|
|
}, |
121
|
|
|
"flow_id": 1, |
122
|
|
|
"state": "installed", |
123
|
|
|
"switch": "00:00:00:00:00:00:00:01", |
124
|
|
|
} |
125
|
|
|
|
126
|
1 |
|
stored_flows_arg = { |
127
|
|
|
"00:00:00:00:00:00:00:01": [stored_flows] |
128
|
|
|
} |
129
|
|
|
|
130
|
1 |
|
result = self.napp.trace_step(switch, entries, stored_flows_arg) |
131
|
|
|
|
132
|
1 |
|
mock_flow_match.assert_called_once() |
133
|
1 |
|
assert result == {"entries": ["entries"], "out_port": 1} |
134
|
|
|
|
135
|
1 |
|
def test_trace_step__no_flow(self): |
136
|
|
|
"""Test trace_step without flows for the switch.""" |
137
|
1 |
|
switch = get_switch_mock("00:00:00:00:00:00:00:01") |
138
|
1 |
|
entries = MagicMock() |
139
|
|
|
|
140
|
1 |
|
stored_flows = { |
141
|
|
|
"flow": { |
142
|
|
|
"table_id": 0, |
143
|
|
|
"cookie": 84114964, |
144
|
|
|
"hard_timeout": 0, |
145
|
|
|
"idle_timeout": 0, |
146
|
|
|
"priority": 10, |
147
|
|
|
}, |
148
|
|
|
"flow_id": 1, |
149
|
|
|
"state": "installed", |
150
|
|
|
"switch": "00:00:00:00:00:00:00:01", |
151
|
|
|
} |
152
|
|
|
|
153
|
1 |
|
stored_flows_arg = { |
154
|
|
|
"00:00:00:00:00:00:00:01": [stored_flows] |
155
|
|
|
} |
156
|
|
|
|
157
|
1 |
|
result = self.napp.trace_step(switch, entries, stored_flows_arg) |
158
|
1 |
|
assert result is None |
159
|
|
|
|
160
|
1 |
|
@patch("napps.amlight.sdntrace_cp.main.Main.trace_step") |
161
|
1 |
|
def test_tracepath(self, mock_trace_step): |
162
|
|
|
"""Test tracepath with success result.""" |
163
|
1 |
|
eth = {"dl_vlan": 100} |
164
|
1 |
|
dpid = {"dpid": "00:00:00:00:00:00:00:01", "in_port": 1} |
165
|
1 |
|
switch = {"switch": dpid, "eth": eth} |
166
|
1 |
|
entries = {"trace": switch} |
167
|
1 |
|
mock_trace_step.return_value = { |
168
|
|
|
"dpid": "00:00:00:00:00:00:00:02", |
169
|
|
|
"in_port": 2, |
170
|
|
|
"out_port": 3, |
171
|
|
|
"entries": entries, |
172
|
|
|
} |
173
|
|
|
|
174
|
1 |
|
stored_flows_arg = { |
175
|
|
|
"00:00:00:00:00:00:00:01": [], |
176
|
|
|
"00:00:00:00:00:00:00:02": [], |
177
|
|
|
} |
178
|
|
|
|
179
|
1 |
|
result = self.napp.tracepath( |
180
|
|
|
entries["trace"]["switch"], |
181
|
|
|
stored_flows_arg |
182
|
|
|
) |
183
|
|
|
|
184
|
1 |
|
assert result[0]["in"]["dpid"] == "00:00:00:00:00:00:00:01" |
185
|
1 |
|
assert result[0]["in"]["port"] == 1 |
186
|
1 |
|
assert result[0]["in"]["type"] == "starting" |
187
|
1 |
|
assert result[0]["out"]["port"] == 3 |
188
|
|
|
|
189
|
1 |
|
assert result[1]["in"]["dpid"] == "00:00:00:00:00:00:00:02" |
190
|
1 |
|
assert result[1]["in"]["port"] == 2 |
191
|
1 |
|
assert result[1]["in"]["type"] == "intermediary" |
192
|
1 |
|
assert result[1]["out"]["port"] == 3 |
193
|
|
|
|
194
|
1 |
|
@patch("napps.amlight.sdntrace_cp.main.Main.trace_step") |
195
|
1 |
|
def test_tracepath_loop(self, mock_trace_step): |
196
|
|
|
"""Test tracepath with success result.""" |
197
|
1 |
|
eth = {"dl_vlan": 100} |
198
|
1 |
|
dpid = {"dpid": "00:00:00:00:00:00:00:01", "in_port": 1} |
199
|
1 |
|
switch = {"switch": dpid, "eth": eth} |
200
|
1 |
|
entries = {"trace": switch} |
201
|
1 |
|
mock_trace_step.return_value = { |
202
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
203
|
|
|
"in_port": 1, |
204
|
|
|
"out_port": 1, |
205
|
|
|
"entries": entries, |
206
|
|
|
} |
207
|
|
|
|
208
|
1 |
|
result = self.napp.tracepath( |
209
|
|
|
entries["trace"]["switch"], |
210
|
|
|
{} |
211
|
|
|
) |
212
|
1 |
|
assert len(result) == 2 |
213
|
|
|
# input interface = output interface |
214
|
1 |
|
assert result[0]["in"]["type"] == "starting" |
215
|
1 |
|
assert result[1]["in"]["type"] == "loop" |
216
|
|
|
|
217
|
1 |
|
def test_has_loop(self): |
218
|
|
|
"""Test has_loop to detect a tracepath with loop.""" |
219
|
1 |
|
trace_result = [ |
220
|
|
|
{ |
221
|
|
|
"in": { |
222
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
223
|
|
|
"port": 2, |
224
|
|
|
}, |
225
|
|
|
"out": { |
226
|
|
|
"port": 1, |
227
|
|
|
}, |
228
|
|
|
}, |
229
|
|
|
{ |
230
|
|
|
"in": { |
231
|
|
|
"dpid": "00:00:00:00:00:00:00:03", |
232
|
|
|
"port": 2, |
233
|
|
|
}, |
234
|
|
|
"out": { |
235
|
|
|
"port": 1, |
236
|
|
|
}, |
237
|
|
|
}, |
238
|
|
|
{ |
239
|
|
|
"in": { |
240
|
|
|
"dpid": "00:00:00:00:00:00:00:03", |
241
|
|
|
"port": 3, |
242
|
|
|
}, |
243
|
|
|
"out": { |
244
|
|
|
"port": 1, |
245
|
|
|
}, |
246
|
|
|
}, |
247
|
|
|
{ |
248
|
|
|
"in": { |
249
|
|
|
"dpid": "00:00:00:00:00:00:00:03", |
250
|
|
|
"port": 3, |
251
|
|
|
}, |
252
|
|
|
"out": { |
253
|
|
|
"port": 1, |
254
|
|
|
}, |
255
|
|
|
}, |
256
|
|
|
] |
257
|
1 |
|
trace_step = { |
258
|
|
|
"dpid": "00:00:00:00:00:00:00:03", |
259
|
|
|
"port": 3, |
260
|
|
|
} |
261
|
|
|
|
262
|
1 |
|
result = self.napp.has_loop(trace_step, trace_result) |
263
|
1 |
|
assert result |
264
|
|
|
|
265
|
1 |
|
def test_has_loop__fail(self): |
266
|
|
|
"""Test has_loop to detect a tracepath with loop.""" |
267
|
1 |
|
trace_result = [ |
268
|
|
|
{ |
269
|
|
|
"in": { |
270
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
271
|
|
|
"port": 2, |
272
|
|
|
}, |
273
|
|
|
"out": { |
274
|
|
|
"port": 1, |
275
|
|
|
}, |
276
|
|
|
}, |
277
|
|
|
{ |
278
|
|
|
"in": { |
279
|
|
|
"dpid": "00:00:00:00:00:00:00:02", |
280
|
|
|
"port": 2, |
281
|
|
|
}, |
282
|
|
|
"out": { |
283
|
|
|
"port": 1, |
284
|
|
|
}, |
285
|
|
|
}, |
286
|
|
|
] |
287
|
1 |
|
trace_step = { |
288
|
|
|
"dpid": "00:00:00:00:00:00:00:03", |
289
|
|
|
"port": 2, |
290
|
|
|
} |
291
|
|
|
|
292
|
1 |
|
result = self.napp.has_loop(trace_step, trace_result) |
293
|
1 |
|
assert not result |
294
|
|
|
|
295
|
1 |
View Code Duplication |
@patch("napps.amlight.sdntrace_cp.main.get_stored_flows") |
|
|
|
|
296
|
1 |
|
async def test_trace(self, mock_stored_flows, event_loop): |
297
|
|
|
"""Test trace rest call.""" |
298
|
1 |
|
self.napp.controller.loop = event_loop |
299
|
1 |
|
payload = { |
300
|
|
|
"trace": { |
301
|
|
|
"switch": { |
302
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
303
|
|
|
"in_port": 1 |
304
|
|
|
}, |
305
|
|
|
"eth": {"dl_vlan": 100}, |
306
|
|
|
} |
307
|
|
|
} |
308
|
1 |
|
stored_flows = { |
309
|
|
|
"flow": { |
310
|
|
|
"table_id": 0, |
311
|
|
|
"cookie": 84114964, |
312
|
|
|
"hard_timeout": 0, |
313
|
|
|
"idle_timeout": 0, |
314
|
|
|
"priority": 10, |
315
|
|
|
"match": {"dl_vlan": 100, "in_port": 1}, |
316
|
|
|
"actions": [ |
317
|
|
|
{"action_type": "push_vlan"}, |
318
|
|
|
{"action_type": "set_vlan", "vlan_id": 200}, |
319
|
|
|
{"action_type": "output", "port": 2} |
320
|
|
|
], |
321
|
|
|
}, |
322
|
|
|
"flow_id": 1, |
323
|
|
|
"state": "installed", |
324
|
|
|
"switch": "00:00:00:00:00:00:00:01", |
325
|
|
|
} |
326
|
1 |
|
mock_stored_flows.return_value = { |
327
|
|
|
"00:00:00:00:00:00:00:01": [stored_flows] |
328
|
|
|
} |
329
|
|
|
|
330
|
1 |
|
resp = await self.api_client.put(self.trace_endpoint, json=payload) |
331
|
1 |
|
assert resp.status_code == 200 |
332
|
1 |
|
current_data = resp.json() |
333
|
1 |
|
result = current_data["result"] |
334
|
|
|
|
335
|
1 |
|
assert len(result) == 1 |
336
|
1 |
|
assert result[0]["dpid"] == "00:00:00:00:00:00:00:01" |
337
|
1 |
|
assert result[0]["port"] == 1 |
338
|
1 |
|
assert result[0]["type"] == "last" |
339
|
1 |
|
assert result[0]["vlan"] == 100 |
340
|
1 |
|
assert result[0]["out"] == {"port": 2, "vlan": 200} |
341
|
|
|
|
342
|
1 |
View Code Duplication |
@patch("napps.amlight.sdntrace_cp.main.get_stored_flows") |
|
|
|
|
343
|
1 |
|
async def test_trace_instructions(self, mock_stored_flows, event_loop): |
344
|
|
|
"""Test trace rest call with instructions.""" |
345
|
1 |
|
self.napp.controller.loop = event_loop |
346
|
1 |
|
payload = { |
347
|
|
|
"trace": { |
348
|
|
|
"switch": { |
349
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
350
|
|
|
"in_port": 1 |
351
|
|
|
}, |
352
|
|
|
"eth": {"dl_vlan": 100}, |
353
|
|
|
} |
354
|
|
|
} |
355
|
1 |
|
stored_flows = { |
356
|
|
|
"flow": { |
357
|
|
|
"table_id": 0, |
358
|
|
|
"cookie": 84114964, |
359
|
|
|
"hard_timeout": 0, |
360
|
|
|
"idle_timeout": 0, |
361
|
|
|
"priority": 10, |
362
|
|
|
"match": {"dl_vlan": 100, "in_port": 1}, |
363
|
|
|
"instructions": [ |
364
|
|
|
{ |
365
|
|
|
"instruction_type": "apply_actions", |
366
|
|
|
"actions": [ |
367
|
|
|
{"action_type": "push_vlan"}, |
368
|
|
|
{"action_type": "set_vlan", "vlan_id": 200}, |
369
|
|
|
{"action_type": "output", "port": 2} |
370
|
|
|
] |
371
|
|
|
} |
372
|
|
|
] |
373
|
|
|
}, |
374
|
|
|
"flow_id": 1, |
375
|
|
|
"state": "installed", |
376
|
|
|
"switch": "00:00:00:00:00:00:00:01", |
377
|
|
|
} |
378
|
1 |
|
mock_stored_flows.return_value = { |
379
|
|
|
"00:00:00:00:00:00:00:01": [stored_flows] |
380
|
|
|
} |
381
|
|
|
|
382
|
1 |
|
resp = await self.api_client.put(self.trace_endpoint, json=payload) |
383
|
1 |
|
assert resp.status_code == 200 |
384
|
1 |
|
current_data = resp.json() |
385
|
1 |
|
result = current_data["result"] |
386
|
|
|
|
387
|
1 |
|
assert len(result) == 1 |
388
|
1 |
|
assert result[0]["dpid"] == "00:00:00:00:00:00:00:01" |
389
|
1 |
|
assert result[0]["port"] == 1 |
390
|
1 |
|
assert result[0]["type"] == "last" |
391
|
1 |
|
assert result[0]["vlan"] == 100 |
392
|
1 |
|
assert result[0]["out"] == {"port": 2, "vlan": 200} |
393
|
|
|
|
394
|
1 |
|
@patch("napps.amlight.sdntrace_cp.main.get_stored_flows") |
395
|
1 |
|
async def test_instructions_no_match(self, mock_stored_flows, event_loop): |
396
|
|
|
"""Test a no match for trace rest call with instructions.""" |
397
|
1 |
|
self.napp.controller.loop = event_loop |
398
|
1 |
|
payload = { |
399
|
|
|
"trace": { |
400
|
|
|
"switch": { |
401
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
402
|
|
|
"in_port": 1 |
403
|
|
|
}, |
404
|
|
|
"eth": {"dl_vlan": 100}, |
405
|
|
|
} |
406
|
|
|
} |
407
|
1 |
|
stored_flows = { |
408
|
|
|
"flow": { |
409
|
|
|
"table_id": 0, |
410
|
|
|
"cookie": 84114964, |
411
|
|
|
"hard_timeout": 0, |
412
|
|
|
"idle_timeout": 0, |
413
|
|
|
"priority": 10, |
414
|
|
|
"match": {"dl_vlan": 100, "in_port": 1}, |
415
|
|
|
"instructions": [ |
416
|
|
|
{ |
417
|
|
|
"instruction_type": "apply_actions", |
418
|
|
|
"actions": [ |
419
|
|
|
{"action_type": "push_vlan"}, |
420
|
|
|
{"action_type": "set_vlan", "vlan_id": 200} |
421
|
|
|
] |
422
|
|
|
} |
423
|
|
|
] |
424
|
|
|
}, |
425
|
|
|
"flow_id": 1, |
426
|
|
|
"state": "installed", |
427
|
|
|
"switch": "00:00:00:00:00:00:00:01", |
428
|
|
|
} |
429
|
1 |
|
mock_stored_flows.return_value = { |
430
|
|
|
"00:00:00:00:00:00:00:01": [stored_flows] |
431
|
|
|
} |
432
|
|
|
|
433
|
1 |
|
resp = await self.api_client.put(self.trace_endpoint, json=payload) |
434
|
1 |
|
assert resp.status_code == 200 |
435
|
1 |
|
current_data = resp.json() |
436
|
1 |
|
result = current_data["result"] |
437
|
1 |
|
assert result == [] |
438
|
|
|
|
439
|
1 |
View Code Duplication |
@patch("napps.amlight.sdntrace_cp.main.get_stored_flows") |
|
|
|
|
440
|
1 |
|
async def test_get_traces(self, mock_stored_flows, event_loop): |
441
|
|
|
"""Test traces rest call.""" |
442
|
1 |
|
self.napp.controller.loop = event_loop |
443
|
1 |
|
payload = [{ |
444
|
|
|
"trace": { |
445
|
|
|
"switch": { |
446
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
447
|
|
|
"in_port": 1 |
448
|
|
|
}, |
449
|
|
|
"eth": {"dl_vlan": 100}, |
450
|
|
|
} |
451
|
|
|
}] |
452
|
|
|
|
453
|
1 |
|
stored_flow = { |
454
|
|
|
"id": 1, |
455
|
|
|
"flow": { |
456
|
|
|
"table_id": 0, |
457
|
|
|
"cookie": 84114964, |
458
|
|
|
"hard_timeout": 0, |
459
|
|
|
"idle_timeout": 0, |
460
|
|
|
"priority": 10, |
461
|
|
|
"match": {"dl_vlan": 100, "in_port": 1}, |
462
|
|
|
"actions": [ |
463
|
|
|
{"action_type": "pop_vlan"}, |
464
|
|
|
{"action_type": "output", "port": 2}, |
465
|
|
|
], |
466
|
|
|
} |
467
|
|
|
} |
468
|
|
|
|
469
|
1 |
|
mock_stored_flows.return_value = { |
470
|
|
|
"00:00:00:00:00:00:00:01": [stored_flow] |
471
|
|
|
} |
472
|
|
|
|
473
|
1 |
|
resp = await self.api_client.put(self.traces_endpoint, json=payload) |
474
|
1 |
|
assert resp.status_code == 200 |
475
|
1 |
|
current_data = resp.json() |
476
|
1 |
|
result1 = current_data["result"] |
477
|
|
|
|
478
|
1 |
|
assert len(result1) == 1 |
479
|
1 |
|
assert len(result1[0]) == 1 |
480
|
1 |
|
assert result1[0][0]["dpid"] == "00:00:00:00:00:00:00:01" |
481
|
1 |
|
assert result1[0][0]["port"] == 1 |
482
|
1 |
|
assert result1[0][0]["type"] == "last" |
483
|
1 |
|
assert result1[0][0]["vlan"] == 100 |
484
|
1 |
|
assert result1[0][0]["out"] == {"port": 2} |
485
|
|
|
|
486
|
1 |
|
@patch("napps.amlight.sdntrace_cp.main.get_stored_flows") |
487
|
1 |
|
async def test_traces(self, mock_stored_flows, event_loop): |
488
|
|
|
"""Test traces rest call""" |
489
|
1 |
|
self.napp.controller.loop = event_loop |
490
|
1 |
|
payload = [ |
491
|
|
|
{ |
492
|
|
|
"trace": { |
493
|
|
|
"switch": { |
494
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
495
|
|
|
"in_port": 1 |
496
|
|
|
}, |
497
|
|
|
"eth": { |
498
|
|
|
"dl_vlan": 100 |
499
|
|
|
} |
500
|
|
|
} |
501
|
|
|
}, |
502
|
|
|
{ |
503
|
|
|
"trace": { |
504
|
|
|
"switch": { |
505
|
|
|
"dpid": "00:00:00:00:00:00:00:0a", |
506
|
|
|
"in_port": 1 |
507
|
|
|
}, |
508
|
|
|
"eth": { |
509
|
|
|
"dl_vlan": 100 |
510
|
|
|
} |
511
|
|
|
} |
512
|
|
|
}, |
513
|
|
|
{ |
514
|
|
|
"trace": { |
515
|
|
|
"switch": { |
516
|
|
|
"dpid": "00:00:00:00:00:00:00:02", |
517
|
|
|
"in_port": 2 |
518
|
|
|
}, |
519
|
|
|
"eth": { |
520
|
|
|
"dl_vlan": 100 |
521
|
|
|
} |
522
|
|
|
} |
523
|
|
|
} |
524
|
|
|
] |
525
|
|
|
|
526
|
1 |
|
stored_flow = { |
527
|
|
|
"id": 1, |
528
|
|
|
"flow": { |
529
|
|
|
"table_id": 0, |
530
|
|
|
"cookie": 84114964, |
531
|
|
|
"hard_timeout": 0, |
532
|
|
|
"idle_timeout": 0, |
533
|
|
|
"priority": 10, |
534
|
|
|
"match": {"dl_vlan": 100, "in_port": 1}, |
535
|
|
|
"actions": [{"action_type": "output", "port": 2}], |
536
|
|
|
} |
537
|
|
|
} |
538
|
|
|
|
539
|
1 |
|
mock_stored_flows.return_value = { |
540
|
|
|
"00:00:00:00:00:00:00:01": [stored_flow], |
541
|
|
|
"00:00:00:00:00:00:00:02": [stored_flow], |
542
|
|
|
} |
543
|
|
|
|
544
|
1 |
|
resp = await self.api_client.put(self.traces_endpoint, json=payload) |
545
|
1 |
|
assert resp.status_code == 200 |
546
|
1 |
|
current_data = resp.json() |
547
|
1 |
|
result = current_data["result"] |
548
|
1 |
|
assert len(result) == 3 |
549
|
|
|
|
550
|
1 |
|
assert result[0][0]["dpid"] == "00:00:00:00:00:00:00:01" |
551
|
1 |
|
assert result[0][0]["port"] == 1 |
552
|
1 |
|
assert result[0][0]["type"] == "last" |
553
|
1 |
|
assert result[0][0]["vlan"] == 100 |
554
|
1 |
|
assert result[0][0]["out"] == {"port": 2, "vlan": 100} |
555
|
|
|
|
556
|
1 |
|
assert result[1][0]["dpid"] == "00:00:00:00:00:00:00:0a" |
557
|
1 |
|
assert result[1][0]["port"] == 1 |
558
|
1 |
|
assert result[1][0]["type"] == "last" |
559
|
1 |
|
assert result[1][0]["vlan"] == 100 |
560
|
1 |
|
assert result[1][0]["out"] is None |
561
|
|
|
|
562
|
1 |
|
assert len(result[2]) == 0 |
563
|
|
|
|
564
|
1 |
|
@patch("napps.amlight.sdntrace_cp.main.get_stored_flows") |
565
|
1 |
|
async def test_traces_fail(self, mock_stored_flows, event_loop): |
566
|
|
|
"""Test traces with a failed dependency.""" |
567
|
1 |
|
self.napp.controller.loop = event_loop |
568
|
1 |
|
mock_stored_flows.side_effect = HTTPException(424, "failed") |
569
|
1 |
|
payload = [{ |
570
|
|
|
"trace": { |
571
|
|
|
"switch": { |
572
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
573
|
|
|
"in_port": 1 |
574
|
|
|
}, |
575
|
|
|
"eth": {"dl_vlan": 100}, |
576
|
|
|
} |
577
|
|
|
}] |
578
|
1 |
|
resp = await self.api_client.put(self.traces_endpoint, json=payload) |
579
|
1 |
|
assert resp.status_code == 424 |
580
|
|
|
|
581
|
1 |
View Code Duplication |
@patch("napps.amlight.sdntrace_cp.main.get_stored_flows") |
|
|
|
|
582
|
1 |
|
async def test_traces_with_loop(self, mock_stored_flows, event_loop): |
583
|
|
|
"""Test traces rest call""" |
584
|
1 |
|
self.napp.controller.loop = event_loop |
585
|
1 |
|
payload = [ |
586
|
|
|
{ |
587
|
|
|
"trace": { |
588
|
|
|
"switch": { |
589
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
590
|
|
|
"in_port": 1 |
591
|
|
|
}, |
592
|
|
|
"eth": { |
593
|
|
|
"dl_vlan": 100 |
594
|
|
|
} |
595
|
|
|
} |
596
|
|
|
} |
597
|
|
|
] |
598
|
|
|
|
599
|
1 |
|
stored_flow = { |
600
|
|
|
"id": 1, |
601
|
|
|
"flow": { |
602
|
|
|
"table_id": 0, |
603
|
|
|
"cookie": 84114964, |
604
|
|
|
"hard_timeout": 0, |
605
|
|
|
"idle_timeout": 0, |
606
|
|
|
"priority": 10, |
607
|
|
|
"match": {"dl_vlan": 100, "in_port": 1}, |
608
|
|
|
"actions": [{"action_type": "output", "port": 1}], |
609
|
|
|
} |
610
|
|
|
} |
611
|
|
|
|
612
|
1 |
|
mock_stored_flows.return_value = { |
613
|
|
|
"00:00:00:00:00:00:00:01": [stored_flow], |
614
|
|
|
} |
615
|
|
|
|
616
|
1 |
|
resp = await self.api_client.put(self.traces_endpoint, json=payload) |
617
|
1 |
|
assert resp.status_code == 200 |
618
|
1 |
|
current_data = resp.json() |
619
|
1 |
|
result = current_data["result"] |
620
|
1 |
|
assert len(result) == 1 |
621
|
1 |
|
assert result[0][0]["dpid"] == "00:00:00:00:00:00:00:01" |
622
|
1 |
|
assert result[0][0]["port"] == 1 |
623
|
1 |
|
assert result[0][0]["type"] == "loop" |
624
|
1 |
|
assert result[0][0]["vlan"] == 100 |
625
|
1 |
|
assert result[0][0]["out"] == {"port": 1, "vlan": 100} |
626
|
|
|
|
627
|
1 |
|
@patch("napps.amlight.sdntrace_cp.main.get_stored_flows") |
628
|
1 |
|
async def test_traces_no_action(self, mock_stored_flows, event_loop): |
629
|
|
|
"""Test traces rest call for two traces with different switches.""" |
630
|
1 |
|
self.napp.controller.loop = event_loop |
631
|
1 |
|
payload = [ |
632
|
|
|
{ |
633
|
|
|
"trace": { |
634
|
|
|
"switch": { |
635
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
636
|
|
|
"in_port": 1 |
637
|
|
|
}, |
638
|
|
|
"eth": {"dl_vlan": 100}, |
639
|
|
|
} |
640
|
|
|
}, |
641
|
|
|
{ |
642
|
|
|
"trace": { |
643
|
|
|
"switch": { |
644
|
|
|
"dpid": "00:00:00:00:00:00:00:02", |
645
|
|
|
"in_port": 1}, |
646
|
|
|
"eth": {"dl_vlan": 100}, |
647
|
|
|
} |
648
|
|
|
} |
649
|
|
|
] |
650
|
|
|
|
651
|
1 |
|
stored_flow1 = { |
652
|
|
|
"id": 1, |
653
|
|
|
"flow": { |
654
|
|
|
"table_id": 0, |
655
|
|
|
"cookie": 84114964, |
656
|
|
|
"hard_timeout": 0, |
657
|
|
|
"idle_timeout": 0, |
658
|
|
|
"priority": 10, |
659
|
|
|
"match": {"dl_vlan": 100, "in_port": 1} |
660
|
|
|
} |
661
|
|
|
} |
662
|
1 |
|
stored_flow2 = { |
663
|
|
|
"id": 1, |
664
|
|
|
"flow": { |
665
|
|
|
"table_id": 0, |
666
|
|
|
"cookie": 84114964, |
667
|
|
|
"hard_timeout": 0, |
668
|
|
|
"idle_timeout": 0, |
669
|
|
|
"priority": 10, |
670
|
|
|
"match": {"dl_vlan": 100, "in_port": 1}, |
671
|
|
|
"actions": [] |
672
|
|
|
} |
673
|
|
|
} |
674
|
|
|
|
675
|
1 |
|
mock_stored_flows.return_value = { |
676
|
|
|
"00:00:00:00:00:00:00:01": [stored_flow1], |
677
|
|
|
"00:00:00:00:00:00:00:02": [stored_flow2] |
678
|
|
|
} |
679
|
|
|
|
680
|
1 |
|
resp = await self.api_client.put(self.traces_endpoint, json=payload) |
681
|
1 |
|
assert resp.status_code == 200 |
682
|
1 |
|
current_data = resp.json() |
683
|
1 |
|
result = current_data["result"] |
684
|
1 |
|
assert len(result) == 2 |
685
|
1 |
|
assert len(result[0]) == 0 |
686
|
1 |
|
assert len(result[1]) == 0 |
687
|
|
|
|
688
|
1 |
|
@patch("napps.amlight.sdntrace_cp.main.get_stored_flows") |
689
|
1 |
|
async def test_get_traces_untagged(self, mock_stored_flows, event_loop): |
690
|
|
|
"""Test traces rest call.""" |
691
|
1 |
|
self.napp.controller.loop = event_loop |
692
|
1 |
|
payload = [{ |
693
|
|
|
"trace": { |
694
|
|
|
"switch": { |
695
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
696
|
|
|
"in_port": 1 |
697
|
|
|
}, |
698
|
|
|
"eth": {"dl_vlan": 10}, |
699
|
|
|
} |
700
|
|
|
}, { |
701
|
|
|
"trace": { |
702
|
|
|
"switch": { |
703
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
704
|
|
|
"in_port": 1 |
705
|
|
|
} |
706
|
|
|
} |
707
|
|
|
} |
708
|
|
|
] |
709
|
|
|
|
710
|
1 |
|
stored_flow1 = { |
711
|
|
|
"flow": { |
712
|
|
|
"match": {"dl_vlan": 0, "in_port": 1}, |
713
|
|
|
"actions": [ |
714
|
|
|
{"action_type": "pop_vlan"}, |
715
|
|
|
{"action_type": "output", "port": 2}, |
716
|
|
|
], |
717
|
|
|
} |
718
|
|
|
} |
719
|
1 |
|
stored_flow2 = { |
720
|
|
|
"flow": { |
721
|
|
|
"match": {"in_port": 1}, |
722
|
|
|
"actions": [ |
723
|
|
|
{"action_type": "pop_vlan"}, |
724
|
|
|
{"action_type": "output", "port": 3}, |
725
|
|
|
], |
726
|
|
|
} |
727
|
|
|
} |
728
|
1 |
|
stored_flow3 = { |
729
|
|
|
"flow": { |
730
|
|
|
"match": {"dl_vlan": 10, "in_port": 1}, |
731
|
|
|
"actions": [ |
732
|
|
|
{"action_type": "pop_vlan"}, |
733
|
|
|
{"action_type": "output", "port": 1}, |
734
|
|
|
], |
735
|
|
|
} |
736
|
|
|
} |
737
|
1 |
|
mock_stored_flows.return_value = { |
738
|
|
|
"00:00:00:00:00:00:00:01": [ |
739
|
|
|
stored_flow1, |
740
|
|
|
stored_flow2, |
741
|
|
|
stored_flow3 |
742
|
|
|
] |
743
|
|
|
} |
744
|
|
|
|
745
|
1 |
|
resp = await self.api_client.put(self.traces_endpoint, json=payload) |
746
|
1 |
|
assert resp.status_code == 200 |
747
|
1 |
|
current_data = resp.json() |
748
|
|
|
|
749
|
1 |
|
result = current_data["result"] |
750
|
1 |
|
assert result[0][0]["type"] == "last" |
751
|
1 |
|
assert result[0][0]["out"] == {"port": 3} |
752
|
1 |
|
assert result[1][0]["type"] == "last" |
753
|
1 |
|
assert result[1][0]["out"] == {"port": 2} |
754
|
|
|
|
755
|
1 |
|
mock_stored_flows.return_value = { |
756
|
|
|
"00:00:00:00:00:00:00:01": [ |
757
|
|
|
stored_flow3, |
758
|
|
|
stored_flow2, |
759
|
|
|
stored_flow1 |
760
|
|
|
] |
761
|
|
|
} |
762
|
|
|
|
763
|
1 |
|
resp = await self.api_client.put(self.traces_endpoint, json=payload) |
764
|
1 |
|
assert resp.status_code == 200 |
765
|
1 |
|
current_data = resp.json() |
766
|
1 |
|
result = current_data["result"] |
767
|
1 |
|
assert result[0][0]["type"] == "loop" |
768
|
1 |
|
assert result[0][0]["out"] == {"port": 1} |
769
|
1 |
|
assert result[1][0]["type"] == "last" |
770
|
1 |
|
assert result[1][0]["out"] == {"port": 3} |
771
|
|
|
|
772
|
1 |
|
@patch("napps.amlight.sdntrace_cp.main.get_stored_flows") |
773
|
1 |
|
async def test_get_traces_any(self, mock_stored_flows, event_loop): |
774
|
|
|
"""Test traces rest call.""" |
775
|
1 |
|
self.napp.controller.loop = event_loop |
776
|
1 |
|
payload = [{ |
777
|
|
|
"trace": { |
778
|
|
|
"switch": { |
779
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
780
|
|
|
"in_port": 1 |
781
|
|
|
}, |
782
|
|
|
"eth": {"dl_vlan": 10} |
783
|
|
|
} |
784
|
|
|
}, { |
785
|
|
|
"trace": { |
786
|
|
|
"switch": { |
787
|
|
|
"dpid": "00:00:00:00:00:00:00:01", |
788
|
|
|
"in_port": 1 |
789
|
|
|
} |
790
|
|
|
} |
791
|
|
|
} |
792
|
|
|
] |
793
|
|
|
|
794
|
1 |
|
stored_flow1 = { |
795
|
|
|
"flow": { |
796
|
|
|
"match": {"dl_vlan": "4096/4096", "in_port": 1}, |
797
|
|
|
"actions": [ |
798
|
|
|
{"action_type": "pop_vlan"}, |
799
|
|
|
{"action_type": "output", "port": 2}, |
800
|
|
|
], |
801
|
|
|
} |
802
|
|
|
} |
803
|
1 |
|
stored_flow2 = { |
804
|
|
|
"flow": { |
805
|
|
|
"match": {"dl_vlan": 10, "in_port": 1}, |
806
|
|
|
"actions": [ |
807
|
|
|
{"action_type": "pop_vlan"}, |
808
|
|
|
{"action_type": "output", "port": 1}, |
809
|
|
|
], |
810
|
|
|
} |
811
|
|
|
} |
812
|
1 |
|
stored_flow3 = { |
813
|
|
|
"flow": { |
814
|
|
|
"match": {"dl_vlan": "10/10", "in_port": 1}, |
815
|
|
|
"actions": [ |
816
|
|
|
{"action_type": "pop_vlan"}, |
817
|
|
|
{"action_type": "output", "port": 3}, |
818
|
|
|
], |
819
|
|
|
} |
820
|
|
|
} |
821
|
1 |
|
stored_flow4 = { |
822
|
|
|
"flow": { |
823
|
|
|
"match": {"dl_vlan": "20/10", "in_port": 1}, |
824
|
|
|
"actions": [ |
825
|
|
|
{"action_type": "pop_vlan"}, |
826
|
|
|
{"action_type": "output", "port": 1}, |
827
|
|
|
], |
828
|
|
|
} |
829
|
|
|
} |
830
|
1 |
|
mock_stored_flows.return_value = { |
831
|
|
|
"00:00:00:00:00:00:00:01": [ |
832
|
|
|
stored_flow1, |
833
|
|
|
stored_flow2, |
834
|
|
|
stored_flow3, |
835
|
|
|
stored_flow4 |
836
|
|
|
] |
837
|
|
|
} |
838
|
|
|
|
839
|
1 |
|
resp = await self.api_client.put(self.traces_endpoint, json=payload) |
840
|
1 |
|
assert resp.status_code == 200 |
841
|
1 |
|
current_data = resp.json() |
842
|
1 |
|
result = current_data["result"] |
843
|
1 |
|
assert result[0][0]["type"] == "last" |
844
|
1 |
|
assert result[0][0]["out"] == {"port": 2} |
845
|
1 |
|
assert len(result[1]) == 0 |
846
|
|
|
|
847
|
1 |
|
mock_stored_flows.return_value = { |
848
|
|
|
"00:00:00:00:00:00:00:01": [ |
849
|
|
|
stored_flow4, |
850
|
|
|
stored_flow3, |
851
|
|
|
stored_flow2, |
852
|
|
|
stored_flow1 |
853
|
|
|
] |
854
|
|
|
} |
855
|
|
|
|
856
|
1 |
|
resp = await self.api_client.put(self.traces_endpoint, json=payload) |
857
|
1 |
|
assert resp.status_code == 200 |
858
|
1 |
|
current_data = resp.json() |
859
|
1 |
|
result = current_data["result"] |
860
|
1 |
|
assert result[0][0]["type"] == "last" |
861
|
1 |
|
assert result[0][0]["out"] == {"port": 3} |
862
|
1 |
|
assert len(result[1]) == 0 |
863
|
|
|
|
864
|
1 |
|
@pytest.mark.parametrize( |
865
|
|
|
"flow,args,match", |
866
|
|
|
[ |
867
|
|
|
( |
868
|
|
|
{'flow': {'match': {'dl_vlan': 10}}}, |
869
|
|
|
{'dl_vlan': [10]}, |
870
|
|
|
{'flow': {'match': {'dl_vlan': 10}}}, |
871
|
|
|
), |
872
|
|
|
( |
873
|
|
|
{'flow': {'match': {'dl_vlan': 0}}}, |
874
|
|
|
{}, |
875
|
|
|
{'flow': {'match': {'dl_vlan': 0}}}, |
876
|
|
|
), |
877
|
|
|
( |
878
|
|
|
{'flow': {'match': {'dl_vlan': '10/10'}}}, |
879
|
|
|
{'dl_vlan': [10]}, |
880
|
|
|
{'flow': {'match': {'dl_vlan': '10/10'}}}, |
881
|
|
|
), |
882
|
|
|
( |
883
|
|
|
{'flow': {'match': {'dl_vlan': '10/10'}}}, |
884
|
|
|
{'dl_vlan': [2]}, |
885
|
|
|
False, |
886
|
|
|
), |
887
|
|
|
( |
888
|
|
|
{'flow': {'match': { |
889
|
|
|
'nw_src': '192.168.20.21/10', |
890
|
|
|
'nw_dst': '192.168.20.21/32', |
891
|
|
|
'ipv6_src': '2002:db8::8a3f:362:7897/10', |
892
|
|
|
'ipv6_dst': '2002:db8::8a3f:362:7897/128', |
893
|
|
|
} |
894
|
|
|
} |
895
|
|
|
}, |
896
|
|
|
{ |
897
|
|
|
'nw_src': '192.168.20.21', |
898
|
|
|
'nw_dst': '192.168.20.21', |
899
|
|
|
'ipv6_src': '2002:db8::8a3f:362:7897', |
900
|
|
|
'ipv6_dst': '2002:db8::8a3f:362:7897', |
901
|
|
|
}, |
902
|
|
|
{'flow': {'match': { |
903
|
|
|
'nw_src': '192.168.20.21/10', |
904
|
|
|
'nw_dst': '192.168.20.21/32', |
905
|
|
|
'ipv6_src': '2002:db8::8a3f:362:7897/10', |
906
|
|
|
'ipv6_dst': '2002:db8::8a3f:362:7897/128', |
907
|
|
|
} |
908
|
|
|
} |
909
|
|
|
}, |
910
|
|
|
), |
911
|
|
|
( |
912
|
|
|
{'flow': {'match': {'nw_src': '192.168.20.21'}}}, |
913
|
|
|
{'nw_src': '192.168.20.30'}, |
914
|
|
|
False, |
915
|
|
|
), |
916
|
|
|
( |
917
|
|
|
{'flow': {'match': {'ipv6_src': '2002:db8::8a3f:362:7'}}}, |
918
|
|
|
{'ipv6_src': '2002:db8::8a3f:362:7897'}, |
919
|
|
|
False, |
920
|
|
|
), |
921
|
|
|
( |
922
|
|
|
{'flow': {'match': {'in_port': 1, 'dl_vlan': '4096/4096'}}}, |
923
|
|
|
{'in_port': 1, 'dl_vlan': [1]}, |
924
|
|
|
{'flow': {'match': {'in_port': 1, 'dl_vlan': '4096/4096'}}}, |
925
|
|
|
), |
926
|
|
|
( |
927
|
|
|
{'flow': {'match': {'in_port': 1, 'dl_vlan': '4096/4096'}}}, |
928
|
|
|
{'dl_vlan': [1]}, |
929
|
|
|
False, |
930
|
|
|
), |
931
|
|
|
], |
932
|
|
|
) |
933
|
1 |
|
def test_do_match(self, flow, args, match): |
934
|
|
|
"""Test do_match.""" |
935
|
1 |
|
assert self.napp.do_match(flow, args) == match |
936
|
|
|
|
937
|
1 |
|
def test_match_flows(self): |
938
|
|
|
"""Test match_flows.""" |
939
|
1 |
|
flow = {"flow": {"match": {"dl_vlan": "10/10", "in_port": 1}}} |
940
|
1 |
|
switch = get_switch_mock("00:00:00:00:00:00:00:01") |
941
|
1 |
|
stored_flows = {"00:00:00:00:00:00:00:01": [flow]} |
942
|
1 |
|
args = {"dl_vlan": [10], "in_port": 1} |
943
|
1 |
|
resp = self.napp.match_flows(switch, args, stored_flows) |
944
|
1 |
|
assert resp == [flow] |
945
|
|
|
|
946
|
1 |
|
stored_flows = {} |
947
|
1 |
|
resp = self.napp.match_flows(switch, args, stored_flows) |
948
|
1 |
|
assert not resp |
949
|
|
|
|
950
|
1 |
|
@pytest.mark.parametrize( |
951
|
|
|
"flow,args,resp", |
952
|
|
|
[ |
953
|
|
|
( |
954
|
|
|
{"flow": { |
955
|
|
|
"match": {"dl_vlan": "10/10", "in_port": 1}, |
956
|
|
|
"actions": [{'action_type': 'output', 'port': 1}] |
957
|
|
|
} |
958
|
|
|
}, |
959
|
|
|
{"dl_vlan": [10], "in_port": 1}, |
960
|
|
|
({"flow": { |
961
|
|
|
"match": {"dl_vlan": "10/10", "in_port": 1}, |
962
|
|
|
"actions": [{'action_type': 'output', 'port': 1}] |
963
|
|
|
} |
964
|
|
|
}, {"dl_vlan": [10], "in_port": 1}, 1), |
965
|
|
|
), |
966
|
|
|
( |
967
|
|
|
{"flow": { |
968
|
|
|
"match": {"dl_vlan": "10/10", "in_port": 1}, |
969
|
|
|
"actions": [{'action_type': 'push_vlan'}] |
970
|
|
|
} |
971
|
|
|
}, |
972
|
|
|
{"dl_vlan": [10], "in_port": 1}, |
973
|
|
|
({"flow": { |
974
|
|
|
"match": {"dl_vlan": "10/10", "in_port": 1}, |
975
|
|
|
"actions": [{'action_type': 'push_vlan'}] |
976
|
|
|
} |
977
|
|
|
}, {"dl_vlan": [10, 0], "in_port": 1}, None), |
978
|
|
|
), |
979
|
|
|
( |
980
|
|
|
{"flow": { |
981
|
|
|
"match": {"dl_vlan": "10/10", "in_port": 1}, |
982
|
|
|
"actions": [{'action_type': 'pop_vlan'}] |
983
|
|
|
} |
984
|
|
|
}, |
985
|
|
|
{"dl_vlan": [10], "in_port": 1}, |
986
|
|
|
({"flow": { |
987
|
|
|
"match": {"dl_vlan": "10/10", "in_port": 1}, |
988
|
|
|
"actions": [{'action_type': 'pop_vlan'}] |
989
|
|
|
} |
990
|
|
|
}, {"in_port": 1}, None), |
991
|
|
|
), |
992
|
|
|
( |
993
|
|
|
{"flow": { |
994
|
|
|
"match": {"dl_vlan": "10/10", "in_port": 1}, |
995
|
|
|
"actions": [{'action_type': 'set_vlan', |
996
|
|
|
'vlan_id': 2}] |
997
|
|
|
} |
998
|
|
|
}, |
999
|
|
|
{"dl_vlan": [10], "in_port": 1}, |
1000
|
|
|
({"flow": { |
1001
|
|
|
"match": {"dl_vlan": "10/10", "in_port": 1}, |
1002
|
|
|
"actions": [{'action_type': 'set_vlan', |
1003
|
|
|
'vlan_id': 2}] |
1004
|
|
|
} |
1005
|
|
|
}, {"dl_vlan": [2], "in_port": 1}, None), |
1006
|
|
|
), |
1007
|
|
|
], |
1008
|
|
|
) |
1009
|
1 |
|
def test_match_and_apply(self, flow, args, resp): |
1010
|
|
|
"""Test match_and_apply.""" |
1011
|
1 |
|
switch = get_switch_mock("00:00:00:00:00:00:00:01", 0x04) |
1012
|
1 |
|
stored_flows = {"00:00:00:00:00:00:00:01": [flow]} |
1013
|
1 |
|
assert self.napp.match_and_apply(switch, args, stored_flows) == resp |
1014
|
|
|
|
1015
|
1 |
|
stored_flows = {} |
1016
|
1 |
|
resp = self.napp.match_and_apply(switch, args, stored_flows) |
1017
|
1 |
|
assert not resp[0] |
1018
|
|
|
assert not resp[2] |
1019
|
|
|
|