Test Failed
Pull Request — master (#49)
by
unknown
03:08
created

build.tests.unit.test_main.TestMain.test_trace()   A

Complexity

Conditions 1

Size

Total Lines 41
Code Lines 30

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 30
nop 2
dl 0
loc 41
rs 9.16
c 0
b 0
f 0
1
"""Module to test the main napp file."""
2
import json
3
from unittest import TestCase
4
from unittest.mock import patch, MagicMock
5
6
from kytos.core.interface import Interface
7
from kytos.lib.helpers import (
8
    get_interface_mock,
9
    get_switch_mock,
10
    get_controller_mock,
11
    get_link_mock,
12
    get_test_client,
13
)
14
15
16
# pylint: disable=too-many-public-methods, too-many-lines
17
class TestMain(TestCase):
18
    """Test the Main class."""
19
20
    def setUp(self):
21
        """Execute steps before each tests.
22
23
        Set the server_name_url_url from amlight/sdntrace_cp
24
        """
25
        self.server_name_url = "http://localhost:8181/api/amlight/sdntrace_cp"
26
27
        # The decorator run_on_thread is patched, so methods that listen
28
        # for events do not run on threads while tested.
29
        # Decorators have to be patched before the methods that are
30
        # decorated with them are imported.
31
        patch("kytos.core.helpers.run_on_thread", lambda x: x).start()
32
        # pylint: disable=import-outside-toplevel
33
        from napps.amlight.sdntrace_cp.main import Main
34
35
        self.napp = Main(get_controller_mock())
36
37
    @staticmethod
38
    def get_napp_urls(napp):
39
        """Return the amlight/sdntrace_cp urls.
40
41
        The urls will be like:
42
43
        urls = [
44
            (options, methods, url)
45
        ]
46
47
        """
48
        controller = napp.controller
49
        controller.api_server.register_napp_endpoints(napp)
50
51
        urls = []
52
        for rule in controller.api_server.app.url_map.iter_rules():
53
            options = {}
54
            for arg in rule.arguments:
55
                options[arg] = f"[{0}]".format(arg)
56
57
            if f"{napp.username}/{napp.name}" in str(rule):
58
                urls.append((options, rule.methods, f"{str(rule)}"))
59
60
        return urls
61
62
    def test_verify_api_urls(self):
63
        """Verify all APIs registered."""
64
65
        expected_urls = [
66
            (
67
                {},
68
                {"OPTIONS", "HEAD", "PUT"},
69
                "/api/amlight/sdntrace_cp/trace/ ",
70
            ),
71
            (
72
                {},
73
                {"OPTIONS", "HEAD", "PUT"},
74
                "/api/amlight/sdntrace_cp/traces/ ",
75
            ),
76
        ]
77
        urls = self.get_napp_urls(self.napp)
78
        self.assertEqual(len(expected_urls), len(urls))
79
80
    @patch("napps.amlight.sdntrace_cp.main.Main.match_and_apply")
81
    def test_trace_step(self, mock_flow_match):
82
        """Test trace_step success result."""
83
        mock_flow_match.return_value = ["1"], ["entries"], 1
84
        switch = get_switch_mock("00:00:00:00:00:00:00:01", 0x04)
85
86
        mock_interface = Interface("interface A", 1, MagicMock())
87
        mock_interface.address = "00:00:00:00:00:00:00:01"
88
89
        iface1 = get_interface_mock(
90
            "", 1, get_switch_mock("00:00:00:00:00:00:00:01")
91
        )
92
        iface2 = get_interface_mock(
93
            "", 2, get_switch_mock("00:00:00:00:00:00:00:02")
94
        )
95
        mock_interface.link = get_link_mock(iface1, iface2)
96
        mock_interface.link.endpoint_a.port_number = 1
97
        mock_interface.link.endpoint_a.port_number = 2
98
99
        # Patch for utils.find_endpoint
100
        switch.get_interface_by_port_no.return_value = mock_interface
101
102
        entries = MagicMock()
103
104
        stored_flows = {
105
            "flow": {
106
                "table_id": 0,
107
                "cookie": 84114964,
108
                "hard_timeout": 0,
109
                "idle_timeout": 0,
110
                "priority": 10,
111
            },
112
            "flow_id": 1,
113
            "state": "installed",
114
            "switch": "00:00:00:00:00:00:00:01",
115
        }
116
117
        stored_flows_arg = {
118
            "00:00:00:00:00:00:00:01": [stored_flows]
119
        }
120
121
        result = self.napp.trace_step(switch, entries, stored_flows_arg)
122
123
        mock_flow_match.assert_called_once()
124
        self.assertEqual(
125
            result,
126
            {
127
                "dpid": "00:00:00:00:00:00:00:01",
128
                "in_port": 2,
129
                "out_port": 1,
130
                "entries": ["entries"],
131
            },
132
        )
133
134
    @patch("napps.amlight.sdntrace_cp.main.Main.match_and_apply")
135
    def test_trace_step__no_endpoint(self, mock_flow_match):
136
        """Test trace_step without endpoints available for switch/port."""
137
        mock_flow_match.return_value = ["1"], ["entries"], 1
138
        switch = get_switch_mock("00:00:00:00:00:00:00:01", 0x04)
139
140
        mock_interface = Interface("interface A", 1, MagicMock())
141
        mock_interface.address = "00:00:00:00:00:00:00:01"
142
        mock_interface.link = None
143
144
        # Patch for utils.find_endpoint
145
        switch.get_interface_by_port_no.return_value = mock_interface
146
147
        entries = MagicMock()
148
149
        stored_flows = {
150
            "flow": {
151
                "table_id": 0,
152
                "cookie": 84114964,
153
                "hard_timeout": 0,
154
                "idle_timeout": 0,
155
                "priority": 10,
156
            },
157
            "flow_id": 1,
158
            "state": "installed",
159
            "switch": "00:00:00:00:00:00:00:01",
160
        }
161
162
        stored_flows_arg = {
163
            "00:00:00:00:00:00:00:01": [stored_flows]
164
        }
165
166
        result = self.napp.trace_step(switch, entries, stored_flows_arg)
167
168
        mock_flow_match.assert_called_once()
169
        self.assertEqual(result, {"entries": ["entries"], "out_port": 1})
170
171
    def test_trace_step__no_flow(self):
172
        """Test trace_step without flows for the switch."""
173
        switch = get_switch_mock("00:00:00:00:00:00:00:01")
174
        entries = MagicMock()
175
176
        stored_flows = {
177
            "flow": {
178
                "table_id": 0,
179
                "cookie": 84114964,
180
                "hard_timeout": 0,
181
                "idle_timeout": 0,
182
                "priority": 10,
183
            },
184
            "flow_id": 1,
185
            "state": "installed",
186
            "switch": "00:00:00:00:00:00:00:01",
187
        }
188
189
        stored_flows_arg = {
190
            "00:00:00:00:00:00:00:01": [stored_flows]
191
        }
192
193
        result = self.napp.trace_step(switch, entries, stored_flows_arg)
194
        assert result is None
195
196
    @patch("napps.amlight.sdntrace_cp.main.Main.trace_step")
197
    def test_tracepath(self, mock_trace_step):
198
        """Test tracepath with success result."""
199
        eth = {"dl_vlan": 100}
200
        dpid = {"dpid": "00:00:00:00:00:00:00:01", "in_port": 1}
201
        switch = {"switch": dpid, "eth": eth}
202
        entries = {"trace": switch}
203
        mock_trace_step.return_value = {
204
            "dpid": "00:00:00:00:00:00:00:02",
205
            "in_port": 2,
206
            "out_port": 3,
207
            "entries": entries,
208
        }
209
        stored_flows = {
210
            "flow": {
211
                "table_id": 0,
212
                "cookie": 84114964,
213
                "hard_timeout": 0,
214
                "idle_timeout": 0,
215
                "priority": 10,
216
            },
217
            "flow_id": 1,
218
            "state": "installed",
219
            "switch": "00:00:00:00:00:00:00:01",
220
        }
221
222
        stored_flows_arg = {
223
            "00:00:00:00:00:00:00:01": [stored_flows]
224
        }
225
226
        switch_01 = get_switch_mock("00:00:00:00:00:00:00:01", 0x04)
227
        switch_01.is_enabled.return_value = True
228
229
        self.napp.controller.switches = {
230
            "00:00:00:00:00:00:00:01": switch_01
231
        }
232
233
        result = self.napp.tracepath(
234
                                        entries["trace"]["switch"],
235
                                        stored_flows_arg
236
                                    )
237
238
        assert result[0]["in"]["dpid"] == "00:00:00:00:00:00:00:01"
239
        assert result[0]["in"]["port"] == 1
240
        assert result[0]["in"]["type"] == "starting"
241
242
        assert result[1]["in"]["dpid"] == "00:00:00:00:00:00:00:02"
243
        assert result[1]["in"]["port"] == 2
244
        assert result[1]["in"]["type"] == "trace"
245
246
    def test_has_loop(self):
247
        """Test has_loop to detect a tracepath with loop."""
248
        trace_result = [
249
            {
250
                "in": {
251
                    "dpid": "00:00:00:00:00:00:00:01",
252
                    "port": 2,
253
                },
254
                "out": {
255
                    "port": 1,
256
                },
257
            },
258
            {
259
                "in": {
260
                    "dpid": "00:00:00:00:00:00:00:03",
261
                    "port": 2,
262
                },
263
                "out": {
264
                    "port": 1,
265
                },
266
            },
267
            {
268
                "in": {
269
                    "dpid": "00:00:00:00:00:00:00:03",
270
                    "port": 3,
271
                },
272
                "out": {
273
                    "port": 1,
274
                },
275
            },
276
            {
277
                "in": {
278
                    "dpid": "00:00:00:00:00:00:00:03",
279
                    "port": 3,
280
                },
281
                "out": {
282
                    "port": 1,
283
                },
284
            },
285
        ]
286
        trace_step = {
287
            "dpid": "00:00:00:00:00:00:00:03",
288
            "port": 3,
289
        }
290
291
        result = self.napp.has_loop(trace_step, trace_result)
292
293
        self.assertTrue(result)
294
295
    def test_has_loop__fail(self):
296
        """Test has_loop to detect a tracepath with loop."""
297
        trace_result = [
298
            {
299
                "in": {
300
                    "dpid": "00:00:00:00:00:00:00:01",
301
                    "port": 2,
302
                },
303
                "out": {
304
                    "port": 1,
305
                },
306
            },
307
            {
308
                "in": {
309
                    "dpid": "00:00:00:00:00:00:00:02",
310
                    "port": 2,
311
                },
312
                "out": {
313
                    "port": 1,
314
                },
315
            },
316
        ]
317
        trace_step = {
318
            "dpid": "00:00:00:00:00:00:00:03",
319
            "port": 2,
320
        }
321
322
        result = self.napp.has_loop(trace_step, trace_result)
323
324
        self.assertFalse(result)
325
326
    @patch("napps.amlight.sdntrace_cp.main.settings")
327
    def test_update_circuits(self, mock_settings):
328
        """Test update_circuits event listener with success."""
329
        mock_settings.FIND_CIRCUITS_IN_FLOWS = True
330
331
        self.napp.automate = MagicMock()
332
        self.napp.automate.find_circuits = MagicMock()
333
334
        self.napp.update_circuits()
335
336
        self.napp.automate.find_circuits.assert_called_once()
337
338
    @patch("napps.amlight.sdntrace_cp.main.settings")
339
    def test_update_circuits__no_settings(self, mock_settings):
340
        """Test update_circuits event listener without
341
        settings option enabled."""
342
        mock_settings.FIND_CIRCUITS_IN_FLOWS = False
343
344
        self.napp.automate = MagicMock()
345
        self.napp.automate.find_circuits = MagicMock()
346
347
        self.napp.update_circuits()
348
349
        self.napp.automate.find_circuits.assert_not_called()
350
351
    @patch("napps.amlight.sdntrace_cp.utils.get_stored_flows")
352
    def test_trace(self, mock_stored_flows):
353
        """Test trace rest call."""
354
        api = get_test_client(get_controller_mock(), self.napp)
355
        url = f"{self.server_name_url}/trace/"
356
357
        payload = {
358
            "trace": {
359
                "switch": {
360
                    "dpid": "00:00:00:00:00:00:00:01",
361
                    "in_port": 1
362
                    },
363
                "eth": {"dl_vlan": 100},
364
            }
365
        }
366
        stored_flows = {
367
                "flow": {
368
                    "table_id": 0,
369
                    "cookie": 84114964,
370
                    "hard_timeout": 0,
371
                    "idle_timeout": 0,
372
                    "priority": 10,
373
                },
374
                "flow_id": 1,
375
                "state": "installed",
376
                "switch": "00:00:00:00:00:00:00:01",
377
        }
378
        mock_stored_flows.return_value = {
379
            "00:00:00:00:00:00:00:01": [stored_flows]
380
        }
381
382
        response = api.put(
383
            url, data=json.dumps(payload), content_type="application/json"
384
        )
385
        current_data = json.loads(response.data)
386
        result = current_data["result"]
387
388
        assert result[0]["dpid"] == "00:00:00:00:00:00:00:01"
389
        assert result[0]["port"] == 1
390
        assert result[0]["type"] == "starting"
391
        assert result[0]["vlan"] == 100
392
393
    @patch("napps.amlight.sdntrace_cp.utils.requests")
394
    @patch("napps.amlight.sdntrace_cp.utils.get_stored_flows")
395
    def test_get_traces(self, mock_stored_flows, mock_request):
396
        """Test traces rest call."""
397
        api = get_test_client(get_controller_mock(), self.napp)
398
        url = f"{self.server_name_url}/traces/"
399
400
        payload = [{
401
            "trace": {
402
                "switch": {
403
                    "dpid": "00:00:00:00:00:00:00:01",
404
                    "in_port": 1
405
                    },
406
                "eth": {"dl_vlan": 100},
407
            }
408
        }]
409
410
        stored_flow = {
411
                "id": 1,
412
                "table_id": 0,
413
                "cookie": 84114964,
414
                "hard_timeout": 0,
415
                "idle_timeout": 0,
416
                "priority": 10,
417
        }
418
419
        mock_stored_flows.return_value = {
420
            "00:00:00:00:00:00:00:01": [stored_flow]
421
        }
422
        mock_json = MagicMock()
423
        mock_json.json.return_value = mock_stored_flows
424
        mock_request.get.return_value = mock_json
425
426
        response = api.put(
427
            url, data=json.dumps(payload), content_type="application/json"
428
        )
429
        current_data = json.loads(response.data)
430
        result1 = current_data["00:00:00:00:00:00:00:01"]
431
432
        assert result1[0][0]["dpid"] == "00:00:00:00:00:00:00:01"
433
        assert result1[0][0]["port"] == 1
434
        assert result1[0][0]["type"] == "starting"
435
        assert result1[0][0]["vlan"] == 100
436
437 View Code Duplication
    @patch("napps.amlight.sdntrace_cp.utils.get_stored_flows")
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated in your project.
Loading history...
438
    def test_traces(self, mock_stored_flows):
439
        """Test traces rest call for two traces with different switches."""
440
        api = get_test_client(get_controller_mock(), self.napp)
441
        url = f"{self.server_name_url}/traces/"
442
443
        payload = [
444
            {
445
                "trace": {
446
                    "switch": {
447
                        "dpid": "00:00:00:00:00:00:00:01",
448
                        "in_port": 1
449
                        },
450
                    "eth": {"dl_vlan": 100},
451
                }
452
            },
453
            {
454
                "trace": {
455
                    "switch": {
456
                        "dpid": "00:00:00:00:00:00:00:02",
457
                        "in_port": 1},
458
                    "eth": {"dl_vlan": 100},
459
                }
460
            }
461
        ]
462
463
        stored_flow = {
464
                "id": 1,
465
                "table_id": 0,
466
                "cookie": 84114964,
467
                "hard_timeout": 0,
468
                "idle_timeout": 0,
469
                "priority": 10,
470
        }
471
472
        mock_stored_flows.return_value = {
473
            "00:00:00:00:00:00:00:01": [stored_flow]
474
        }
475
476
        response = api.put(
477
            url, data=json.dumps(payload), content_type="application/json"
478
        )
479
        current_data = json.loads(response.data)
480
        result1 = current_data["00:00:00:00:00:00:00:01"]
481
        result2 = current_data["00:00:00:00:00:00:00:02"]
482
483
        assert result1[0][0]["dpid"] == "00:00:00:00:00:00:00:01"
484
        assert result1[0][0]["port"] == 1
485
        assert result1[0][0]["type"] == "starting"
486
        assert result1[0][0]["vlan"] == 100
487
488
        assert result2[0][0]["dpid"] == "00:00:00:00:00:00:00:02"
489
        assert result2[0][0]["port"] == 1
490
        assert result2[0][0]["type"] == "starting"
491
        assert result2[0][0]["vlan"] == 100
492
493 View Code Duplication
    @patch("napps.amlight.sdntrace_cp.utils.get_stored_flows")
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated in your project.
Loading history...
494
    def test_traces_same_switch(self, mock_stored_flows):
495
        """Test traces rest call for two traces with samw switches."""
496
        api = get_test_client(get_controller_mock(), self.napp)
497
        url = f"{self.server_name_url}/traces/"
498
499
        payload = [
500
            {
501
                "trace": {
502
                    "switch": {
503
                        "dpid": "00:00:00:00:00:00:00:01",
504
                        "in_port": 1
505
                    },
506
                    "eth": {"dl_vlan": 100},
507
                }
508
            },
509
            {
510
                "trace": {
511
                    "switch": {
512
                        "dpid": "00:00:00:00:00:00:00:01",
513
                        "in_port": 2
514
                    },
515
                    "eth": {"dl_vlan": 100},
516
                }
517
            }
518
        ]
519
520
        stored_flow = {
521
                "id": 1,
522
                "table_id": 0,
523
                "cookie": 84114964,
524
                "hard_timeout": 0,
525
                "idle_timeout": 0,
526
                "priority": 10,
527
        }
528
529
        mock_stored_flows.return_value = {
530
            "00:00:00:00:00:00:00:01": [stored_flow]
531
        }
532
533
        response = api.put(
534
            url, data=json.dumps(payload), content_type="application/json"
535
        )
536
        current_data = json.loads(response.data)
537
        result = current_data["00:00:00:00:00:00:00:01"]
538
539
        assert len(current_data) == 1
540
541
        assert result[0][0]["dpid"] == "00:00:00:00:00:00:00:01"
542
        assert result[0][0]["port"] == 1
543
        assert result[0][0]["type"] == "starting"
544
        assert result[0][0]["vlan"] == 100
545
546
        assert result[1][0]["dpid"] == "00:00:00:00:00:00:00:01"
547
        assert result[1][0]["port"] == 2
548
        assert result[1][0]["type"] == "starting"
549
        assert result[1][0]["vlan"] == 100
550
551
    @patch("napps.amlight.sdntrace_cp.utils.get_stored_flows")
552
    def test_traces_twice(self, mock_stored_flows):
553
        """Test traces rest call for two equal traces."""
554
        api = get_test_client(get_controller_mock(), self.napp)
555
        url = f"{self.server_name_url}/traces/"
556
557
        payload = [
558
            {
559
                "trace": {
560
                    "switch": {
561
                        "dpid": "00:00:00:00:00:00:00:01",
562
                        "in_port": 1
563
                        },
564
                    "eth": {"dl_vlan": 100},
565
                }
566
            },
567
            {
568
                "trace": {
569
                    "switch": {
570
                        "dpid": "00:00:00:00:00:00:00:01",
571
                        "in_port": 1
572
                        },
573
                    "eth": {"dl_vlan": 100},
574
                }
575
            }
576
        ]
577
        stored_flow = {
578
                "id": 1,
579
                "table_id": 0,
580
                "cookie": 84114964,
581
                "hard_timeout": 0,
582
                "idle_timeout": 0,
583
                "priority": 10,
584
        }
585
586
        mock_stored_flows.return_value = {
587
            "00:00:00:00:00:00:00:01": [stored_flow]
588
        }
589
590
        response = api.put(
591
            url, data=json.dumps(payload), content_type="application/json"
592
        )
593
        current_data = json.loads(response.data)
594
        result = current_data["00:00:00:00:00:00:00:01"]
595
596
        assert len(current_data) == 1
597
        assert len(result) == 1
598
599
        assert result[0][0]["dpid"] == "00:00:00:00:00:00:00:01"
600
        assert result[0][0]["port"] == 1
601
        assert result[0][0]["type"] == "starting"
602
        assert result[0][0]["vlan"] == 100
603