2016-03-11 15:51:35 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 GNS3 Technologies Inc.
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2016-04-26 15:10:33 +00:00
|
|
|
import os
|
2016-03-11 15:51:35 +00:00
|
|
|
import pytest
|
2016-04-26 15:10:33 +00:00
|
|
|
import asyncio
|
2016-03-18 15:55:54 +00:00
|
|
|
from unittest.mock import MagicMock
|
2016-03-11 15:51:35 +00:00
|
|
|
|
2016-04-22 14:22:03 +00:00
|
|
|
|
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-04-15 15:57:06 +00:00
|
|
|
from gns3server.controller.compute import Compute
|
2016-03-11 15:51:35 +00:00
|
|
|
from gns3server.controller.project import Project
|
|
|
|
|
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
|
2016-05-18 16:37:18 +00:00
|
|
|
def project(controller):
|
|
|
|
return Project(controller=controller)
|
2016-03-11 15:51:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2016-04-15 15:57:06 +00:00
|
|
|
def compute():
|
|
|
|
return Compute("example.com", controller=MagicMock())
|
2016-03-11 15:51:35 +00:00
|
|
|
|
|
|
|
|
2016-04-26 15:10:33 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def link(async_run, project, compute):
|
2016-06-11 23:31:30 +00:00
|
|
|
node1 = Node(project, compute, "node1")
|
|
|
|
node2 = Node(project, compute, "node2")
|
2016-04-26 15:10:33 +00:00
|
|
|
|
|
|
|
link = Link(project)
|
2016-05-11 17:35:36 +00:00
|
|
|
async_run(link.add_node(node1, 0, 4))
|
|
|
|
async_run(link.add_node(node2, 1, 3))
|
2016-04-26 15:10:33 +00:00
|
|
|
return link
|
|
|
|
|
|
|
|
|
2016-05-11 17:35:36 +00:00
|
|
|
def test_addNode(async_run, project, compute):
|
2016-06-11 23:31:30 +00:00
|
|
|
node1 = Node(project, compute, "node1")
|
2016-03-11 15:51:35 +00:00
|
|
|
|
2016-03-11 19:13:52 +00:00
|
|
|
link = Link(project)
|
2016-06-15 13:12:38 +00:00
|
|
|
project.dump = AsyncioMagicMock()
|
2016-05-11 17:35:36 +00:00
|
|
|
async_run(link.add_node(node1, 0, 4))
|
|
|
|
assert link._nodes == [
|
2016-03-11 15:51:35 +00:00
|
|
|
{
|
2016-05-11 17:35:36 +00:00
|
|
|
"node": node1,
|
2016-03-11 15:51:35 +00:00
|
|
|
"adapter_number": 0,
|
|
|
|
"port_number": 4
|
|
|
|
}
|
|
|
|
]
|
2016-06-15 13:12:38 +00:00
|
|
|
assert project.dump.called
|
2016-03-11 15:51:35 +00:00
|
|
|
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_json(async_run, project, compute):
|
2016-06-11 23:31:30 +00:00
|
|
|
node1 = Node(project, compute, "node1")
|
|
|
|
node2 = Node(project, compute, "node2")
|
2016-03-11 15:51:35 +00:00
|
|
|
|
2016-03-11 19:13:52 +00:00
|
|
|
link = Link(project)
|
2016-05-11 17:35:36 +00:00
|
|
|
async_run(link.add_node(node1, 0, 4))
|
|
|
|
async_run(link.add_node(node2, 1, 3))
|
2016-03-11 15:51:35 +00:00
|
|
|
assert link.__json__() == {
|
|
|
|
"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,
|
|
|
|
"port_number": 4
|
|
|
|
},
|
|
|
|
{
|
2016-05-11 17:35:36 +00:00
|
|
|
"node_id": node2.id,
|
2016-03-11 15:51:35 +00:00
|
|
|
"adapter_number": 1,
|
|
|
|
"port_number": 3
|
|
|
|
}
|
2016-04-21 14:11:42 +00:00
|
|
|
],
|
2016-04-26 15:10:33 +00:00
|
|
|
"capturing": False,
|
2016-04-26 15:36:24 +00:00
|
|
|
"capture_file_name": None,
|
|
|
|
"capture_file_path": None
|
2016-03-11 15:51:35 +00:00
|
|
|
}
|
2016-06-15 13:12:38 +00:00
|
|
|
assert link.__json__(topology_dump=True) == {
|
|
|
|
"link_id": link.id,
|
|
|
|
"nodes": [
|
|
|
|
{
|
|
|
|
"node_id": node1.id,
|
|
|
|
"adapter_number": 0,
|
|
|
|
"port_number": 4
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"node_id": node2.id,
|
|
|
|
"adapter_number": 1,
|
|
|
|
"port_number": 3
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2016-04-21 10:14:09 +00:00
|
|
|
|
2016-04-21 11:49:29 +00:00
|
|
|
|
2016-04-26 15:10:33 +00:00
|
|
|
def test_start_streaming_pcap(link, async_run, tmpdir, project):
|
|
|
|
@asyncio.coroutine
|
|
|
|
def fake_reader():
|
|
|
|
output = AsyncioBytesIO()
|
|
|
|
yield from output.write(b"hello")
|
|
|
|
output.seek(0)
|
|
|
|
return output
|
|
|
|
|
|
|
|
link._capture_file_name = "test.pcap"
|
|
|
|
link._capturing = True
|
|
|
|
link.read_pcap_from_source = fake_reader
|
|
|
|
async_run(link._start_streaming_pcap())
|
|
|
|
with open(os.path.join(project.captures_directory, "test.pcap"), "rb") as f:
|
|
|
|
c = f.read()
|
|
|
|
assert c == b"hello"
|
|
|
|
|
|
|
|
|
|
|
|
def test_default_capture_file_name(project, compute, async_run):
|
2016-06-11 23:31:30 +00:00
|
|
|
node1 = Node(project, compute, "Hello@")
|
|
|
|
node2 = Node(project, compute, "w0.rld")
|
2016-04-21 10:14:09 +00:00
|
|
|
|
|
|
|
link = Link(project)
|
2016-05-11 17:35:36 +00:00
|
|
|
async_run(link.add_node(node1, 0, 4))
|
|
|
|
async_run(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
|
|
|
|
|
|
|
|
|
|
|
def test_start_capture(link, async_run, tmpdir, project, controller):
|
|
|
|
@asyncio.coroutine
|
|
|
|
def fake_reader():
|
|
|
|
return AsyncioBytesIO()
|
|
|
|
|
|
|
|
link.read_pcap_from_source = fake_reader
|
|
|
|
controller._notification = MagicMock()
|
|
|
|
async_run(link.start_capture(capture_file_name="test.pcap"))
|
|
|
|
assert link._capturing
|
|
|
|
assert link._capture_file_name == "test.pcap"
|
|
|
|
controller._notification.emit.assert_called_with("link.updated", link.__json__())
|
|
|
|
|
|
|
|
|
|
|
|
def test_stop_capture(link, async_run, tmpdir, project, controller):
|
|
|
|
link._capturing = True
|
|
|
|
controller._notification = MagicMock()
|
|
|
|
async_run(link.stop_capture())
|
|
|
|
assert link._capturing is False
|
|
|
|
controller._notification.emit.assert_called_with("link.updated", link.__json__())
|