2016-08-19 17:02:39 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2020-06-16 04:29:03 +00:00
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
2016-08-19 17:02:39 +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
|
2022-08-24 19:03:16 +00:00
|
|
|
import pytest_asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2020-12-02 08:09:08 +00:00
|
|
|
from fastapi import FastAPI, status
|
|
|
|
from httpx import AsyncClient
|
|
|
|
|
2016-08-19 17:02:39 +00:00
|
|
|
from tests.utils import asyncio_patch
|
|
|
|
|
2020-12-02 08:09:08 +00:00
|
|
|
from gns3server.compute.project import Project
|
|
|
|
|
|
|
|
pytestmark = pytest.mark.asyncio
|
|
|
|
|
2016-08-19 17:02:39 +00:00
|
|
|
|
2022-08-24 19:03:16 +00:00
|
|
|
@pytest_asyncio.fixture(scope="function")
|
2021-11-18 08:07:10 +00:00
|
|
|
async def vm(app: FastAPI, compute_client: AsyncClient, compute_project: Project, on_gns3vm) -> dict:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
|
|
|
with asyncio_patch("gns3server.compute.builtin.nodes.cloud.Cloud._start_ubridge"):
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:create_cloud", project_id=compute_project.id),
|
2020-12-02 08:09:08 +00:00
|
|
|
json={"name": "Cloud 1"})
|
|
|
|
assert response.status_code == status.HTTP_201_CREATED
|
|
|
|
return response.json()
|
2016-08-19 17:02:39 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_cloud_create(app: FastAPI, compute_client: AsyncClient, compute_project: Project) -> None:
|
2016-08-19 17:02:39 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
with asyncio_patch("gns3server.compute.builtin.nodes.cloud.Cloud._start_ubridge"):
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:create_cloud", project_id=compute_project.id),
|
2020-12-02 08:09:08 +00:00
|
|
|
json={"name": "Cloud 1"})
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.status_code == 201
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.json()["name"] == "Cloud 1"
|
|
|
|
assert response.json()["project_id"] == compute_project.id
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2016-08-19 17:02:39 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_get_cloud(app: FastAPI, compute_client: AsyncClient, compute_project: Project, vm: dict) -> None:
|
2016-08-19 17:02:39 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.get(app.url_path_for("compute:get_cloud", project_id=vm["project_id"], node_id=vm["node_id"]))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_200_OK
|
|
|
|
assert response.json()["name"] == "Cloud 1"
|
|
|
|
assert response.json()["project_id"] == compute_project.id
|
|
|
|
assert response.json()["status"] == "started"
|
2016-08-19 17:02:39 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_cloud_nio_create_udp(app: FastAPI, compute_client: AsyncClient, compute_project: Project, vm: dict) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
|
|
|
params = {"type": "nio_udp",
|
|
|
|
"lport": 4242,
|
|
|
|
"rport": 4343,
|
|
|
|
"rhost": "127.0.0.1"}
|
|
|
|
|
2021-10-21 11:08:36 +00:00
|
|
|
url = app.url_path_for("compute:create_cloud_nio",
|
2020-12-02 08:09:08 +00:00
|
|
|
project_id=vm["project_id"],
|
|
|
|
node_id=vm["node_id"],
|
|
|
|
adapter_number="0",
|
|
|
|
port_number="0")
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(url, json=params)
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_201_CREATED
|
|
|
|
assert response.json()["type"] == "nio_udp"
|
2016-08-19 17:02:39 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_cloud_nio_update_udp(app: FastAPI, compute_client: AsyncClient, compute_project: Project, vm: dict) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
|
|
|
params = {"type": "nio_udp",
|
|
|
|
"lport": 4242,
|
|
|
|
"rport": 4343,
|
|
|
|
"rhost": "127.0.0.1"}
|
|
|
|
|
2021-10-21 11:08:36 +00:00
|
|
|
url = app.url_path_for("compute:create_cloud_nio",
|
2020-12-02 08:09:08 +00:00
|
|
|
project_id=vm["project_id"],
|
|
|
|
node_id=vm["node_id"],
|
|
|
|
adapter_number="0",
|
|
|
|
port_number="0")
|
2021-11-18 08:07:10 +00:00
|
|
|
await compute_client.post(url, json=params)
|
2020-12-02 08:09:08 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
params["filters"] = {}
|
2021-10-21 11:08:36 +00:00
|
|
|
url = app.url_path_for("compute:create_cloud_nio",
|
2020-12-02 08:09:08 +00:00
|
|
|
project_id=vm["project_id"],
|
|
|
|
node_id=vm["node_id"],
|
|
|
|
adapter_number="0",
|
|
|
|
port_number="0")
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.put(url, json=params)
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_201_CREATED
|
|
|
|
assert response.json()["type"] == "nio_udp"
|
2017-07-17 12:22:05 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_cloud_delete_nio(app: FastAPI, compute_client: AsyncClient, compute_project: Project, vm: dict) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
|
|
|
params = {"type": "nio_udp",
|
|
|
|
"lport": 4242,
|
|
|
|
"rport": 4343,
|
|
|
|
"rhost": "127.0.0.1"}
|
|
|
|
|
2021-10-21 11:08:36 +00:00
|
|
|
url = app.url_path_for("compute:create_cloud_nio",
|
2020-12-02 08:09:08 +00:00
|
|
|
project_id=vm["project_id"],
|
|
|
|
node_id=vm["node_id"],
|
|
|
|
adapter_number="0",
|
|
|
|
port_number="0")
|
2021-11-18 08:07:10 +00:00
|
|
|
await compute_client.post(url, json=params)
|
2020-12-02 08:09:08 +00:00
|
|
|
|
2021-10-21 11:08:36 +00:00
|
|
|
url = app.url_path_for("compute:delete_cloud_nio",
|
2020-12-02 08:09:08 +00:00
|
|
|
project_id=vm["project_id"],
|
|
|
|
node_id=vm["node_id"],
|
|
|
|
adapter_number="0",
|
|
|
|
port_number="0")
|
2020-06-16 04:29:03 +00:00
|
|
|
with asyncio_patch("gns3server.compute.builtin.nodes.cloud.Cloud._start_ubridge"):
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.delete(url)
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_204_NO_CONTENT
|
2016-08-19 17:02:39 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_cloud_delete(app: FastAPI, compute_client: AsyncClient, compute_project: Project, vm: dict) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.delete(app.url_path_for("compute:delete_cloud", project_id=vm["project_id"], node_id=vm["node_id"]))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_204_NO_CONTENT
|
2016-08-19 17:02:39 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_cloud_update(app: FastAPI, compute_client: AsyncClient, vm: dict) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.put(app.url_path_for("compute:update_cloud", project_id=vm["project_id"], node_id=vm["node_id"]),
|
2020-12-02 08:09:08 +00:00
|
|
|
json={"name": "test"})
|
|
|
|
assert response.status_code == status.HTTP_200_OK
|
|
|
|
assert response.json()["name"] == "test"
|
2018-10-27 07:47:17 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_cloud_start_capture(app: FastAPI, compute_client: AsyncClient, vm: dict) -> None:
|
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
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
with asyncio_patch("gns3server.compute.builtin.nodes.cloud.Cloud.start_capture") as mock:
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:start_cloud_capture",
|
2020-12-02 08:09:08 +00:00
|
|
|
project_id=vm["project_id"],
|
|
|
|
node_id=vm["node_id"],
|
|
|
|
adapter_number="0",
|
|
|
|
port_number="0"),
|
|
|
|
json=params)
|
|
|
|
assert response.status_code == status.HTTP_200_OK
|
2020-06-16 04:29:03 +00:00
|
|
|
assert mock.called
|
2020-12-02 08:09:08 +00:00
|
|
|
assert "test.pcap" in response.json()["pcap_file_path"]
|
2018-10-27 07:47:17 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_cloud_stop_capture(app: FastAPI, compute_client: AsyncClient, vm: dict) -> None:
|
2018-10-27 07:47:17 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
with asyncio_patch("gns3server.compute.builtin.nodes.cloud.Cloud.stop_capture") as mock:
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:stop_cloud_capture",
|
2020-12-02 08:09:08 +00:00
|
|
|
project_id=vm["project_id"],
|
|
|
|
node_id=vm["node_id"],
|
|
|
|
adapter_number="0",
|
|
|
|
port_number="0"))
|
|
|
|
assert response.status_code == status.HTTP_204_NO_CONTENT
|
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_cloud_pcap(compute_api, vm, compute_project):
|
|
|
|
#
|
|
|
|
# from itertools import repeat
|
|
|
|
# stream = repeat(42, times=10)
|
|
|
|
#
|
|
|
|
# with asyncio_patch("gns3server.compute.builtin.nodes.cloud.Cloud.get_nio"):
|
|
|
|
# with asyncio_patch("gns3server.compute.builtin.Builtin.stream_pcap_file", return_value=stream):
|
|
|
|
# response = await compute_api.get("/projects/{project_id}/cloud/nodes/{node_id}/adapters/0/ports/0/pcap".format(project_id=compute_project.id, node_id=vm["node_id"]))
|
|
|
|
# assert response.status_code == 200
|
|
|
|
#
|