1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-11 18:38:55 +00:00
gns3-server/tests/handlers/api/compute/test_project.py

275 lines
11 KiB
Python
Raw Normal View History

2015-01-19 15:23:41 +00:00
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015 GNS3 Technologies Inc.
#
# 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/>.
"""
This test suite check /project endpoint
"""
2015-01-23 10:28:58 +00:00
import uuid
import os
import asyncio
import aiohttp
2016-04-08 15:40:27 +00:00
import zipfile
2015-05-28 10:04:01 +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-01-19 15:23:41 +00:00
2016-04-15 15:57:06 +00:00
def test_create_project_with_path(http_compute, tmpdir):
with patch("gns3server.compute.project.Project.is_local", return_value=True):
response = http_compute.post("/projects", {"name": "test", "path": str(tmpdir), "project_id": "00010203-0405-0607-0809-0a0b0c0d0e0f"})
assert response.status == 201
assert response.json["project_id"] == "00010203-0405-0607-0809-0a0b0c0d0e0f"
2015-01-19 15:23:41 +00:00
2015-01-20 12:04:20 +00:00
2016-04-15 15:57:06 +00:00
def test_create_project_without_dir(http_compute):
query = {"name": "test", "project_id": "10010203-0405-0607-0809-0a0b0c0d0e0f"}
2016-04-15 15:57:06 +00:00
response = http_compute.post("/projects", query, example=True)
assert response.status == 201
assert response.json["project_id"] == "10010203-0405-0607-0809-0a0b0c0d0e0f"
2015-01-23 15:02:26 +00:00
assert response.json["temporary"] is False
2015-03-14 19:16:27 +00:00
assert response.json["name"] == "test"
2015-01-23 15:02:26 +00:00
2016-04-15 15:57:06 +00:00
def test_create_temporary_project(http_compute):
query = {"name": "test", "temporary": True, "project_id": "20010203-0405-0607-0809-0a0b0c0d0e0f"}
2016-04-15 15:57:06 +00:00
response = http_compute.post("/projects", query)
assert response.status == 201
assert response.json["project_id"] == "20010203-0405-0607-0809-0a0b0c0d0e0f"
2015-01-23 15:02:26 +00:00
assert response.json["temporary"] is True
2015-03-14 19:16:27 +00:00
assert response.json["name"] == "test"
2015-01-19 15:23:41 +00:00
2015-01-20 12:04:20 +00:00
2016-04-15 15:57:06 +00:00
def test_create_project_with_uuid(http_compute):
query = {"name": "test", "project_id": "30010203-0405-0607-0809-0a0b0c0d0e0f"}
2016-04-15 15:57:06 +00:00
response = http_compute.post("/projects", query)
assert response.status == 201
assert response.json["project_id"] == "30010203-0405-0607-0809-0a0b0c0d0e0f"
2015-03-14 19:16:27 +00:00
assert response.json["name"] == "test"
2015-01-20 15:37:18 +00:00
2016-04-15 15:57:06 +00:00
def test_show_project(http_compute):
query = {"name": "test", "project_id": "40010203-0405-0607-0809-0a0b0c0d0e02", "temporary": False}
2016-04-15 15:57:06 +00:00
response = http_compute.post("/projects", query)
assert response.status == 201
2016-04-15 15:57:06 +00:00
response = http_compute.get("/projects/40010203-0405-0607-0809-0a0b0c0d0e02", example=True)
assert len(response.json.keys()) == 3
assert response.json["project_id"] == "40010203-0405-0607-0809-0a0b0c0d0e02"
assert response.json["temporary"] is False
2015-03-14 19:16:27 +00:00
assert response.json["name"] == "test"
2015-01-23 15:18:40 +00:00
2016-04-15 15:57:06 +00:00
def test_show_project_invalid_uuid(http_compute):
response = http_compute.get("/projects/50010203-0405-0607-0809-0a0b0c0d0e42")
2015-01-23 15:18:40 +00:00
assert response.status == 404
2016-04-15 15:57:06 +00:00
def test_list_projects(http_compute):
ProjectManager.instance()._projects = {}
query = {"name": "test", "project_id": "51010203-0405-0607-0809-0a0b0c0d0e0f"}
2016-04-15 15:57:06 +00:00
response = http_compute.post("/projects", query)
assert response.status == 201
query = {"name": "test", "project_id": "52010203-0405-0607-0809-0a0b0c0d0e0b"}
2016-04-15 15:57:06 +00:00
response = http_compute.post("/projects", query)
assert response.status == 201
2016-04-15 15:57:06 +00:00
response = http_compute.get("/projects", example=True)
assert response.status == 200
assert len(response.json) == 2
assert "51010203-0405-0607-0809-0a0b0c0d0e0f" in [p["project_id"] for p in response.json]
2016-04-15 15:57:06 +00:00
def test_update_temporary_project(http_compute):
query = {"name": "test", "temporary": True, "project_id": "60010203-0405-0607-0809-0a0b0c0d0e0b"}
2016-04-15 15:57:06 +00:00
response = http_compute.post("/projects", query)
assert response.status == 201
2015-03-14 19:16:27 +00:00
query = {"name": "test", "temporary": False}
2016-04-15 15:57:06 +00:00
response = http_compute.put("/projects/{project_id}".format(project_id=response.json["project_id"]), query, example=True)
2015-01-23 15:13:58 +00:00
assert response.status == 200
assert response.json["temporary"] is False
2016-04-15 15:57:06 +00:00
def test_update_path_project_temporary(http_compute, tmpdir):
os.makedirs(str(tmpdir / "a"))
os.makedirs(str(tmpdir / "b"))
2016-04-15 15:57:06 +00:00
with patch("gns3server.compute.project.Project.is_local", return_value=True):
response = http_compute.post("/projects", {"name": "first_name", "path": str(tmpdir / "a"), "temporary": True, "project_id": "70010203-0405-0607-0809-0a0b0c0d0e0b"})
assert response.status == 201
2015-03-14 19:16:27 +00:00
assert response.json["name"] == "first_name"
query = {"name": "second_name", "path": str(tmpdir / "b")}
2016-04-15 15:57:06 +00:00
response = http_compute.put("/projects/{project_id}".format(project_id=response.json["project_id"]), query, example=True)
assert response.status == 200
2015-03-14 19:16:27 +00:00
assert response.json["name"] == "second_name"
assert not os.path.exists(str(tmpdir / "a"))
assert os.path.exists(str(tmpdir / "b"))
2016-04-15 15:57:06 +00:00
def test_update_path_project_non_temporary(http_compute, tmpdir):
os.makedirs(str(tmpdir / "a"))
os.makedirs(str(tmpdir / "b"))
2016-04-15 15:57:06 +00:00
with patch("gns3server.compute.project.Project.is_local", return_value=True):
response = http_compute.post("/projects", {"name": "first_name", "path": str(tmpdir / "a"), "project_id": "80010203-0405-0607-0809-0a0b0c0d0e0b"})
assert response.status == 201
assert response.json["name"] == "first_name"
query = {"name": "second_name", "path": str(tmpdir / "b")}
2016-04-15 15:57:06 +00:00
response = http_compute.put("/projects/{project_id}".format(project_id=response.json["project_id"]), query, example=True)
assert response.status == 200
2015-03-14 19:16:27 +00:00
assert response.json["name"] == "second_name"
assert os.path.exists(str(tmpdir / "a"))
assert os.path.exists(str(tmpdir / "b"))
2016-04-15 15:57:06 +00:00
def test_update_path_project_non_local(http_compute, tmpdir):
2016-04-15 15:57:06 +00:00
with patch("gns3server.compute.project.Project.is_local", return_value=False):
response = http_compute.post("/projects", {"name": "first_name", "project_id": "90010203-0405-0607-0809-0a0b0c0d0e0b"})
assert response.status == 201
2015-03-14 19:16:27 +00:00
query = {"name": "second_name", "path": str(tmpdir)}
2016-04-15 15:57:06 +00:00
response = http_compute.put("/projects/{project_id}".format(project_id=response.json["project_id"]), query, example=True)
assert response.status == 403
2016-04-15 15:57:06 +00:00
def test_commit_project(http_compute, project):
with asyncio_patch("gns3server.compute.project.Project.commit", return_value=True) as mock:
response = http_compute.post("/projects/{project_id}/commit".format(project_id=project.id), example=True)
2015-01-23 10:28:58 +00:00
assert response.status == 204
2015-01-23 13:07:10 +00:00
assert mock.called
2015-01-23 10:28:58 +00:00
2016-04-15 15:57:06 +00:00
def test_commit_project_invalid_uuid(http_compute):
response = http_compute.post("/projects/{project_id}/commit".format(project_id=uuid.uuid4()))
2015-01-23 10:28:58 +00:00
assert response.status == 404
2015-01-23 10:48:20 +00:00
2016-04-15 15:57:06 +00:00
def test_delete_project(http_compute, project):
with asyncio_patch("gns3server.compute.project.Project.delete", return_value=True) as mock:
response = http_compute.delete("/projects/{project_id}".format(project_id=project.id), example=True)
2015-01-23 13:07:10 +00:00
assert response.status == 204
assert mock.called
2015-01-23 10:48:20 +00:00
2016-04-15 15:57:06 +00:00
def test_delete_project_invalid_uuid(http_compute):
response = http_compute.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
2016-04-15 15:57:06 +00:00
def test_close_project(http_compute, project):
with asyncio_patch("gns3server.compute.project.Project.close", return_value=True) as mock:
response = http_compute.post("/projects/{project_id}/close".format(project_id=project.id), example=True)
2015-01-23 13:07:10 +00:00
assert response.status == 204
assert mock.called
2016-04-15 15:57:06 +00:00
def test_close_project_two_client_connected(http_compute, project):
2015-09-04 07:13:57 +00:00
ProjectHandler._notifications_listening = {project.id: 2}
2016-04-15 15:57:06 +00:00
with asyncio_patch("gns3server.compute.project.Project.close", return_value=True) as mock:
response = http_compute.post("/projects/{project_id}/close".format(project_id=project.id), example=True)
assert response.status == 204
assert not mock.called
2016-04-15 15:57:06 +00:00
def test_close_project_invalid_uuid(http_compute):
response = http_compute.post("/projects/{project_id}/close".format(project_id=uuid.uuid4()))
2015-01-23 13:07:10 +00:00
assert response.status == 404
2016-04-15 15:57:06 +00:00
def test_get_file(http_compute, tmpdir):
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")
with open(os.path.join(project.path, "hello"), "w+") as f:
f.write("world")
response = http_compute.get("/projects/{project_id}/files/hello".format(project_id=project.id), raw=True)
assert response.status == 200
assert response.body == b"world"
response = http_compute.get("/projects/{project_id}/files/false".format(project_id=project.id), raw=True)
assert response.status == 404
response = http_compute.get("/projects/{project_id}/files/../hello".format(project_id=project.id), raw=True)
assert response.status == 403
def test_stream_file(http_compute, tmpdir):
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")
with open(os.path.join(project.path, "hello"), "w+") as f:
f.write("world")
2016-04-15 15:57:06 +00:00
response = http_compute.get("/projects/{project_id}/files/hello".format(project_id=project.id), raw=True)
assert response.status == 200
assert response.body == b"world"
2016-04-15 15:57:06 +00:00
response = http_compute.get("/projects/{project_id}/files/false".format(project_id=project.id), raw=True)
assert response.status == 404
2016-04-15 15:57:06 +00:00
response = http_compute.get("/projects/{project_id}/files/../hello".format(project_id=project.id), raw=True)
assert response.status == 403
2016-04-08 15:40:27 +00:00
2016-04-15 15:57:06 +00:00
def test_export(http_compute, tmpdir, loop, project):
2016-04-08 15:40:27 +00:00
os.makedirs(project.path, exist_ok=True)
with open(os.path.join(project.path, 'a'), 'w+') as f:
f.write('hello')
2016-04-15 15:57:06 +00:00
response = http_compute.get("/projects/{project_id}/export".format(project_id=project.id), raw=True)
2016-04-08 15:40:27 +00:00
assert response.status == 200
2016-05-02 14:59:56 +00:00
assert response.headers['CONTENT-TYPE'] == 'application/gns3project'
assert response.headers['CONTENT-DISPOSITION'] == 'attachment; filename="{}.gns3project"'.format(project.name)
2016-04-08 15:40:27 +00:00
with open(str(tmpdir / 'project.zip'), 'wb+') as f:
f.write(response.body)
with zipfile.ZipFile(str(tmpdir / 'project.zip')) as myzip:
with myzip.open("a") as myfile:
content = myfile.read()
assert content == b"hello"
2016-04-15 15:57:06 +00:00
def test_import(http_compute, tmpdir, loop, project):
2016-04-08 15:40:27 +00:00
with zipfile.ZipFile(str(tmpdir / "test.zip"), 'w') as myzip:
myzip.writestr("demo", b"hello")
project_id = project.id
with open(str(tmpdir / "test.zip"), "rb") as f:
2016-04-15 15:57:06 +00:00
response = http_compute.post("/projects/{project_id}/import".format(project_id=project_id), body=f.read(), raw=True)
2016-04-08 15:40:27 +00:00
assert response.status == 201
project = ProjectManager.instance().get_project(project_id=project_id)
with open(os.path.join(project.path, "demo")) as f:
content = f.read()
assert content == "hello"