2015-02-11 14:37:05 +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/>.
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
import os
|
|
|
|
import stat
|
2015-04-27 13:09:42 +00:00
|
|
|
import sys
|
2015-04-24 13:12:58 +00:00
|
|
|
import uuid
|
2015-03-06 13:46:31 +00:00
|
|
|
|
2015-02-11 14:37:05 +00:00
|
|
|
from tests.utils import asyncio_patch
|
2020-06-16 04:29:03 +00:00
|
|
|
from unittest.mock import patch
|
2015-02-11 14:37:05 +00:00
|
|
|
|
2015-04-27 13:09:42 +00:00
|
|
|
pytestmark = pytest.mark.skipif(sys.platform.startswith("win"), reason="Not supported on Windows")
|
|
|
|
|
2015-02-11 14:37:05 +00:00
|
|
|
|
|
|
|
@pytest.fixture
|
2016-06-07 13:34:04 +00:00
|
|
|
def fake_iou_bin(images_dir):
|
2015-02-11 14:37:05 +00:00
|
|
|
"""Create a fake IOU image on disk"""
|
|
|
|
|
2016-06-07 13:34:04 +00:00
|
|
|
path = os.path.join(images_dir, "IOU", "iou.bin")
|
2015-02-11 14:37:05 +00:00
|
|
|
with open(path, "w+") as f:
|
|
|
|
f.write('\x7fELF\x01\x01\x01')
|
|
|
|
os.chmod(path, stat.S_IREAD | stat.S_IEXEC)
|
|
|
|
return path
|
|
|
|
|
2015-02-11 14:57:02 +00:00
|
|
|
|
2015-02-11 14:37:05 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def base_params(tmpdir, fake_iou_bin):
|
|
|
|
"""Return standard parameters"""
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2020-02-10 07:20:49 +00:00
|
|
|
return {"application_id": 42, "name": "PC TEST 1", "path": "iou.bin"}
|
2015-02-11 14:37:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2020-06-16 04:29:03 +00:00
|
|
|
async def vm(compute_api, compute_project, base_params):
|
|
|
|
|
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes".format(project_id=compute_project.id), base_params)
|
2015-02-11 14:37:05 +00:00
|
|
|
assert response.status == 201
|
|
|
|
return response.json
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
def startup_config_file(compute_project, vm):
|
|
|
|
|
|
|
|
directory = os.path.join(compute_project.path, "project-files", "iou", vm["node_id"])
|
2015-02-17 13:52:51 +00:00
|
|
|
os.makedirs(directory, exist_ok=True)
|
2015-06-06 21:15:03 +00:00
|
|
|
return os.path.join(directory, "startup-config.cfg")
|
2015-02-13 21:16:43 +00:00
|
|
|
|
2015-02-16 09:05:17 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_create(compute_api, compute_project, base_params):
|
|
|
|
|
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes".format(project_id=compute_project.id), base_params)
|
2015-02-12 20:02:52 +00:00
|
|
|
assert response.status == 201
|
2016-05-11 17:35:36 +00:00
|
|
|
assert response.route == "/projects/{project_id}/iou/nodes"
|
2015-02-12 20:02:52 +00:00
|
|
|
assert response.json["name"] == "PC TEST 1"
|
2020-06-16 04:29:03 +00:00
|
|
|
assert response.json["project_id"] == compute_project.id
|
2015-02-12 20:02:52 +00:00
|
|
|
assert response.json["serial_adapters"] == 2
|
|
|
|
assert response.json["ethernet_adapters"] == 2
|
|
|
|
assert response.json["ram"] == 256
|
|
|
|
assert response.json["nvram"] == 128
|
2015-02-16 09:05:17 +00:00
|
|
|
assert response.json["l1_keepalives"] is False
|
2015-02-12 20:02:52 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_create_with_params(compute_api, compute_project, base_params):
|
|
|
|
|
2015-02-12 20:02:52 +00:00
|
|
|
params = base_params
|
|
|
|
params["ram"] = 1024
|
|
|
|
params["nvram"] = 512
|
|
|
|
params["serial_adapters"] = 4
|
|
|
|
params["ethernet_adapters"] = 0
|
2015-02-13 15:57:35 +00:00
|
|
|
params["l1_keepalives"] = True
|
2015-06-06 21:15:03 +00:00
|
|
|
params["startup_config_content"] = "hostname test"
|
2017-11-16 10:07:51 +00:00
|
|
|
params["use_default_iou_values"] = False
|
2015-02-12 20:02:52 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes".format(project_id=compute_project.id), params)
|
2015-02-11 14:37:05 +00:00
|
|
|
assert response.status == 201
|
2016-05-11 17:35:36 +00:00
|
|
|
assert response.route == "/projects/{project_id}/iou/nodes"
|
2015-02-11 14:37:05 +00:00
|
|
|
assert response.json["name"] == "PC TEST 1"
|
2020-06-16 04:29:03 +00:00
|
|
|
assert response.json["project_id"] == compute_project.id
|
2015-02-12 20:02:52 +00:00
|
|
|
assert response.json["serial_adapters"] == 4
|
|
|
|
assert response.json["ethernet_adapters"] == 0
|
|
|
|
assert response.json["ram"] == 1024
|
|
|
|
assert response.json["nvram"] == 512
|
2015-02-16 09:05:17 +00:00
|
|
|
assert response.json["l1_keepalives"] is True
|
2017-11-16 10:07:51 +00:00
|
|
|
assert response.json["use_default_iou_values"] is False
|
2015-03-07 13:27:09 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
with open(startup_config_file(compute_project, response.json)) as f:
|
2015-04-24 13:12:58 +00:00
|
|
|
assert f.read() == "hostname test"
|
2015-02-11 14:37:05 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_create_startup_config_already_exist(compute_api, compute_project, base_params):
|
2015-06-06 21:15:03 +00:00
|
|
|
"""We don't erase a startup-config if already exist at project creation"""
|
2015-04-24 13:12:58 +00:00
|
|
|
|
2016-05-11 17:35:36 +00:00
|
|
|
node_id = str(uuid.uuid4())
|
2020-06-16 04:29:03 +00:00
|
|
|
startup_config_file_path = startup_config_file(compute_project, {'node_id': node_id})
|
2015-06-06 21:15:03 +00:00
|
|
|
with open(startup_config_file_path, 'w+') as f:
|
2015-04-24 13:12:58 +00:00
|
|
|
f.write("echo hello")
|
|
|
|
|
|
|
|
params = base_params
|
2016-05-11 17:35:36 +00:00
|
|
|
params["node_id"] = node_id
|
2015-06-06 21:15:03 +00:00
|
|
|
params["startup_config_content"] = "hostname test"
|
2015-04-24 13:12:58 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes".format(project_id=compute_project.id), params)
|
2015-04-24 13:12:58 +00:00
|
|
|
assert response.status == 201
|
2016-05-11 17:35:36 +00:00
|
|
|
assert response.route == "/projects/{project_id}/iou/nodes"
|
2015-04-24 13:12:58 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
with open(startup_config_file(compute_project, response.json)) as f:
|
2015-04-24 13:12:58 +00:00
|
|
|
assert f.read() == "echo hello"
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_get(compute_api, compute_project, vm):
|
|
|
|
|
|
|
|
response = await compute_api.get("/projects/{project_id}/iou/nodes/{node_id}".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2015-02-11 14:37:05 +00:00
|
|
|
assert response.status == 200
|
2016-05-11 17:35:36 +00:00
|
|
|
assert response.route == "/projects/{project_id}/iou/nodes/{node_id}"
|
2015-02-11 14:37:05 +00:00
|
|
|
assert response.json["name"] == "PC TEST 1"
|
2020-06-16 04:29:03 +00:00
|
|
|
assert response.json["project_id"] == compute_project.id
|
2015-02-12 20:02:52 +00:00
|
|
|
assert response.json["serial_adapters"] == 2
|
|
|
|
assert response.json["ethernet_adapters"] == 2
|
|
|
|
assert response.json["ram"] == 256
|
|
|
|
assert response.json["nvram"] == 128
|
2015-02-16 09:05:17 +00:00
|
|
|
assert response.json["l1_keepalives"] is False
|
2015-02-11 14:37:05 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_start(compute_api, vm):
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.iou.iou_vm.IOUVM.start", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/start".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2015-02-11 14:37:05 +00:00
|
|
|
assert mock.called
|
2016-02-02 17:25:17 +00:00
|
|
|
assert response.status == 200
|
|
|
|
assert response.json["name"] == "PC TEST 1"
|
2015-02-11 14:37:05 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_start_with_iourc(compute_api, vm):
|
2015-07-09 14:06:52 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
params = {"iourc_content": "test"}
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.iou.iou_vm.IOUVM.start", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/start".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2015-07-09 14:06:52 +00:00
|
|
|
assert mock.called
|
2016-02-02 17:25:17 +00:00
|
|
|
assert response.status == 200
|
2015-07-09 14:06:52 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/projects/{project_id}/iou/nodes/{node_id}".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2015-07-09 14:06:52 +00:00
|
|
|
assert response.status == 200
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_stop(compute_api, vm):
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.iou.iou_vm.IOUVM.stop", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/stop".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2015-02-11 14:37:05 +00:00
|
|
|
assert mock.called
|
|
|
|
assert response.status == 204
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_reload(compute_api, vm):
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.iou.iou_vm.IOUVM.reload", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/reload".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2015-02-11 14:37:05 +00:00
|
|
|
assert mock.called
|
|
|
|
assert response.status == 204
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_delete(compute_api, vm):
|
|
|
|
|
2016-05-11 17:35:36 +00:00
|
|
|
with asyncio_patch("gns3server.compute.iou.IOU.delete_node", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.delete("/projects/{project_id}/iou/nodes/{node_id}".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2015-02-11 14:37:05 +00:00
|
|
|
assert mock.called
|
|
|
|
assert response.status == 204
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_update(compute_api, vm, free_console_port):
|
|
|
|
|
2015-02-12 20:02:52 +00:00
|
|
|
params = {
|
|
|
|
"name": "test",
|
|
|
|
"console": free_console_port,
|
|
|
|
"ram": 512,
|
|
|
|
"nvram": 2048,
|
|
|
|
"ethernet_adapters": 4,
|
2015-02-13 15:57:35 +00:00
|
|
|
"serial_adapters": 0,
|
2015-02-13 21:16:43 +00:00
|
|
|
"l1_keepalives": True,
|
2015-03-17 18:00:14 +00:00
|
|
|
"use_default_iou_values": True,
|
2015-02-12 20:02:52 +00:00
|
|
|
}
|
2020-06-16 04:29:03 +00:00
|
|
|
|
|
|
|
response = await compute_api.put("/projects/{project_id}/iou/nodes/{node_id}".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2015-02-11 14:37:05 +00:00
|
|
|
assert response.status == 200
|
|
|
|
assert response.json["name"] == "test"
|
|
|
|
assert response.json["console"] == free_console_port
|
2015-02-12 20:02:52 +00:00
|
|
|
assert response.json["ethernet_adapters"] == 4
|
|
|
|
assert response.json["serial_adapters"] == 0
|
|
|
|
assert response.json["ram"] == 512
|
|
|
|
assert response.json["nvram"] == 2048
|
2015-02-16 09:05:17 +00:00
|
|
|
assert response.json["l1_keepalives"] is True
|
2015-03-07 13:27:09 +00:00
|
|
|
assert response.json["use_default_iou_values"] is True
|
2015-02-12 21:28:12 +00:00
|
|
|
|
2015-02-16 09:05:17 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_nio_create_udp(compute_api, vm):
|
|
|
|
|
|
|
|
params = {"type": "nio_udp",
|
|
|
|
"lport": 4242,
|
|
|
|
"rport": 4343,
|
|
|
|
"rhost": "127.0.0.1"}
|
|
|
|
|
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/adapters/1/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2015-02-12 21:28:12 +00:00
|
|
|
assert response.status == 201
|
2019-02-28 10:25:05 +00:00
|
|
|
assert response.route == r"/projects/{project_id}/iou/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio"
|
2015-02-12 21:28:12 +00:00
|
|
|
assert response.json["type"] == "nio_udp"
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_nio_update_udp(compute_api, vm):
|
|
|
|
|
|
|
|
params = {"type": "nio_udp",
|
|
|
|
"lport": 4242,
|
|
|
|
"rport": 4343,
|
|
|
|
"rhost": "127.0.0.1"}
|
|
|
|
|
|
|
|
await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/adapters/1/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
|
|
|
|
|
|
|
params["filters"] = {}
|
|
|
|
response = await compute_api.put("/projects/{project_id}/iou/nodes/{node_id}/adapters/1/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2017-07-17 09:21:54 +00:00
|
|
|
assert response.status == 201, response.body.decode()
|
2019-02-28 10:25:05 +00:00
|
|
|
assert response.route == r"/projects/{project_id}/iou/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio"
|
2017-07-17 09:21:54 +00:00
|
|
|
assert response.json["type"] == "nio_udp"
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_nio_create_ethernet(compute_api, vm, ethernet_device):
|
|
|
|
|
|
|
|
params = {
|
|
|
|
"type": "nio_ethernet",
|
|
|
|
"ethernet_device": ethernet_device
|
|
|
|
}
|
|
|
|
|
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/adapters/1/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2015-02-13 15:41:18 +00:00
|
|
|
assert response.status == 201
|
2019-02-28 10:25:05 +00:00
|
|
|
assert response.route == r"/projects/{project_id}/iou/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio"
|
2016-06-02 00:21:07 +00:00
|
|
|
assert response.json["type"] == "nio_ethernet"
|
2015-06-09 14:35:21 +00:00
|
|
|
assert response.json["ethernet_device"] == ethernet_device
|
2015-02-13 15:41:18 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_nio_create_ethernet_different_port(compute_api, vm, ethernet_device):
|
|
|
|
|
|
|
|
params = {
|
|
|
|
"type": "nio_ethernet",
|
|
|
|
"ethernet_device": ethernet_device
|
|
|
|
}
|
|
|
|
|
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/adapters/0/ports/3/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2015-02-13 19:57:09 +00:00
|
|
|
assert response.status == 201
|
2019-02-28 10:25:05 +00:00
|
|
|
assert response.route == r"/projects/{project_id}/iou/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio"
|
2016-06-02 00:21:07 +00:00
|
|
|
assert response.json["type"] == "nio_ethernet"
|
2015-06-09 14:35:21 +00:00
|
|
|
assert response.json["ethernet_device"] == ethernet_device
|
2015-02-13 19:57:09 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_nio_create_tap(compute_api, vm, ethernet_device):
|
|
|
|
|
|
|
|
params = {
|
|
|
|
"type": "nio_tap",
|
|
|
|
"tap_device": ethernet_device
|
|
|
|
}
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with patch("gns3server.compute.base_manager.BaseManager.has_privileged_access", return_value=True):
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/adapters/1/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2015-02-12 21:28:12 +00:00
|
|
|
assert response.status == 201
|
2019-02-28 10:25:05 +00:00
|
|
|
assert response.route == r"/projects/{project_id}/iou/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio"
|
2015-02-12 21:28:12 +00:00
|
|
|
assert response.json["type"] == "nio_tap"
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_delete_nio(compute_api, vm):
|
2015-02-16 19:08:04 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
params = {
|
|
|
|
"type": "nio_udp",
|
|
|
|
"lport": 4242,
|
|
|
|
"rport": 4343,
|
|
|
|
"rhost": "127.0.0.1"
|
|
|
|
}
|
2015-02-16 19:08:04 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/adapters/1/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
|
|
|
response = await compute_api.delete("/projects/{project_id}/iou/nodes/{node_id}/adapters/1/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
|
|
|
assert response.status == 204
|
|
|
|
assert response.route == r"/projects/{project_id}/iou/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio"
|
2015-02-16 19:08:04 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_start_capture(compute_api, vm):
|
2015-02-16 19:08:04 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
params = {
|
|
|
|
"capture_file_name": "test.pcap",
|
|
|
|
"data_link_type": "DLT_EN10MB"
|
|
|
|
}
|
|
|
|
with patch("gns3server.compute.iou.iou_vm.IOUVM.is_running", return_value=True):
|
|
|
|
with asyncio_patch("gns3server.compute.iou.iou_vm.IOUVM.start_capture") as mock:
|
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/adapters/0/ports/0/start_capture".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2015-03-06 13:46:31 +00:00
|
|
|
assert response.status == 200
|
2020-06-16 04:29:03 +00:00
|
|
|
assert mock.called
|
2015-03-06 13:46:31 +00:00
|
|
|
assert "test.pcap" in response.json["pcap_file_path"]
|
2015-02-16 19:08:04 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_stop_capture(compute_api, vm):
|
2015-03-06 13:46:31 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
with patch("gns3server.compute.iou.iou_vm.IOUVM.is_running", return_value=True):
|
|
|
|
with asyncio_patch("gns3server.compute.iou.iou_vm.IOUVM.stop_capture") as mock:
|
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/adapters/0/ports/0/stop_capture".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2015-03-06 13:46:31 +00:00
|
|
|
assert response.status == 204
|
2020-06-16 04:29:03 +00:00
|
|
|
assert mock.called
|
2015-03-06 13:46:31 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_pcap(compute_api, vm, compute_project):
|
2018-10-27 07:47:17 +00:00
|
|
|
|
|
|
|
with asyncio_patch("gns3server.compute.iou.iou_vm.IOUVM.get_nio"):
|
|
|
|
with asyncio_patch("gns3server.compute.iou.IOU.stream_pcap_file"):
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/projects/{project_id}/iou/nodes/{node_id}/adapters/0/ports/0/pcap".format(project_id=compute_project.id, node_id=vm["node_id"]), raw=True)
|
2018-10-27 07:47:17 +00:00
|
|
|
assert response.status == 200
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_images(compute_api, fake_iou_bin):
|
2015-04-13 12:33:13 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/iou/images")
|
2015-04-13 12:33:13 +00:00
|
|
|
assert response.status == 200
|
2016-10-20 15:24:05 +00:00
|
|
|
assert response.json == [{"filename": "iou.bin", "path": "iou.bin", "filesize": 7, "md5sum": "e573e8f5c93c6c00783f20c7a170aa6c"}]
|
2015-04-24 08:15:23 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_image_vm(compute_api, tmpdir):
|
|
|
|
|
|
|
|
with patch("gns3server.compute.IOU.get_images_directory", return_value=str(tmpdir)):
|
|
|
|
response = await compute_api.post("/iou/images/test2", body="TEST", raw=True)
|
2015-04-24 08:15:23 +00:00
|
|
|
assert response.status == 204
|
|
|
|
|
|
|
|
with open(str(tmpdir / "test2")) as f:
|
|
|
|
assert f.read() == "TEST"
|
|
|
|
|
2015-06-17 15:11:25 +00:00
|
|
|
with open(str(tmpdir / "test2.md5sum")) as f:
|
|
|
|
checksum = f.read()
|
|
|
|
assert checksum == "033bd94b1168d7e4f0d644c3c95e35bf"
|
2017-07-25 09:39:46 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_iou_duplicate(compute_api, vm):
|
|
|
|
|
|
|
|
params = {"destination_node_id": str(uuid.uuid4())}
|
2017-07-25 09:39:46 +00:00
|
|
|
with asyncio_patch("gns3server.compute.iou.IOU.duplicate_node", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/iou/nodes/{node_id}/duplicate".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2017-07-25 09:39:46 +00:00
|
|
|
assert mock.called
|
|
|
|
assert response.status == 201
|