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

174 lines
7.0 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-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"}
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()) == 2
assert response.json["project_id"] == "40010203-0405-0607-0809-0a0b0c0d0e02"
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_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_write_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")
response = http_compute.post("/projects/{project_id}/files/hello".format(project_id=project.id), body="world", raw=True)
assert response.status == 200
with open(os.path.join(project.path, "hello")) as f:
assert f.read() == "world"
response = http_compute.post("/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