2016-03-11 15:51:35 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2020-06-16 04:29:03 +00:00
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
2016-03-11 15:51:35 +00:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import pytest
|
2016-03-18 15:55:54 +00:00
|
|
|
from unittest.mock import MagicMock
|
2016-03-11 15:51:35 +00:00
|
|
|
|
|
|
|
from gns3server.controller.link import Link
|
2016-05-11 17:35:36 +00:00
|
|
|
from gns3server.controller.node import Node
|
2016-09-15 12:51:40 +00:00
|
|
|
from gns3server.controller.ports.ethernet_port import EthernetPort
|
|
|
|
from gns3server.controller.ports.serial_port import SerialPort
|
2020-10-02 06:37:50 +00:00
|
|
|
from gns3server.controller.controller_error import ControllerError
|
2016-06-15 13:12:38 +00:00
|
|
|
from tests.utils import AsyncioBytesIO, AsyncioMagicMock
|
2016-04-26 15:10:33 +00:00
|
|
|
|
2016-03-11 15:51:35 +00:00
|
|
|
|
|
|
|
@pytest.fixture
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def link(project, compute):
|
2016-03-11 15:51:35 +00:00
|
|
|
|
2016-07-11 13:36:52 +00:00
|
|
|
node1 = Node(project, compute, "node1", node_type="qemu")
|
2016-09-15 12:51:40 +00:00
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4)]
|
2016-07-11 13:36:52 +00:00
|
|
|
node2 = Node(project, compute, "node2", node_type="qemu")
|
2016-09-15 12:51:40 +00:00
|
|
|
node2._ports = [EthernetPort("E0", 0, 1, 3)]
|
2016-04-26 15:10:33 +00:00
|
|
|
|
|
|
|
link = Link(project)
|
2016-09-02 12:39:38 +00:00
|
|
|
link.create = AsyncioMagicMock()
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
|
|
|
await link.add_node(node2, 1, 3)
|
2016-04-26 15:10:33 +00:00
|
|
|
return link
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
def test_eq(project, link):
|
|
|
|
|
2016-07-05 14:07:05 +00:00
|
|
|
assert link == Link(project, link_id=link.id)
|
|
|
|
assert link != "a"
|
|
|
|
assert link != Link(project)
|
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_add_node(project, compute):
|
|
|
|
|
2016-07-11 13:36:52 +00:00
|
|
|
node1 = Node(project, compute, "node1", node_type="qemu")
|
2016-09-15 12:51:40 +00:00
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4)]
|
2016-03-11 19:13:52 +00:00
|
|
|
link = Link(project)
|
2016-09-02 12:39:38 +00:00
|
|
|
link.create = AsyncioMagicMock()
|
2019-02-23 16:20:11 +00:00
|
|
|
link._project.emit_notification = MagicMock()
|
2016-06-15 13:12:38 +00:00
|
|
|
project.dump = AsyncioMagicMock()
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
2016-05-11 17:35:36 +00:00
|
|
|
assert link._nodes == [
|
2016-03-11 15:51:35 +00:00
|
|
|
{
|
2016-05-11 17:35:36 +00:00
|
|
|
"node": node1,
|
2017-01-06 09:29:56 +00:00
|
|
|
"port": node1._ports[0],
|
2016-03-11 15:51:35 +00:00
|
|
|
"adapter_number": 0,
|
2016-07-01 15:38:32 +00:00
|
|
|
"port_number": 4,
|
|
|
|
'label': {
|
|
|
|
'text': '0/4',
|
2019-08-26 12:51:03 +00:00
|
|
|
'style': 'font-family: TypeWriter;font-size: 10.0;font-weight: bold;fill: #000000;fill-opacity: 1.0;'
|
2016-07-01 15:38:32 +00:00
|
|
|
}
|
2016-03-11 15:51:35 +00:00
|
|
|
}
|
|
|
|
]
|
2016-06-15 13:12:38 +00:00
|
|
|
assert project.dump.called
|
2019-02-23 16:20:11 +00:00
|
|
|
assert not link._project.emit_notification.called
|
2016-09-02 12:39:38 +00:00
|
|
|
assert not link.create.called
|
2016-08-23 21:33:19 +00:00
|
|
|
|
|
|
|
# We call link.created only when both side are created
|
|
|
|
node2 = Node(project, compute, "node2", node_type="qemu")
|
2016-09-15 12:51:40 +00:00
|
|
|
node2._ports = [EthernetPort("E0", 0, 0, 4)]
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node2, 0, 4)
|
2016-08-23 21:33:19 +00:00
|
|
|
|
2016-09-02 12:39:38 +00:00
|
|
|
assert link.create.called
|
2021-04-17 14:04:28 +00:00
|
|
|
link._project.emit_notification.assert_called_with("link.created", link.asdict())
|
2018-06-06 13:46:44 +00:00
|
|
|
assert link in node2.links
|
2016-08-23 21:33:19 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_add_node_already_connected(project, compute):
|
2017-01-06 09:29:56 +00:00
|
|
|
"""
|
|
|
|
Raise an error if we try to use an already connected port
|
|
|
|
"""
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2017-01-06 09:29:56 +00:00
|
|
|
project.dump = AsyncioMagicMock()
|
|
|
|
|
|
|
|
node1 = Node(project, compute, "node1", node_type="qemu")
|
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4)]
|
|
|
|
|
|
|
|
link = Link(project)
|
|
|
|
link.create = AsyncioMagicMock()
|
2019-02-23 16:20:11 +00:00
|
|
|
link._project.emit_notification = MagicMock()
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
2017-01-06 09:29:56 +00:00
|
|
|
node2 = Node(project, compute, "node2", node_type="qemu")
|
|
|
|
node2._ports = [EthernetPort("E0", 0, 0, 4)]
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node2, 0, 4)
|
2017-01-06 09:29:56 +00:00
|
|
|
|
|
|
|
assert link.create.called
|
|
|
|
link2 = Link(project)
|
|
|
|
link2.create = AsyncioMagicMock()
|
2020-10-02 06:37:50 +00:00
|
|
|
with pytest.raises(ControllerError):
|
2020-06-16 04:29:03 +00:00
|
|
|
await link2.add_node(node1, 0, 4)
|
|
|
|
|
2017-01-06 09:29:56 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_add_node_cloud(project, compute):
|
2017-01-06 09:29:56 +00:00
|
|
|
|
2016-08-23 21:33:19 +00:00
|
|
|
node1 = Node(project, compute, "node1", node_type="qemu")
|
2016-09-15 12:51:40 +00:00
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4)]
|
2016-08-23 21:33:19 +00:00
|
|
|
node2 = Node(project, compute, "node2", node_type="cloud")
|
2016-09-15 12:51:40 +00:00
|
|
|
node2._ports = [EthernetPort("E0", 0, 0, 4)]
|
2016-08-23 21:33:19 +00:00
|
|
|
|
|
|
|
link = Link(project)
|
2016-09-02 12:39:38 +00:00
|
|
|
link.create = AsyncioMagicMock()
|
2019-02-23 16:20:11 +00:00
|
|
|
link._project.emit_notification = MagicMock()
|
2016-08-23 21:33:19 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
|
|
|
await link.add_node(node2, 0, 4)
|
2016-08-23 21:33:19 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_add_node_cloud_to_cloud(project, compute):
|
2016-08-23 21:33:19 +00:00
|
|
|
"""
|
|
|
|
Cloud to cloud connection is not allowed
|
|
|
|
"""
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2016-08-23 21:33:19 +00:00
|
|
|
node1 = Node(project, compute, "node1", node_type="cloud")
|
2016-09-15 12:51:40 +00:00
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4)]
|
2016-08-23 21:33:19 +00:00
|
|
|
node2 = Node(project, compute, "node2", node_type="cloud")
|
2016-09-15 12:51:40 +00:00
|
|
|
node2._ports = [EthernetPort("E0", 0, 0, 4)]
|
2016-08-23 21:33:19 +00:00
|
|
|
|
|
|
|
link = Link(project)
|
2016-09-02 12:39:38 +00:00
|
|
|
link.create = AsyncioMagicMock()
|
2019-02-23 16:20:11 +00:00
|
|
|
link._project.emit_notification = MagicMock()
|
2016-08-23 21:33:19 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
2020-10-02 06:37:50 +00:00
|
|
|
with pytest.raises(ControllerError):
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node2, 0, 4)
|
2016-03-11 15:51:35 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_add_node_same_node(project, compute):
|
2016-10-03 10:31:01 +00:00
|
|
|
"""
|
|
|
|
Connection to the same node is not allowed
|
|
|
|
"""
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2016-10-03 10:31:01 +00:00
|
|
|
node1 = Node(project, compute, "node1", node_type="qemu")
|
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4), EthernetPort("E1", 0, 0, 5)]
|
|
|
|
|
|
|
|
link = Link(project)
|
|
|
|
link.create = AsyncioMagicMock()
|
2019-02-23 16:20:11 +00:00
|
|
|
link._project.emit_notification = MagicMock()
|
2016-10-03 10:31:01 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
2020-10-02 06:37:50 +00:00
|
|
|
with pytest.raises(ControllerError):
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 5)
|
2016-10-03 10:31:01 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_add_node_serial_to_ethernet(project, compute):
|
2016-09-15 12:51:40 +00:00
|
|
|
"""
|
|
|
|
Serial to ethernet connection is not allowed
|
|
|
|
"""
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2016-07-11 13:36:52 +00:00
|
|
|
node1 = Node(project, compute, "node1", node_type="qemu")
|
2016-09-15 12:51:40 +00:00
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4)]
|
2016-07-11 13:36:52 +00:00
|
|
|
node2 = Node(project, compute, "node2", node_type="qemu")
|
2016-09-15 12:51:40 +00:00
|
|
|
node2._ports = [SerialPort("E0", 0, 0, 4)]
|
|
|
|
|
|
|
|
link = Link(project)
|
|
|
|
link.create = AsyncioMagicMock()
|
2019-02-23 16:20:11 +00:00
|
|
|
link._project.emit_notification = MagicMock()
|
2016-09-15 12:51:40 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
2020-10-02 06:37:50 +00:00
|
|
|
with pytest.raises(ControllerError):
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node2, 0, 4)
|
|
|
|
|
2016-09-15 12:51:40 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_json(project, compute):
|
2016-09-15 12:51:40 +00:00
|
|
|
|
|
|
|
node1 = Node(project, compute, "node1", node_type="qemu")
|
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4)]
|
|
|
|
node2 = Node(project, compute, "node2", node_type="qemu")
|
|
|
|
node2._ports = [EthernetPort("E0", 0, 1, 3)]
|
2016-03-11 15:51:35 +00:00
|
|
|
|
2016-03-11 19:13:52 +00:00
|
|
|
link = Link(project)
|
2016-09-02 12:39:38 +00:00
|
|
|
link.create = AsyncioMagicMock()
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
|
|
|
await link.add_node(node2, 1, 3)
|
2021-04-17 14:04:28 +00:00
|
|
|
assert link.asdict() == {
|
2016-03-11 15:51:35 +00:00
|
|
|
"link_id": link.id,
|
2016-05-18 16:37:18 +00:00
|
|
|
"project_id": project.id,
|
2016-05-11 17:35:36 +00:00
|
|
|
"nodes": [
|
2016-03-11 15:51:35 +00:00
|
|
|
{
|
2016-05-11 17:35:36 +00:00
|
|
|
"node_id": node1.id,
|
2016-03-11 15:51:35 +00:00
|
|
|
"adapter_number": 0,
|
2016-07-01 15:38:32 +00:00
|
|
|
"port_number": 4,
|
|
|
|
'label': {
|
|
|
|
'text': '0/4',
|
2019-08-26 12:51:03 +00:00
|
|
|
'style': 'font-family: TypeWriter;font-size: 10.0;font-weight: bold;fill: #000000;fill-opacity: 1.0;'
|
2016-07-01 15:38:32 +00:00
|
|
|
}
|
2016-03-11 15:51:35 +00:00
|
|
|
},
|
|
|
|
{
|
2016-05-11 17:35:36 +00:00
|
|
|
"node_id": node2.id,
|
2016-03-11 15:51:35 +00:00
|
|
|
"adapter_number": 1,
|
2016-07-01 15:38:32 +00:00
|
|
|
"port_number": 3,
|
|
|
|
'label': {
|
|
|
|
'text': '1/3',
|
2019-08-26 12:51:03 +00:00
|
|
|
'style': 'font-family: TypeWriter;font-size: 10.0;font-weight: bold;fill: #000000;fill-opacity: 1.0;'
|
2016-07-01 15:38:32 +00:00
|
|
|
}
|
2016-03-11 15:51:35 +00:00
|
|
|
}
|
2016-04-21 14:11:42 +00:00
|
|
|
],
|
2017-06-30 08:22:30 +00:00
|
|
|
"filters": {},
|
2021-06-07 04:53:52 +00:00
|
|
|
"link_style": {},
|
2017-07-19 15:30:25 +00:00
|
|
|
"suspend": False,
|
2016-09-15 12:51:40 +00:00
|
|
|
"link_type": "ethernet",
|
2016-04-26 15:10:33 +00:00
|
|
|
"capturing": False,
|
2016-04-26 15:36:24 +00:00
|
|
|
"capture_file_name": None,
|
2019-04-01 12:47:31 +00:00
|
|
|
"capture_file_path": None,
|
|
|
|
"capture_compute_id": None
|
2016-03-11 15:51:35 +00:00
|
|
|
}
|
2021-04-17 14:04:28 +00:00
|
|
|
assert link.asdict(topology_dump=True) == {
|
2016-06-15 13:12:38 +00:00
|
|
|
"link_id": link.id,
|
|
|
|
"nodes": [
|
|
|
|
{
|
|
|
|
"node_id": node1.id,
|
|
|
|
"adapter_number": 0,
|
2016-07-01 15:38:32 +00:00
|
|
|
"port_number": 4,
|
|
|
|
'label': {
|
|
|
|
'text': '0/4',
|
2019-08-26 12:51:03 +00:00
|
|
|
'style': 'font-family: TypeWriter;font-size: 10.0;font-weight: bold;fill: #000000;fill-opacity: 1.0;'
|
2016-07-01 15:38:32 +00:00
|
|
|
}
|
2016-06-15 13:12:38 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"node_id": node2.id,
|
|
|
|
"adapter_number": 1,
|
2016-07-01 15:38:32 +00:00
|
|
|
"port_number": 3,
|
|
|
|
'label': {
|
|
|
|
'text': '1/3',
|
2019-08-26 12:51:03 +00:00
|
|
|
'style': 'font-family: TypeWriter;font-size: 10.0;font-weight: bold;fill: #000000;fill-opacity: 1.0;'
|
2016-07-01 15:38:32 +00:00
|
|
|
}
|
2016-06-15 13:12:38 +00:00
|
|
|
}
|
2017-06-30 08:22:30 +00:00
|
|
|
],
|
2021-06-07 04:53:52 +00:00
|
|
|
"link_style": {},
|
2017-07-19 15:30:25 +00:00
|
|
|
"filters": {},
|
|
|
|
"suspend": False
|
2016-06-15 13:12:38 +00:00
|
|
|
}
|
2016-04-21 10:14:09 +00:00
|
|
|
|
2016-04-21 11:49:29 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_json_serial_link(project, compute):
|
|
|
|
|
2016-09-15 12:51:40 +00:00
|
|
|
node1 = Node(project, compute, "node1", node_type="qemu")
|
|
|
|
node1._ports = [SerialPort("S0", 0, 0, 4)]
|
|
|
|
node2 = Node(project, compute, "node2", node_type="qemu")
|
|
|
|
node2._ports = [SerialPort("S0", 0, 1, 3)]
|
|
|
|
|
|
|
|
link = Link(project)
|
|
|
|
link.create = AsyncioMagicMock()
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
|
|
|
await link.add_node(node2, 1, 3)
|
2021-04-17 14:04:28 +00:00
|
|
|
assert link.asdict()["link_type"] == "serial"
|
2016-09-15 12:51:40 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_default_capture_file_name(project, compute):
|
|
|
|
|
2016-07-11 13:36:52 +00:00
|
|
|
node1 = Node(project, compute, "Hello@", node_type="qemu")
|
2016-09-15 12:51:40 +00:00
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4)]
|
2016-07-11 13:36:52 +00:00
|
|
|
node2 = Node(project, compute, "w0.rld", node_type="qemu")
|
2016-09-15 12:51:40 +00:00
|
|
|
node2._ports = [EthernetPort("E0", 0, 1, 3)]
|
2016-04-21 10:14:09 +00:00
|
|
|
|
|
|
|
link = Link(project)
|
2016-09-02 12:39:38 +00:00
|
|
|
link.create = AsyncioMagicMock()
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
|
|
|
await link.add_node(node2, 1, 3)
|
2016-04-26 15:10:33 +00:00
|
|
|
assert link.default_capture_file_name() == "Hello_0-4_to_w0rld_1-3.pcap"
|
2016-05-18 19:28:37 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_start_capture(link):
|
2018-10-15 10:05:49 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
|
2018-10-15 10:05:49 +00:00
|
|
|
async def fake_reader():
|
2016-05-18 19:28:37 +00:00
|
|
|
return AsyncioBytesIO()
|
|
|
|
|
|
|
|
link.read_pcap_from_source = fake_reader
|
2019-02-23 16:20:11 +00:00
|
|
|
link._project.emit_notification = MagicMock()
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.start_capture(capture_file_name="test.pcap")
|
2016-05-18 19:28:37 +00:00
|
|
|
assert link._capturing
|
|
|
|
assert link._capture_file_name == "test.pcap"
|
2021-04-17 14:04:28 +00:00
|
|
|
link._project.emit_notification.assert_called_with("link.updated", link.asdict())
|
2016-05-18 19:28:37 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_stop_capture(link):
|
|
|
|
|
2016-05-18 19:28:37 +00:00
|
|
|
link._capturing = True
|
2019-02-23 16:20:11 +00:00
|
|
|
link._project.emit_notification = MagicMock()
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.stop_capture()
|
2016-05-18 19:28:37 +00:00
|
|
|
assert link._capturing is False
|
2021-04-17 14:04:28 +00:00
|
|
|
link._project.emit_notification.assert_called_with("link.updated", link.asdict())
|
2016-11-22 15:05:00 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_delete(project, compute):
|
|
|
|
|
2016-11-22 15:05:00 +00:00
|
|
|
node1 = Node(project, compute, "node1", node_type="qemu")
|
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4)]
|
|
|
|
|
|
|
|
link = Link(project)
|
|
|
|
link.create = AsyncioMagicMock()
|
2019-02-23 16:20:11 +00:00
|
|
|
link._project.emit_notification = MagicMock()
|
2016-11-22 15:05:00 +00:00
|
|
|
project.dump = AsyncioMagicMock()
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
2016-11-22 15:05:00 +00:00
|
|
|
|
|
|
|
node2 = Node(project, compute, "node2", node_type="qemu")
|
|
|
|
node2._ports = [EthernetPort("E0", 0, 0, 4)]
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node2, 0, 4)
|
2018-06-06 13:46:44 +00:00
|
|
|
assert link in node2.links
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.delete()
|
2018-06-06 13:46:44 +00:00
|
|
|
assert link not in node2.links
|
2017-06-30 08:22:30 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_update_filters(project, compute):
|
|
|
|
|
2017-06-30 08:22:30 +00:00
|
|
|
node1 = Node(project, compute, "node1", node_type="qemu")
|
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4)]
|
|
|
|
|
|
|
|
link = Link(project)
|
|
|
|
link.create = AsyncioMagicMock()
|
2019-02-23 16:20:11 +00:00
|
|
|
link._project.emit_notification = MagicMock()
|
2017-06-30 08:22:30 +00:00
|
|
|
project.dump = AsyncioMagicMock()
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
2017-06-30 08:22:30 +00:00
|
|
|
|
|
|
|
node2 = Node(project, compute, "node2", node_type="qemu")
|
|
|
|
node2._ports = [EthernetPort("E0", 0, 0, 4)]
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node2, 0, 4)
|
2017-06-30 08:22:30 +00:00
|
|
|
|
|
|
|
link.update = AsyncioMagicMock()
|
|
|
|
assert link._created
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.update_filters({
|
2017-07-11 15:30:29 +00:00
|
|
|
"packet_loss": [10],
|
|
|
|
"delay": [50, 10],
|
|
|
|
"frequency_drop": [0],
|
|
|
|
"bpf": [" \n "]
|
2020-06-16 04:29:03 +00:00
|
|
|
})
|
2017-06-30 08:22:30 +00:00
|
|
|
assert link.filters == {
|
|
|
|
"packet_loss": [10],
|
|
|
|
"delay": [50, 10]
|
|
|
|
}
|
|
|
|
assert link.update.called
|
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_available_filters(project, compute):
|
|
|
|
|
2017-07-12 12:50:33 +00:00
|
|
|
node1 = Node(project, compute, "node1", node_type="ethernet_switch")
|
2017-06-30 08:22:30 +00:00
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 4)]
|
|
|
|
|
|
|
|
link = Link(project)
|
|
|
|
link.create = AsyncioMagicMock()
|
|
|
|
assert link.available_filters() == []
|
|
|
|
|
2017-07-12 12:50:33 +00:00
|
|
|
# Ethernet switch is not supported should return 0 filters
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node1, 0, 4)
|
2017-06-30 08:22:30 +00:00
|
|
|
assert link.available_filters() == []
|
|
|
|
|
|
|
|
node2 = Node(project, compute, "node2", node_type="vpcs")
|
|
|
|
node2._ports = [EthernetPort("E0", 0, 0, 4)]
|
2020-06-16 04:29:03 +00:00
|
|
|
await link.add_node(node2, 0, 4)
|
2017-06-30 08:22:30 +00:00
|
|
|
assert len(link.available_filters()) > 0
|