2015-01-19 17:23:41 +02:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- 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/>.
|
|
|
|
|
|
|
|
|
|
import os
|
2016-04-05 19:32:48 +03:00
|
|
|
|
import uuid
|
|
|
|
|
import json
|
2015-01-26 13:10:30 +02:00
|
|
|
|
import asyncio
|
2015-01-23 12:28:58 +02:00
|
|
|
|
import pytest
|
2015-01-23 17:57:41 +02:00
|
|
|
|
import aiohttp
|
2016-03-30 12:43:31 +03:00
|
|
|
|
import zipfile
|
2015-02-04 18:18:53 +02:00
|
|
|
|
from uuid import uuid4
|
2015-01-23 15:07:10 +02:00
|
|
|
|
from unittest.mock import patch
|
|
|
|
|
|
2015-02-06 12:31:54 +02:00
|
|
|
|
from tests.utils import asyncio_patch
|
2016-04-15 18:57:06 +03:00
|
|
|
|
from gns3server.compute.project import Project
|
|
|
|
|
from gns3server.compute.notification_manager import NotificationManager
|
|
|
|
|
from gns3server.compute.vpcs import VPCS, VPCSVM
|
2016-03-10 11:32:07 +02:00
|
|
|
|
from gns3server.config import Config
|
2015-01-23 12:28:58 +02:00
|
|
|
|
|
|
|
|
|
|
2016-10-24 22:39:35 +03:00
|
|
|
|
@pytest.fixture(scope="function")
|
2015-01-23 12:28:58 +02:00
|
|
|
|
def manager(port_manager):
|
|
|
|
|
m = VPCS.instance()
|
|
|
|
|
m.port_manager = port_manager
|
|
|
|
|
return m
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
2016-05-11 20:35:36 +03:00
|
|
|
|
def node(project, manager, loop):
|
|
|
|
|
node = manager.create_node("test", project.id, "00010203-0405-0607-0809-0a0b0c0d0e0f")
|
|
|
|
|
return loop.run_until_complete(asyncio.async(node))
|
2015-01-20 14:04:20 +02:00
|
|
|
|
|
2015-01-19 17:23:41 +02:00
|
|
|
|
|
|
|
|
|
def test_affect_uuid():
|
2015-02-04 22:48:29 +02:00
|
|
|
|
p = Project(project_id='00010203-0405-0607-0809-0a0b0c0d0e0f')
|
|
|
|
|
assert p.id == '00010203-0405-0607-0809-0a0b0c0d0e0f'
|
2015-01-19 17:23:41 +02:00
|
|
|
|
|
2015-01-20 14:04:20 +02:00
|
|
|
|
|
2016-04-21 18:27:49 +03:00
|
|
|
|
def test_clean_tmp_directory(async_run):
|
|
|
|
|
"""
|
|
|
|
|
The tmp directory should be clean at project open and close
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
p = Project(project_id='00010203-0405-0607-0809-0a0b0c0d0e0f')
|
|
|
|
|
path = p.tmp_working_directory()
|
|
|
|
|
os.makedirs(path)
|
|
|
|
|
async_run(p.close())
|
|
|
|
|
assert not os.path.exists(path)
|
|
|
|
|
|
|
|
|
|
os.makedirs(path)
|
|
|
|
|
p = Project(project_id='00010203-0405-0607-0809-0a0b0c0d0e0f')
|
|
|
|
|
assert not os.path.exists(path)
|
|
|
|
|
|
|
|
|
|
|
2015-01-19 17:23:41 +02:00
|
|
|
|
def test_path(tmpdir):
|
2016-03-10 11:32:07 +02:00
|
|
|
|
|
2016-05-11 19:42:55 +03:00
|
|
|
|
directory = Config.instance().get_section_config("Server").get("projects_path")
|
2016-03-10 11:32:07 +02:00
|
|
|
|
|
2016-04-15 18:57:06 +03:00
|
|
|
|
with patch("gns3server.compute.project.Project.is_local", return_value=True):
|
2016-05-11 19:42:55 +03:00
|
|
|
|
with patch("gns3server.utils.path.get_default_project_directory", return_value=directory):
|
2016-03-10 11:32:07 +02:00
|
|
|
|
p = Project(project_id=str(uuid4()))
|
|
|
|
|
assert p.path == os.path.join(directory, p.id)
|
|
|
|
|
assert os.path.exists(os.path.join(directory, p.id))
|
2015-02-05 12:39:32 +02:00
|
|
|
|
|
|
|
|
|
|
2015-02-05 18:52:37 +02:00
|
|
|
|
def test_init_path(tmpdir):
|
|
|
|
|
|
2016-04-15 18:57:06 +03:00
|
|
|
|
with patch("gns3server.compute.project.Project.is_local", return_value=True):
|
2016-03-10 11:32:07 +02:00
|
|
|
|
p = Project(path=str(tmpdir), project_id=str(uuid4()))
|
2015-02-05 18:52:37 +02:00
|
|
|
|
assert p.path == str(tmpdir)
|
|
|
|
|
|
|
|
|
|
|
2015-02-04 22:17:00 +02:00
|
|
|
|
def test_changing_path_not_allowed(tmpdir):
|
2016-04-15 18:57:06 +03:00
|
|
|
|
with patch("gns3server.compute.project.Project.is_local", return_value=False):
|
2015-02-04 22:17:00 +02:00
|
|
|
|
with pytest.raises(aiohttp.web.HTTPForbidden):
|
2016-03-10 11:32:07 +02:00
|
|
|
|
p = Project(project_id=str(uuid4()))
|
2015-02-04 22:17:00 +02:00
|
|
|
|
p.path = str(tmpdir)
|
|
|
|
|
|
|
|
|
|
|
2015-01-19 17:23:41 +02:00
|
|
|
|
def test_json(tmpdir):
|
2016-03-10 11:32:07 +02:00
|
|
|
|
p = Project(project_id=str(uuid4()))
|
2016-05-24 18:54:08 +03:00
|
|
|
|
assert p.__json__() == {"name": p.name, "project_id": p.id}
|
2015-01-20 15:31:47 +02:00
|
|
|
|
|
|
|
|
|
|
2016-05-12 00:19:00 +03:00
|
|
|
|
def test_node_working_directory(tmpdir, node):
|
2016-05-11 19:42:55 +03:00
|
|
|
|
directory = Config.instance().get_section_config("Server").get("projects_path")
|
2016-03-10 11:32:07 +02:00
|
|
|
|
|
2016-04-15 18:57:06 +03:00
|
|
|
|
with patch("gns3server.compute.project.Project.is_local", return_value=True):
|
2016-03-10 11:32:07 +02:00
|
|
|
|
p = Project(project_id=str(uuid4()))
|
2016-05-11 20:35:36 +03:00
|
|
|
|
assert p.node_working_directory(node) == os.path.join(directory, p.id, 'project-files', node.module_name, node.id)
|
|
|
|
|
assert os.path.exists(p.node_working_directory(node))
|
2015-01-23 12:28:58 +02:00
|
|
|
|
|
|
|
|
|
|
2017-10-02 11:41:57 +03:00
|
|
|
|
def test_node_working_path(tmpdir, node):
|
|
|
|
|
directory = Config.instance().get_section_config("Server").get("projects_path")
|
|
|
|
|
|
|
|
|
|
with patch("gns3server.compute.project.Project.is_local", return_value=True):
|
|
|
|
|
p = Project(project_id=str(uuid4()))
|
|
|
|
|
assert p.node_working_path(node) == os.path.join(directory, p.id, 'project-files', node.module_name, node.id)
|
|
|
|
|
# after this execution directory structure should not be created
|
|
|
|
|
assert not os.path.exists(p.node_working_path(node))
|
|
|
|
|
|
|
|
|
|
|
2015-01-26 13:10:30 +02:00
|
|
|
|
def test_project_delete(loop):
|
2016-03-10 11:32:07 +02:00
|
|
|
|
project = Project(project_id=str(uuid4()))
|
2015-01-23 12:48:20 +02:00
|
|
|
|
directory = project.path
|
|
|
|
|
assert os.path.exists(directory)
|
2015-01-26 13:10:30 +02:00
|
|
|
|
loop.run_until_complete(asyncio.async(project.delete()))
|
2015-01-23 12:48:20 +02:00
|
|
|
|
assert os.path.exists(directory) is False
|
2015-01-23 15:07:10 +02:00
|
|
|
|
|
|
|
|
|
|
2015-01-26 14:54:44 +02:00
|
|
|
|
def test_project_delete_permission_issue(loop):
|
2016-03-10 11:32:07 +02:00
|
|
|
|
project = Project(project_id=str(uuid4()))
|
2015-01-26 14:54:44 +02:00
|
|
|
|
directory = project.path
|
|
|
|
|
assert os.path.exists(directory)
|
|
|
|
|
os.chmod(directory, 0)
|
|
|
|
|
with pytest.raises(aiohttp.web.HTTPInternalServerError):
|
|
|
|
|
loop.run_until_complete(asyncio.async(project.delete()))
|
|
|
|
|
os.chmod(directory, 700)
|
|
|
|
|
|
|
|
|
|
|
2016-05-12 00:19:00 +03:00
|
|
|
|
def test_project_add_node(manager):
|
2016-03-10 11:32:07 +02:00
|
|
|
|
project = Project(project_id=str(uuid4()))
|
2016-05-11 20:35:36 +03:00
|
|
|
|
node = VPCSVM("test", "00010203-0405-0607-0809-0a0b0c0d0e0f", project, manager)
|
|
|
|
|
project.add_node(node)
|
|
|
|
|
assert len(project.nodes) == 1
|
2015-01-23 15:07:10 +02:00
|
|
|
|
|
|
|
|
|
|
2016-05-11 20:35:36 +03:00
|
|
|
|
def test_project_close(loop, node, project):
|
2015-03-06 16:48:16 +02:00
|
|
|
|
|
2016-04-15 18:57:06 +03:00
|
|
|
|
with asyncio_patch("gns3server.compute.vpcs.vpcs_vm.VPCSVM.close") as mock:
|
2015-01-26 13:10:30 +02:00
|
|
|
|
loop.run_until_complete(asyncio.async(project.close()))
|
2015-01-23 15:07:10 +02:00
|
|
|
|
assert mock.called
|
2016-05-11 20:35:36 +03:00
|
|
|
|
assert node.id not in node.manager._nodes
|
2015-01-23 17:02:26 +02:00
|
|
|
|
|
|
|
|
|
|
2015-05-14 13:03:17 +03:00
|
|
|
|
def test_list_files(tmpdir, loop):
|
|
|
|
|
|
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 = Project(project_id=str(uuid4()))
|
2015-05-14 13:03:17 +03:00
|
|
|
|
path = project.path
|
|
|
|
|
os.makedirs(os.path.join(path, "vm-1", "dynamips"))
|
|
|
|
|
with open(os.path.join(path, "vm-1", "dynamips", "test.bin"), "w+") as f:
|
|
|
|
|
f.write("test")
|
|
|
|
|
open(os.path.join(path, "vm-1", "dynamips", "test.ghost"), "w+").close()
|
|
|
|
|
with open(os.path.join(path, "test.txt"), "w+") as f:
|
|
|
|
|
f.write("test2")
|
|
|
|
|
|
|
|
|
|
files = loop.run_until_complete(asyncio.async(project.list_files()))
|
|
|
|
|
|
|
|
|
|
assert files == [
|
|
|
|
|
{
|
|
|
|
|
"path": "test.txt",
|
|
|
|
|
"md5sum": "ad0234829205b9033196ba818f7a872b"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"path": os.path.join("vm-1", "dynamips", "test.bin"),
|
|
|
|
|
"md5sum": "098f6bcd4621d373cade4e832627b4f6"
|
|
|
|
|
}
|
|
|
|
|
]
|
2016-03-17 16:15:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_emit(async_run):
|
|
|
|
|
|
|
|
|
|
with NotificationManager.instance().queue() as queue:
|
2016-03-17 16:16:09 +02:00
|
|
|
|
(action, event, context) = async_run(queue.get(0.5)) # Ping
|
2016-03-17 16:15:30 +02:00
|
|
|
|
|
|
|
|
|
project = Project(project_id=str(uuid4()))
|
|
|
|
|
project.emit("test", {})
|
|
|
|
|
(action, event, context) = async_run(queue.get(0.5))
|
|
|
|
|
assert action == "test"
|
|
|
|
|
assert context["project_id"] == project.id
|