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
|
2015-01-23 10:28:58 +00:00
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
from gns3server.handlers.api.compute.project_handler import ProjectHandler
|
|
|
|
from gns3server.compute.project_manager import ProjectManager
|
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
|
|
|
|
def base_params(tmpdir):
|
|
|
|
"""Return standard parameters"""
|
|
|
|
|
|
|
|
params = {
|
|
|
|
"name": "test",
|
|
|
|
"path": str(tmpdir),
|
|
|
|
"project_id": str(uuid.uuid4())
|
|
|
|
}
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
|
|
|
async def test_create_project_with_path(compute_api, base_params):
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with patch("gns3server.compute.project.Project.is_local", return_value=True):
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects", base_params)
|
2015-02-25 23:05:57 +00:00
|
|
|
assert response.status == 201
|
2020-06-16 04:29:03 +00:00
|
|
|
assert response.json["project_id"] == base_params["project_id"]
|
|
|
|
|
2015-01-19 15:23:41 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_create_project_with_path_and_empty_variables(compute_api, base_params):
|
2015-01-20 12:04:20 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
base_params["variables"] = None
|
2018-06-13 16:55:47 +00:00
|
|
|
with patch("gns3server.compute.project.Project.is_local", return_value=True):
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects", base_params)
|
|
|
|
assert response.status == 201
|
|
|
|
assert response.json["project_id"] == base_params["project_id"]
|
2018-06-13 16:55:47 +00:00
|
|
|
|
2015-01-19 15:23:41 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_create_project_without_dir(compute_api, base_params):
|
2015-01-20 12:04:20 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
del base_params["path"]
|
|
|
|
response = await compute_api.post("/projects", base_params)
|
2015-02-25 23:05:57 +00:00
|
|
|
assert response.status == 201
|
2020-06-16 04:29:03 +00:00
|
|
|
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
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_show_project(compute_api, base_params):
|
|
|
|
|
|
|
|
response = await compute_api.post("/projects", base_params)
|
2015-02-25 23:05:57 +00:00
|
|
|
assert response.status == 201
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/projects/{project_id}".format(project_id=base_params["project_id"]))
|
2018-05-07 10:55:32 +00:00
|
|
|
assert len(response.json.keys()) == 3
|
2020-06-16 04:29:03 +00:00
|
|
|
assert response.json["project_id"] == base_params["project_id"]
|
|
|
|
assert response.json["name"] == base_params["name"]
|
2018-05-07 10:55:32 +00:00
|
|
|
assert response.json["variables"] is None
|
2015-01-23 15:18:40 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_show_project_invalid_uuid(compute_api):
|
|
|
|
|
|
|
|
response = await compute_api.get("/projects/50010203-0405-0607-0809-0a0b0c0d0e42")
|
2015-01-23 15:18:40 +00:00
|
|
|
assert response.status == 404
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_list_projects(compute_api):
|
|
|
|
|
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"}
|
|
|
|
response = await compute_api.post("/projects", params)
|
2015-07-24 08:09:16 +00:00
|
|
|
assert response.status == 201
|
2020-06-16 04:29:03 +00:00
|
|
|
params = {"name": "test", "project_id": "52010203-0405-0607-0809-0a0b0c0d0e0b"}
|
|
|
|
response = await compute_api.post("/projects", params)
|
2015-07-24 08:09:16 +00:00
|
|
|
assert response.status == 201
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/projects")
|
2015-07-24 08:09:16 +00:00
|
|
|
assert response.status == 200
|
|
|
|
assert len(response.json) == 2
|
2016-03-10 09:32:07 +00:00
|
|
|
assert "51010203-0405-0607-0809-0a0b0c0d0e0f" in [p["project_id"] for p in response.json]
|
2015-07-24 08:09:16 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_delete_project(compute_api, compute_project):
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.project.Project.delete", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.delete("/projects/{project_id}".format(project_id=compute_project.id))
|
2015-01-23 13:07:10 +00:00
|
|
|
assert response.status == 204
|
|
|
|
assert mock.called
|
2015-01-23 10:48:20 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_update_project(compute_api, base_params):
|
|
|
|
|
|
|
|
response = await compute_api.post("/projects", base_params)
|
2018-05-09 13:29:35 +00:00
|
|
|
assert response.status == 201
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
params = {"variables": [{"name": "TEST1", "value": "VAL1"}]}
|
|
|
|
response = await compute_api.put("/projects/{project_id}".format(project_id=base_params["project_id"]), params)
|
2018-05-09 13:29:35 +00:00
|
|
|
assert response.status == 200
|
|
|
|
assert response.json["variables"] == [{"name": "TEST1", "value": "VAL1"}]
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_delete_project_invalid_uuid(compute_api):
|
|
|
|
|
|
|
|
response = await compute_api.delete("/projects/{project_id}".format(project_id=uuid.uuid4()))
|
2015-01-23 10:48:20 +00:00
|
|
|
assert response.status == 404
|
2015-01-23 13:07:10 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_close_project(compute_api, compute_project):
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.project.Project.close", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/close".format(project_id=compute_project.id))
|
2015-01-23 13:07:10 +00:00
|
|
|
assert response.status == 204
|
|
|
|
assert mock.called
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_close_project_two_client_connected(compute_api, compute_project):
|
2015-03-04 15:01:56 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
ProjectHandler._notifications_listening = {compute_project.id: 2}
|
2016-04-15 15:57:06 +00:00
|
|
|
with asyncio_patch("gns3server.compute.project.Project.close", return_value=True) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/close".format(project_id=compute_project.id))
|
2015-03-04 15:01:56 +00:00
|
|
|
assert response.status == 204
|
|
|
|
assert not mock.called
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_close_project_invalid_uuid(compute_api):
|
|
|
|
|
|
|
|
response = await compute_api.post("/projects/{project_id}/close".format(project_id=uuid.uuid4()))
|
2015-01-23 13:07:10 +00:00
|
|
|
assert response.status == 404
|
2015-03-04 15:01:56 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_get_file(compute_api, tmpdir):
|
2015-05-14 10:03:17 +00:00
|
|
|
|
2016-05-11 16:42:55 +00:00
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"projects_path": str(tmpdir)}):
|
2016-04-22 14:22:03 +00:00
|
|
|
project = ProjectManager.instance().create_project(project_id="01010203-0405-0607-0809-0a0b0c0d0e0b")
|
|
|
|
|
|
|
|
with open(os.path.join(project.path, "hello"), "w+") as f:
|
|
|
|
f.write("world")
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/projects/{project_id}/files/hello".format(project_id=project.id), raw=True)
|
2016-04-22 14:22:03 +00:00
|
|
|
assert response.status == 200
|
|
|
|
assert response.body == b"world"
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/projects/{project_id}/files/false".format(project_id=project.id), raw=True)
|
2016-04-22 14:22:03 +00:00
|
|
|
assert response.status == 404
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/projects/{project_id}/files/../hello".format(project_id=project.id), raw=True)
|
2017-07-12 07:34:09 +00:00
|
|
|
assert response.status == 404
|
2016-04-22 14:22:03 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_write_file(compute_api, tmpdir):
|
2016-07-20 19:52:12 +00:00
|
|
|
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"projects_path": str(tmpdir)}):
|
|
|
|
project = ProjectManager.instance().create_project(project_id="01010203-0405-0607-0809-0a0b0c0d0e0b")
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/files/hello".format(project_id=project.id), body="world", raw=True)
|
2016-07-20 19:52:12 +00:00
|
|
|
assert response.status == 200
|
|
|
|
|
|
|
|
with open(os.path.join(project.path, "hello")) as f:
|
|
|
|
assert f.read() == "world"
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.post("/projects/{project_id}/files/../hello".format(project_id=project.id), raw=True)
|
2017-07-12 07:34:09 +00:00
|
|
|
assert response.status == 404
|
2016-07-20 19:52:12 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_stream_file(compute_api, tmpdir):
|
2016-04-22 14:22:03 +00:00
|
|
|
|
2016-05-11 16:42:55 +00:00
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"projects_path": str(tmpdir)}):
|
2016-03-10 09:32:07 +00:00
|
|
|
project = ProjectManager.instance().create_project(project_id="01010203-0405-0607-0809-0a0b0c0d0e0b")
|
2015-05-14 10:03:17 +00:00
|
|
|
|
|
|
|
with open(os.path.join(project.path, "hello"), "w+") as f:
|
|
|
|
f.write("world")
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/projects/{project_id}/files/hello".format(project_id=project.id), raw=True)
|
2015-05-14 10:03:17 +00:00
|
|
|
assert response.status == 200
|
|
|
|
assert response.body == b"world"
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/projects/{project_id}/files/false".format(project_id=project.id), raw=True)
|
2015-05-14 10:03:17 +00:00
|
|
|
assert response.status == 404
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await compute_api.get("/projects/{project_id}/files/../hello".format(project_id=project.id), raw=True)
|
2017-07-12 07:34:09 +00:00
|
|
|
assert response.status == 404
|