2015-01-19 15:23:41 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2020-06-16 04:29:03 +00:00
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
2015-01-19 15:23:41 +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/>.
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
import pytest
|
2015-01-23 10:28:58 +00:00
|
|
|
import uuid
|
2015-05-14 10:03:17 +00:00
|
|
|
import os
|
2015-05-28 10:04:01 +00:00
|
|
|
|
2015-01-23 15:57:41 +00:00
|
|
|
from unittest.mock import patch
|
2015-01-23 13:07:10 +00:00
|
|
|
from tests.utils import asyncio_patch
|
2020-12-02 08:09:08 +00:00
|
|
|
from fastapi import FastAPI, status
|
|
|
|
from httpx import AsyncClient
|
2015-01-23 10:28:58 +00:00
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
from gns3server.compute.project_manager import ProjectManager
|
2020-12-02 08:09:08 +00:00
|
|
|
from gns3server.compute.project import Project
|
|
|
|
|
|
|
|
pytestmark = pytest.mark.asyncio
|
2015-03-04 15:01:56 +00:00
|
|
|
|
2015-01-19 15:23:41 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
@pytest.fixture
|
2020-12-02 08:09:08 +00:00
|
|
|
def base_params(tmpdir) -> dict:
|
2020-06-16 04:29:03 +00:00
|
|
|
"""Return standard parameters"""
|
|
|
|
|
|
|
|
params = {
|
|
|
|
"name": "test",
|
|
|
|
"project_id": str(uuid.uuid4())
|
|
|
|
}
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_create_project_without_dir(app: FastAPI, compute_client: AsyncClient, base_params: dict) -> None:
|
2015-01-20 12:04:20 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:create_compute_project"), json=base_params)
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_201_CREATED
|
|
|
|
assert response.json()["project_id"] == base_params["project_id"]
|
|
|
|
assert response.json()["name"] == base_params["name"]
|
2015-01-20 14:35:46 +00:00
|
|
|
|
2015-01-20 15:37:18 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_show_project(app: FastAPI, compute_client: AsyncClient, base_params: dict) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:create_compute_project"), json=base_params)
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_201_CREATED
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.get(app.url_path_for("compute:get_compute_project", project_id=base_params["project_id"]))
|
2020-10-02 06:37:50 +00:00
|
|
|
|
2020-12-02 08:09:08 +00:00
|
|
|
#print(response.json().keys())
|
|
|
|
#assert len(response.json().keys()) == 3
|
|
|
|
assert response.json()["project_id"] == base_params["project_id"]
|
|
|
|
assert response.json()["name"] == base_params["name"]
|
|
|
|
assert response.json()["variables"] is None
|
2015-01-23 15:18:40 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_show_project_invalid_uuid(app: FastAPI, compute_client: AsyncClient) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.get(app.url_path_for("compute:get_compute_project",
|
2020-12-02 08:09:08 +00:00
|
|
|
project_id="50010203-0405-0607-0809-0a0b0c0d0e42"))
|
|
|
|
assert response.status_code == status.HTTP_404_NOT_FOUND
|
2015-01-23 15:18:40 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_list_projects(app: FastAPI, compute_client: AsyncClient) -> dict:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2015-07-24 08:09:16 +00:00
|
|
|
ProjectManager.instance()._projects = {}
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
params = {"name": "test", "project_id": "51010203-0405-0607-0809-0a0b0c0d0e0f"}
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:create_compute_project"), json=params)
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_201_CREATED
|
2020-06-16 04:29:03 +00:00
|
|
|
params = {"name": "test", "project_id": "52010203-0405-0607-0809-0a0b0c0d0e0b"}
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:create_compute_project"), json=params)
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_201_CREATED
|
2015-07-24 08:09:16 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.get(app.url_path_for("compute:get_compute_projects"))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_200_OK
|
|
|
|
assert len(response.json()) == 2
|
|
|
|
assert "51010203-0405-0607-0809-0a0b0c0d0e0f" in [p["project_id"] for p in response.json()]
|
2015-07-24 08:09:16 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_delete_project(app: FastAPI, compute_client: AsyncClient, compute_project: Project) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.project.Project.delete", return_value=True) as mock:
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.delete(app.url_path_for("compute:delete_compute_project", project_id=compute_project.id))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_204_NO_CONTENT
|
2015-01-23 13:07:10 +00:00
|
|
|
assert mock.called
|
2015-01-23 10:48:20 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_update_project(app: FastAPI, compute_client: AsyncClient, base_params: dict) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:create_compute_project"), json=base_params)
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_201_CREATED
|
2018-05-09 13:29:35 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
params = {"variables": [{"name": "TEST1", "value": "VAL1"}]}
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.put(app.url_path_for("compute:update_compute_project", project_id=base_params["project_id"]),
|
2020-12-02 08:09:08 +00:00
|
|
|
json=params)
|
|
|
|
assert response.status_code == status.HTTP_200_OK
|
|
|
|
assert response.json()["variables"] == [{"name": "TEST1", "value": "VAL1"}]
|
2018-05-09 13:29:35 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_delete_project_invalid_uuid(app: FastAPI, compute_client: AsyncClient) -> 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_compute_project", project_id=str(uuid.uuid4())))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_404_NOT_FOUND
|
2015-01-23 13:07:10 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_close_project(app: FastAPI, compute_client: AsyncClient, compute_project: Project) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.project.Project.close", return_value=True) as mock:
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:close_compute_project", project_id=compute_project.id))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_204_NO_CONTENT
|
2015-01-23 13:07:10 +00:00
|
|
|
assert mock.called
|
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
# @pytest.mark.asyncio
|
|
|
|
# async def test_close_project_two_client_connected(compute_api, compute_project):
|
|
|
|
#
|
|
|
|
# ProjectHandler._notifications_listening = {compute_project.id: 2}
|
|
|
|
# with asyncio_patch("gns3server.compute.project.Project.close", return_value=True) as mock:
|
2021-11-18 08:07:10 +00:00
|
|
|
# response = await compute_client.post("/projects/{project_id}/close".format(project_id=compute_project.id))
|
2020-12-02 08:09:08 +00:00
|
|
|
# assert response.status_code == status.HTTP_204_NO_CONTENT
|
2020-10-02 06:37:50 +00:00
|
|
|
# assert not mock.called
|
2015-03-04 15:01:56 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_close_project_invalid_uuid(app: FastAPI, compute_client: AsyncClient) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:close_compute_project", project_id=str(uuid.uuid4())))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_404_NOT_FOUND
|
2015-03-04 15:01:56 +00:00
|
|
|
|
|
|
|
|
2022-03-30 10:38:34 +00:00
|
|
|
async def test_get_file(app: FastAPI, compute_client: AsyncClient) -> None:
|
2015-05-14 10:03:17 +00:00
|
|
|
|
2021-04-12 07:32:23 +00:00
|
|
|
project = ProjectManager.instance().create_project(project_id="01010203-0405-0607-0809-0a0b0c0d0e0b")
|
2016-04-22 14:22:03 +00:00
|
|
|
|
|
|
|
with open(os.path.join(project.path, "hello"), "w+") as f:
|
|
|
|
f.write("world")
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.get(app.url_path_for("compute:get_compute_project_file", project_id=project.id, file_path="hello"))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_200_OK
|
2020-10-02 06:37:50 +00:00
|
|
|
assert response.content == b"world"
|
2016-04-22 14:22:03 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.get(app.url_path_for("compute:get_compute_project_file", project_id=project.id, file_path="false"))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_404_NOT_FOUND
|
2016-04-22 14:22:03 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.get(app.url_path_for("compute:get_compute_project_file",
|
2020-12-02 08:09:08 +00:00
|
|
|
project_id=project.id,
|
|
|
|
file_path="../hello"))
|
|
|
|
assert response.status_code == status.HTTP_404_NOT_FOUND
|
2016-04-22 14:22:03 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_get_file_forbidden_location(app: FastAPI, compute_client: AsyncClient, config, tmpdir) -> None:
|
2021-05-16 04:59:56 +00:00
|
|
|
|
|
|
|
config.settings.Server.projects_path = str(tmpdir)
|
|
|
|
project = ProjectManager.instance().create_project(project_id="01010203-0405-0607-0809-0a0b0c0d0e0b")
|
|
|
|
file_path = "foo/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd"
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.get(
|
2021-05-16 04:59:56 +00:00
|
|
|
app.url_path_for(
|
2021-10-21 11:08:36 +00:00
|
|
|
"compute:get_compute_project_file",
|
2021-05-16 04:59:56 +00:00
|
|
|
project_id=project.id,
|
|
|
|
file_path=file_path
|
|
|
|
)
|
|
|
|
)
|
|
|
|
assert response.status_code == status.HTTP_403_FORBIDDEN
|
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_write_file(app: FastAPI, compute_client: AsyncClient, config, tmpdir) -> None:
|
2016-07-20 19:52:12 +00:00
|
|
|
|
2021-04-12 07:32:23 +00:00
|
|
|
config.settings.Server.projects_path = str(tmpdir)
|
|
|
|
project = ProjectManager.instance().create_project(project_id="01010203-0405-0607-0809-0a0b0c0d0e0b")
|
2016-07-20 19:52:12 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:write_compute_project_file",
|
2020-12-02 08:09:08 +00:00
|
|
|
project_id=project.id,
|
|
|
|
file_path="hello"), content=b"world")
|
|
|
|
assert response.status_code == status.HTTP_204_NO_CONTENT
|
2016-07-20 19:52:12 +00:00
|
|
|
|
|
|
|
with open(os.path.join(project.path, "hello")) as f:
|
|
|
|
assert f.read() == "world"
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:write_compute_project_file",
|
2020-12-02 08:09:08 +00:00
|
|
|
project_id=project.id,
|
|
|
|
file_path="../hello"))
|
|
|
|
assert response.status_code == status.HTTP_404_NOT_FOUND
|
2021-05-16 04:59:56 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_write_file_forbidden_location(app: FastAPI, compute_client: AsyncClient, config, tmpdir) -> None:
|
2021-05-16 04:59:56 +00:00
|
|
|
|
|
|
|
config.settings.Server.projects_path = str(tmpdir)
|
|
|
|
project = ProjectManager.instance().create_project(project_id="01010203-0405-0607-0809-0a0b0c0d0e0b")
|
|
|
|
|
|
|
|
file_path = "%2e%2e/hello"
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:write_compute_project_file",
|
2021-05-16 04:59:56 +00:00
|
|
|
project_id=project.id,
|
|
|
|
file_path=file_path), content=b"world")
|
|
|
|
assert response.status_code == status.HTTP_403_FORBIDDEN
|