2016-03-11 15:51:35 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2015 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/>.
|
|
|
|
|
|
|
|
"""
|
|
|
|
This test suite check /project endpoint
|
|
|
|
"""
|
|
|
|
|
|
|
|
import asyncio
|
|
|
|
import aiohttp
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
2017-07-19 14:02:14 +00:00
|
|
|
from unittest.mock import patch, MagicMock
|
2016-03-15 09:45:05 +00:00
|
|
|
from tests.utils import asyncio_patch, AsyncioMagicMock
|
2016-03-11 15:51:35 +00:00
|
|
|
|
|
|
|
from gns3server.controller import Controller
|
2016-09-15 12:51:40 +00:00
|
|
|
from gns3server.controller.ports.ethernet_port import EthernetPort
|
2017-06-30 08:22:30 +00:00
|
|
|
from gns3server.controller.link import Link, FILTERS
|
2016-03-11 15:51:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2016-04-21 10:14:09 +00:00
|
|
|
def compute(http_controller, async_run):
|
|
|
|
compute = MagicMock()
|
|
|
|
compute.id = "example.com"
|
|
|
|
Controller.instance()._computes = {"example.com": compute}
|
|
|
|
return compute
|
2016-03-11 15:51:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def project(http_controller, async_run):
|
2016-07-11 13:36:52 +00:00
|
|
|
return async_run(Controller.instance().add_project(name="Test"))
|
2016-03-11 15:51:35 +00:00
|
|
|
|
|
|
|
|
2016-04-21 10:14:09 +00:00
|
|
|
def test_create_link(http_controller, tmpdir, project, compute, async_run):
|
2016-03-15 09:45:05 +00:00
|
|
|
response = MagicMock()
|
|
|
|
response.json = {"console": 2048}
|
2016-04-21 10:14:09 +00:00
|
|
|
compute.post = AsyncioMagicMock(return_value=response)
|
2016-03-15 09:45:05 +00:00
|
|
|
|
2016-07-11 13:36:52 +00:00
|
|
|
node1 = async_run(project.add_node(compute, "node1", None, node_type="qemu"))
|
2016-09-15 12:51:40 +00:00
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 3)]
|
2016-07-11 13:36:52 +00:00
|
|
|
node2 = async_run(project.add_node(compute, "node2", None, node_type="qemu"))
|
2016-09-15 12:51:40 +00:00
|
|
|
node2._ports = [EthernetPort("E0", 0, 2, 4)]
|
2016-03-11 15:51:35 +00:00
|
|
|
|
2017-06-30 08:22:30 +00:00
|
|
|
filters = {
|
|
|
|
"latency": [10],
|
|
|
|
"frequency_drop": [50]
|
|
|
|
}
|
|
|
|
|
2016-03-14 16:40:27 +00:00
|
|
|
with asyncio_patch("gns3server.controller.udp_link.UDPLink.create") as mock:
|
2016-03-14 15:51:47 +00:00
|
|
|
response = http_controller.post("/projects/{}/links".format(project.id), {
|
2016-05-11 17:35:36 +00:00
|
|
|
"nodes": [
|
2016-03-14 15:51:47 +00:00
|
|
|
{
|
2016-05-11 17:35:36 +00:00
|
|
|
"node_id": node1.id,
|
2016-03-14 15:51:47 +00:00
|
|
|
"adapter_number": 0,
|
2016-07-01 15:38:32 +00:00
|
|
|
"port_number": 3,
|
|
|
|
"label": {
|
|
|
|
"text": "Text",
|
|
|
|
"x": 42,
|
|
|
|
"y": 0
|
|
|
|
}
|
2016-03-14 15:51:47 +00:00
|
|
|
},
|
|
|
|
{
|
2016-05-11 17:35:36 +00:00
|
|
|
"node_id": node2.id,
|
2016-03-14 15:51:47 +00:00
|
|
|
"adapter_number": 2,
|
|
|
|
"port_number": 4
|
|
|
|
}
|
2017-06-30 08:22:30 +00:00
|
|
|
],
|
|
|
|
"filters": filters
|
2016-03-14 15:51:47 +00:00
|
|
|
}, example=True)
|
2016-03-14 16:40:27 +00:00
|
|
|
assert mock.called
|
2016-03-11 15:51:35 +00:00
|
|
|
assert response.status == 201
|
|
|
|
assert response.json["link_id"] is not None
|
2016-05-11 17:35:36 +00:00
|
|
|
assert len(response.json["nodes"]) == 2
|
2016-07-01 15:38:32 +00:00
|
|
|
assert response.json["nodes"][0]["label"]["x"] == 42
|
2016-10-03 10:31:01 +00:00
|
|
|
assert len(project.links) == 1
|
2017-06-30 08:22:30 +00:00
|
|
|
assert list(project.links.values())[0].filters == filters
|
2016-10-03 10:31:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_create_link_failure(http_controller, tmpdir, project, compute, async_run):
|
|
|
|
"""
|
|
|
|
Make sure the link is deleted if we failed to create the link.
|
|
|
|
|
|
|
|
The failure is trigger by connecting the link to himself
|
|
|
|
"""
|
|
|
|
response = MagicMock()
|
|
|
|
response.json = {"console": 2048}
|
|
|
|
compute.post = AsyncioMagicMock(return_value=response)
|
|
|
|
|
|
|
|
node1 = async_run(project.add_node(compute, "node1", None, node_type="qemu"))
|
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 3), EthernetPort("E0", 0, 0, 4)]
|
|
|
|
|
2017-07-19 14:02:14 +00:00
|
|
|
with asyncio_patch("gns3server.controller.udp_link.UDPLink.create"):
|
2016-10-03 10:31:01 +00:00
|
|
|
response = http_controller.post("/projects/{}/links".format(project.id), {
|
|
|
|
"nodes": [
|
|
|
|
{
|
|
|
|
"node_id": node1.id,
|
|
|
|
"adapter_number": 0,
|
|
|
|
"port_number": 3,
|
|
|
|
"label": {
|
|
|
|
"text": "Text",
|
|
|
|
"x": 42,
|
|
|
|
"y": 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"node_id": node1.id,
|
|
|
|
"adapter_number": 0,
|
|
|
|
"port_number": 4
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}, example=True)
|
|
|
|
#assert mock.called
|
|
|
|
assert response.status == 409
|
|
|
|
assert len(project.links) == 0
|
2016-07-01 15:38:32 +00:00
|
|
|
|
|
|
|
|
2018-01-05 12:44:46 +00:00
|
|
|
def test_get_link(http_controller, tmpdir, project, compute, async_run):
|
|
|
|
response = MagicMock()
|
|
|
|
response.json = {"console": 2048}
|
|
|
|
compute.post = AsyncioMagicMock(return_value=response)
|
|
|
|
|
|
|
|
node1 = async_run(project.add_node(compute, "node1", None, node_type="qemu"))
|
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 3)]
|
|
|
|
node2 = async_run(project.add_node(compute, "node2", None, node_type="qemu"))
|
|
|
|
node2._ports = [EthernetPort("E0", 0, 2, 4)]
|
|
|
|
|
|
|
|
with asyncio_patch("gns3server.controller.udp_link.UDPLink.create"):
|
|
|
|
response = http_controller.post("/projects/{}/links".format(project.id), {
|
|
|
|
"nodes": [
|
|
|
|
{
|
|
|
|
"node_id": node1.id,
|
|
|
|
"adapter_number": 0,
|
|
|
|
"port_number": 3,
|
|
|
|
"label": {
|
|
|
|
"text": "Text",
|
|
|
|
"x": 42,
|
|
|
|
"y": 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"node_id": node2.id,
|
|
|
|
"adapter_number": 2,
|
|
|
|
"port_number": 4
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
link_id = response.json["link_id"]
|
|
|
|
assert response.json["nodes"][0]["label"]["x"] == 42
|
|
|
|
response = http_controller.get("/projects/{}/links/{}".format(project.id, link_id), example=True)
|
|
|
|
assert response.status == 200
|
|
|
|
assert response.json["nodes"][0]["label"]["x"] == 42
|
|
|
|
|
|
|
|
|
2017-07-19 15:30:25 +00:00
|
|
|
def test_update_link_suspend(http_controller, tmpdir, project, compute, async_run):
|
|
|
|
response = MagicMock()
|
|
|
|
response.json = {"console": 2048}
|
|
|
|
compute.post = AsyncioMagicMock(return_value=response)
|
|
|
|
|
|
|
|
node1 = async_run(project.add_node(compute, "node1", None, node_type="qemu"))
|
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 3)]
|
|
|
|
node2 = async_run(project.add_node(compute, "node2", None, node_type="qemu"))
|
|
|
|
node2._ports = [EthernetPort("E0", 0, 2, 4)]
|
|
|
|
|
|
|
|
with asyncio_patch("gns3server.controller.udp_link.UDPLink.create"):
|
|
|
|
response = http_controller.post("/projects/{}/links".format(project.id), {
|
|
|
|
"nodes": [
|
|
|
|
{
|
|
|
|
"node_id": node1.id,
|
|
|
|
"adapter_number": 0,
|
|
|
|
"port_number": 3,
|
|
|
|
"label": {
|
|
|
|
"text": "Text",
|
|
|
|
"x": 42,
|
|
|
|
"y": 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"node_id": node2.id,
|
|
|
|
"adapter_number": 2,
|
|
|
|
"port_number": 4
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
link_id = response.json["link_id"]
|
|
|
|
assert response.json["nodes"][0]["label"]["x"] == 42
|
|
|
|
response = http_controller.put("/projects/{}/links/{}".format(project.id, link_id), {
|
|
|
|
"nodes": [
|
|
|
|
{
|
|
|
|
"node_id": node1.id,
|
|
|
|
"adapter_number": 0,
|
|
|
|
"port_number": 3,
|
|
|
|
"label": {
|
|
|
|
"text": "Hello",
|
|
|
|
"x": 64,
|
|
|
|
"y": 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"node_id": node2.id,
|
|
|
|
"adapter_number": 2,
|
|
|
|
"port_number": 4
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"suspend": True
|
|
|
|
})
|
|
|
|
assert response.status == 201
|
|
|
|
assert response.json["nodes"][0]["label"]["x"] == 64
|
|
|
|
assert response.json["suspend"]
|
|
|
|
assert response.json["filters"] == {}
|
|
|
|
|
|
|
|
|
2016-07-01 15:38:32 +00:00
|
|
|
def test_update_link(http_controller, tmpdir, project, compute, async_run):
|
|
|
|
response = MagicMock()
|
|
|
|
response.json = {"console": 2048}
|
|
|
|
compute.post = AsyncioMagicMock(return_value=response)
|
|
|
|
|
2016-07-11 13:36:52 +00:00
|
|
|
node1 = async_run(project.add_node(compute, "node1", None, node_type="qemu"))
|
2016-09-15 12:51:40 +00:00
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 3)]
|
2016-07-11 13:36:52 +00:00
|
|
|
node2 = async_run(project.add_node(compute, "node2", None, node_type="qemu"))
|
2016-09-15 12:51:40 +00:00
|
|
|
node2._ports = [EthernetPort("E0", 0, 2, 4)]
|
2016-07-01 15:38:32 +00:00
|
|
|
|
2017-06-30 08:22:30 +00:00
|
|
|
filters = {
|
2017-07-10 18:35:02 +00:00
|
|
|
"latency": [10],
|
|
|
|
"frequency_drop": [50]
|
2017-06-30 08:22:30 +00:00
|
|
|
}
|
|
|
|
|
2017-07-19 14:02:14 +00:00
|
|
|
with asyncio_patch("gns3server.controller.udp_link.UDPLink.create"):
|
2016-07-01 15:38:32 +00:00
|
|
|
response = http_controller.post("/projects/{}/links".format(project.id), {
|
|
|
|
"nodes": [
|
|
|
|
{
|
|
|
|
"node_id": node1.id,
|
|
|
|
"adapter_number": 0,
|
|
|
|
"port_number": 3,
|
|
|
|
"label": {
|
|
|
|
"text": "Text",
|
|
|
|
"x": 42,
|
|
|
|
"y": 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"node_id": node2.id,
|
|
|
|
"adapter_number": 2,
|
|
|
|
"port_number": 4
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
link_id = response.json["link_id"]
|
|
|
|
assert response.json["nodes"][0]["label"]["x"] == 42
|
|
|
|
response = http_controller.put("/projects/{}/links/{}".format(project.id, link_id), {
|
|
|
|
"nodes": [
|
|
|
|
{
|
|
|
|
"node_id": node1.id,
|
|
|
|
"adapter_number": 0,
|
|
|
|
"port_number": 3,
|
|
|
|
"label": {
|
|
|
|
"text": "Hello",
|
|
|
|
"x": 64,
|
|
|
|
"y": 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"node_id": node2.id,
|
|
|
|
"adapter_number": 2,
|
|
|
|
"port_number": 4
|
|
|
|
}
|
2017-06-30 08:22:30 +00:00
|
|
|
],
|
|
|
|
"filters": filters
|
2018-01-05 12:44:46 +00:00
|
|
|
}, example=True)
|
2016-07-01 15:38:32 +00:00
|
|
|
assert response.status == 201
|
|
|
|
assert response.json["nodes"][0]["label"]["x"] == 64
|
2017-06-30 08:22:30 +00:00
|
|
|
assert list(project.links.values())[0].filters == filters
|
2016-03-14 16:40:27 +00:00
|
|
|
|
|
|
|
|
2016-05-17 14:10:47 +00:00
|
|
|
def test_list_link(http_controller, tmpdir, project, compute, async_run):
|
|
|
|
response = MagicMock()
|
|
|
|
response.json = {"console": 2048}
|
|
|
|
compute.post = AsyncioMagicMock(return_value=response)
|
|
|
|
|
2016-07-11 13:36:52 +00:00
|
|
|
node1 = async_run(project.add_node(compute, "node1", None, node_type="qemu"))
|
2016-09-15 12:51:40 +00:00
|
|
|
node1._ports = [EthernetPort("E0", 0, 0, 3)]
|
2016-07-11 13:36:52 +00:00
|
|
|
node2 = async_run(project.add_node(compute, "node2", None, node_type="qemu"))
|
2016-09-15 12:51:40 +00:00
|
|
|
node2._ports = [EthernetPort("E0", 0, 2, 4)]
|
2016-05-17 14:10:47 +00:00
|
|
|
|
2017-06-30 08:22:30 +00:00
|
|
|
filters = {
|
2017-07-10 18:35:02 +00:00
|
|
|
"latency": [10],
|
|
|
|
"frequency_drop": [50]
|
2017-06-30 08:22:30 +00:00
|
|
|
}
|
|
|
|
nodes = [
|
|
|
|
{
|
|
|
|
"node_id": node1.id,
|
|
|
|
"adapter_number": 0,
|
|
|
|
"port_number": 3
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"node_id": node2.id,
|
|
|
|
"adapter_number": 2,
|
|
|
|
"port_number": 4
|
|
|
|
}
|
|
|
|
]
|
2017-07-19 14:02:14 +00:00
|
|
|
with asyncio_patch("gns3server.controller.udp_link.UDPLink.create"):
|
2016-05-17 14:10:47 +00:00
|
|
|
response = http_controller.post("/projects/{}/links".format(project.id), {
|
2017-06-30 08:22:30 +00:00
|
|
|
"nodes": nodes,
|
|
|
|
"filters": filters
|
2016-05-17 14:10:47 +00:00
|
|
|
})
|
|
|
|
response = http_controller.get("/projects/{}/links".format(project.id), example=True)
|
|
|
|
assert response.status == 200
|
|
|
|
assert len(response.json) == 1
|
2017-06-30 08:22:30 +00:00
|
|
|
assert response.json[0]["filters"] == filters
|
2016-05-17 14:10:47 +00:00
|
|
|
|
|
|
|
|
2016-04-21 10:14:09 +00:00
|
|
|
def test_start_capture(http_controller, tmpdir, project, compute, async_run):
|
|
|
|
link = Link(project)
|
|
|
|
project._links = {link.id: link}
|
|
|
|
with asyncio_patch("gns3server.controller.link.Link.start_capture") as mock:
|
|
|
|
response = http_controller.post("/projects/{}/links/{}/start_capture".format(project.id, link.id), example=True)
|
|
|
|
assert mock.called
|
2016-04-26 16:13:15 +00:00
|
|
|
assert response.status == 201
|
2016-03-14 16:40:27 +00:00
|
|
|
|
2016-04-21 10:14:09 +00:00
|
|
|
|
|
|
|
def test_stop_capture(http_controller, tmpdir, project, compute, async_run):
|
2016-03-14 16:40:27 +00:00
|
|
|
link = Link(project)
|
|
|
|
project._links = {link.id: link}
|
2016-04-21 10:14:09 +00:00
|
|
|
with asyncio_patch("gns3server.controller.link.Link.stop_capture") as mock:
|
|
|
|
response = http_controller.post("/projects/{}/links/{}/stop_capture".format(project.id, link.id), example=True)
|
|
|
|
assert mock.called
|
2016-04-26 16:13:15 +00:00
|
|
|
assert response.status == 201
|
2016-04-21 10:14:09 +00:00
|
|
|
|
|
|
|
|
2016-09-02 09:20:59 +00:00
|
|
|
def test_pcap(http_controller, tmpdir, project, compute, loop):
|
|
|
|
@asyncio.coroutine
|
|
|
|
def go(future):
|
|
|
|
response = yield from aiohttp.request("GET", http_controller.get_url("/projects/{}/links/{}/pcap".format(project.id, link.id)))
|
|
|
|
response.body = yield from response.content.read(5)
|
|
|
|
response.close()
|
|
|
|
future.set_result(response)
|
|
|
|
|
2016-04-22 14:22:03 +00:00
|
|
|
link = Link(project)
|
2016-04-26 15:10:33 +00:00
|
|
|
link._capture_file_name = "test"
|
|
|
|
link._capturing = True
|
|
|
|
with open(link.capture_file_path, "w+") as f:
|
|
|
|
f.write("hello")
|
2016-04-22 14:22:03 +00:00
|
|
|
project._links = {link.id: link}
|
2016-09-02 09:20:59 +00:00
|
|
|
|
|
|
|
future = asyncio.Future()
|
2018-01-24 10:11:53 +00:00
|
|
|
asyncio.ensure_future(go(future))
|
2016-09-02 09:20:59 +00:00
|
|
|
response = loop.run_until_complete(future)
|
|
|
|
assert response.status == 200
|
|
|
|
assert b'hello' == response.body
|
2016-04-22 14:22:03 +00:00
|
|
|
|
|
|
|
|
2016-04-21 10:14:09 +00:00
|
|
|
def test_delete_link(http_controller, tmpdir, project, compute, async_run):
|
|
|
|
|
|
|
|
link = Link(project)
|
|
|
|
project._links = {link.id: link}
|
|
|
|
with asyncio_patch("gns3server.controller.link.Link.delete") as mock:
|
2016-03-14 16:40:27 +00:00
|
|
|
response = http_controller.delete("/projects/{}/links/{}".format(project.id, link.id), example=True)
|
2016-04-21 10:14:09 +00:00
|
|
|
assert mock.called
|
2016-03-14 19:54:05 +00:00
|
|
|
assert response.status == 204
|
2017-06-30 08:22:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_list_filters(http_controller, tmpdir, project, async_run):
|
|
|
|
|
|
|
|
link = Link(project)
|
|
|
|
project._links = {link.id: link}
|
|
|
|
with patch("gns3server.controller.link.Link.available_filters", return_value=FILTERS) as mock:
|
|
|
|
response = http_controller.get("/projects/{}/links/{}/available_filters".format(project.id, link.id), example=True)
|
|
|
|
assert mock.called
|
|
|
|
assert response.status == 200
|
|
|
|
assert response.json == FILTERS
|