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