2015-01-14 00:26:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2020-06-16 04:29:03 +00:00
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
2015-01-14 00:26:24 +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/>.
|
|
|
|
|
2015-01-20 11:46:15 +00:00
|
|
|
import pytest
|
2017-07-20 15:29:42 +00:00
|
|
|
import uuid
|
2015-01-21 21:32:33 +00:00
|
|
|
from tests.utils import asyncio_patch
|
2015-01-22 02:30:24 +00:00
|
|
|
from unittest.mock import patch
|
2015-01-14 00:26:24 +00:00
|
|
|
|
2015-01-20 01:30:57 +00:00
|
|
|
|
2020-06-16 04:29:03 +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 vm(compute_api, compute_project):
|
|
|
|
|
|
|
|
params = {"name": "PC TEST 1"}
|
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes".format(project_id=compute_project.id), params)
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 201
|
2015-01-20 11:46:15 +00:00
|
|
|
return response.json
|
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_create(compute_api, compute_project):
|
|
|
|
|
|
|
|
params = {"name": "PC TEST 1"}
|
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes".format(project_id=compute_project.id), params)
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 201
|
2015-01-20 01:30:57 +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-01-20 18:56:18 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_get(compute_api, compute_project, vm):
|
2015-01-20 18:56:18 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/projects/{project_id}/vpcs/nodes/{node_id}".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 200
|
2015-01-21 16:21:17 +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-03-04 15:01:56 +00:00
|
|
|
assert response.json["status"] == "stopped"
|
2015-01-21 16:21:17 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_create_startup_script(compute_api, compute_project):
|
|
|
|
|
|
|
|
params = {
|
|
|
|
"name": "PC TEST 1",
|
|
|
|
"startup_script": "ip 192.168.1.2\necho TEST"
|
|
|
|
}
|
|
|
|
|
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes".format(project_id=compute_project.id), params)
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 201
|
2015-01-21 15:43:34 +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-01-14 00:26:24 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_create_port(compute_api, compute_project, free_console_port):
|
2015-01-14 00:26:24 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
params = {
|
|
|
|
"name": "PC TEST 1",
|
|
|
|
"console": free_console_port
|
|
|
|
}
|
|
|
|
|
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes".format(project_id=compute_project.id), params)
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 201
|
2015-01-20 19:54:46 +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-01-21 20:46:16 +00:00
|
|
|
assert response.json["console"] == free_console_port
|
2015-01-20 19:54:46 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_nio_create_udp(compute_api, vm):
|
|
|
|
|
|
|
|
params = {
|
|
|
|
"type": "nio_udp",
|
|
|
|
"lport": 4242,
|
|
|
|
"rport": 4343,
|
|
|
|
"rhost": "127.0.0.1"
|
|
|
|
}
|
|
|
|
|
2017-07-11 11:42:47 +00:00
|
|
|
with asyncio_patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM.add_ubridge_udp_connection"):
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes/{node_id}/adapters/0/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 201
|
2015-01-20 01:30:57 +00:00
|
|
|
assert response.json["type"] == "nio_udp"
|
|
|
|
|
2015-01-16 16:09:45 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_nio_update_udp(compute_api, vm):
|
|
|
|
|
|
|
|
params = {
|
|
|
|
"type": "nio_udp",
|
|
|
|
"lport": 4242,
|
|
|
|
"rport": 4343,
|
|
|
|
"rhost": "127.0.0.1"
|
|
|
|
}
|
2018-10-27 07:47:17 +00:00
|
|
|
|
|
|
|
with asyncio_patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM.add_ubridge_udp_connection"):
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes/{node_id}/adapters/0/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 201
|
2020-06-16 04:29:03 +00:00
|
|
|
|
|
|
|
params["filters"] = {}
|
|
|
|
response = await compute_api.put("/projects/{project_id}/vpcs/nodes/{node_id}/adapters/0/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 201, response.body.decode("utf-8")
|
2017-06-30 08:22:30 +00:00
|
|
|
assert response.json["type"] == "nio_udp"
|
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_delete_nio(compute_api, vm):
|
|
|
|
|
|
|
|
params = {
|
|
|
|
"type": "nio_udp",
|
|
|
|
"lport": 4242,
|
|
|
|
"rport": 4343,
|
|
|
|
"rhost": "127.0.0.1"
|
|
|
|
}
|
|
|
|
|
2017-07-11 11:42:47 +00:00
|
|
|
with asyncio_patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM._ubridge_send"):
|
2020-06-16 04:29:03 +00:00
|
|
|
await compute_api.post("/projects/{project_id}/vpcs/nodes/{node_id}/adapters/0/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
|
|
|
response = await compute_api.delete("/projects/{project_id}/vpcs/nodes/{node_id}/adapters/0/ports/0/nio".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 204, response.body.decode()
|
2015-01-20 22:27:28 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_start(compute_api, vm):
|
2015-03-04 15:01:56 +00:00
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM.start", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes/{node_id}/start".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2015-01-21 16:11:21 +00:00
|
|
|
assert mock.called
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 204
|
2015-01-20 22:27:28 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_stop(compute_api, vm):
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM.stop", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes/{node_id}/stop".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2015-01-21 16:11:21 +00:00
|
|
|
assert mock.called
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 204
|
2015-01-21 20:46:16 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_reload(compute_api, vm):
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM.reload", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes/{node_id}/reload".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2015-01-22 09:55:11 +00:00
|
|
|
assert mock.called
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 204
|
2015-01-22 09:55:11 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_delete(compute_api, vm):
|
|
|
|
|
2016-05-11 17:35:36 +00:00
|
|
|
with asyncio_patch("gns3server.compute.vpcs.VPCS.delete_node", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.delete("/projects/{project_id}/vpcs/nodes/{node_id}".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2015-01-22 10:34:10 +00:00
|
|
|
assert mock.called
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 204
|
2015-01-22 10:34:10 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_vpcs_duplicate(compute_api, compute_project, vm):
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
# create destination node first
|
|
|
|
params = {"name": "PC TEST 1"}
|
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes".format(project_id=compute_project.id), params)
|
|
|
|
assert response.status_code == 201
|
2017-07-20 15:29:42 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
params = {"destination_node_id": response.json["node_id"]}
|
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes/{node_id}/duplicate".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
|
|
|
assert response.status_code == 201
|
2017-07-20 15:29:42 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_update(compute_api, vm, free_console_port):
|
|
|
|
|
|
|
|
console_port = free_console_port
|
|
|
|
params = {
|
|
|
|
"name": "test",
|
|
|
|
"console": console_port
|
|
|
|
}
|
|
|
|
|
|
|
|
response = await compute_api.put("/projects/{project_id}/vpcs/nodes/{node_id}".format(project_id=vm["project_id"], node_id=vm["node_id"]), params)
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 200
|
2015-01-21 20:46:16 +00:00
|
|
|
assert response.json["name"] == "test"
|
2020-06-16 04:29:03 +00:00
|
|
|
assert response.json["console"] == console_port
|
|
|
|
|
2018-10-27 07:47:17 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_start_capture(compute_api, vm):
|
2018-10-27 07:47:17 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
params = {
|
|
|
|
"capture_file_name": "test.pcap",
|
|
|
|
"data_link_type": "DLT_EN10MB"
|
|
|
|
}
|
2018-10-27 07:47:17 +00:00
|
|
|
|
|
|
|
with patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM.is_running", return_value=True):
|
2020-06-16 04:29:03 +00:00
|
|
|
with asyncio_patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM.start_capture") as mock:
|
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes/{node_id}/adapters/0/ports/0/start_capture".format(project_id=vm["project_id"], node_id=vm["node_id"]), body=params)
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 200
|
2020-06-16 04:29:03 +00:00
|
|
|
assert mock.called
|
2018-10-27 07:47:17 +00:00
|
|
|
assert "test.pcap" in response.json["pcap_file_path"]
|
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_vpcs_stop_capture(compute_api, vm):
|
2018-10-27 07:47:17 +00:00
|
|
|
|
|
|
|
with patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM.is_running", return_value=True):
|
2020-06-16 04:29:03 +00:00
|
|
|
with asyncio_patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM.stop_capture") as mock:
|
|
|
|
response = await compute_api.post("/projects/{project_id}/vpcs/nodes/{node_id}/adapters/0/ports/0/stop_capture".format(project_id=vm["project_id"], node_id=vm["node_id"]))
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 204
|
2020-06-16 04:29:03 +00:00
|
|
|
assert mock.called
|
2018-10-27 07:47:17 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
# @pytest.mark.asyncio
|
|
|
|
# async def test_vpcs_pcap(compute_api, vm, compute_project):
|
|
|
|
#
|
|
|
|
# with asyncio_patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM.get_nio"):
|
|
|
|
# with asyncio_patch("gns3server.compute.vpcs.VPCS.stream_pcap_file"):
|
|
|
|
# response = await compute_api.get("/projects/{project_id}/vpcs/nodes/{node_id}/adapters/0/ports/0/pcap".format(project_id=compute_project.id, node_id=vm["node_id"]), raw=True)
|
|
|
|
# assert response.status_code == 200
|