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