2015-01-21 21:32:33 +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/>.
|
|
|
|
|
2015-02-27 17:30:22 +00:00
|
|
|
|
2015-01-21 21:32:33 +00:00
|
|
|
import pytest
|
|
|
|
import socket
|
|
|
|
import asyncio
|
2015-01-23 16:39:17 +00:00
|
|
|
import tempfile
|
|
|
|
import shutil
|
2015-02-09 09:18:37 +00:00
|
|
|
import os
|
2015-02-27 17:30:22 +00:00
|
|
|
import sys
|
2015-01-21 21:32:33 +00:00
|
|
|
from aiohttp import web
|
2015-01-23 16:39:17 +00:00
|
|
|
|
2015-02-27 17:30:22 +00:00
|
|
|
sys._called_from_test = True
|
|
|
|
# Prevent execution of external binaries
|
|
|
|
os.environ["PATH"] = tempfile.mkdtemp()
|
|
|
|
|
2015-01-23 16:39:17 +00:00
|
|
|
from gns3server.config import Config
|
2015-01-21 21:32:33 +00:00
|
|
|
from gns3server.web.route import Route
|
|
|
|
# TODO: get rid of *
|
|
|
|
from gns3server.handlers import *
|
|
|
|
from gns3server.modules import MODULES
|
|
|
|
from gns3server.modules.port_manager import PortManager
|
|
|
|
from gns3server.modules.project_manager import ProjectManager
|
2015-02-23 10:27:07 +00:00
|
|
|
from tests.handlers.api.base import Query
|
2015-01-21 21:32:33 +00:00
|
|
|
|
|
|
|
|
2015-02-16 16:20:07 +00:00
|
|
|
@pytest.yield_fixture
|
|
|
|
def restore_original_path():
|
|
|
|
"""
|
|
|
|
Temporary restore a standard path environnement. This allow
|
|
|
|
to run external binaries.
|
|
|
|
"""
|
|
|
|
os.environ["PATH"] = "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
|
|
|
|
yield
|
|
|
|
os.environ["PATH"] = tempfile.mkdtemp()
|
|
|
|
|
|
|
|
|
2015-01-21 21:32:33 +00:00
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
def loop(request):
|
|
|
|
"""Return an event loop and destroy it at the end of test"""
|
|
|
|
loop = asyncio.new_event_loop()
|
|
|
|
asyncio.set_event_loop(loop) # Replace main loop to avoid conflict between tests
|
|
|
|
|
|
|
|
def tear_down():
|
|
|
|
loop.close()
|
|
|
|
asyncio.set_event_loop(None)
|
|
|
|
request.addfinalizer(tear_down)
|
|
|
|
return loop
|
|
|
|
|
|
|
|
|
|
|
|
def _get_unused_port():
|
|
|
|
""" Return an unused port on localhost. In rare occasion it can return
|
|
|
|
an already used port (race condition)"""
|
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
s.bind(('localhost', 0))
|
|
|
|
addr, port = s.getsockname()
|
|
|
|
s.close()
|
|
|
|
return port
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
2015-02-09 09:59:09 +00:00
|
|
|
def server(request, loop, port_manager, monkeypatch):
|
2015-01-23 20:01:23 +00:00
|
|
|
"""A GNS3 server"""
|
2015-01-22 15:12:21 +00:00
|
|
|
|
2015-01-21 21:32:33 +00:00
|
|
|
port = _get_unused_port()
|
|
|
|
host = "localhost"
|
|
|
|
app = web.Application()
|
|
|
|
for method, route, handler in Route.get_routes():
|
|
|
|
app.router.add_route(method, route, handler)
|
|
|
|
for module in MODULES:
|
|
|
|
instance = module.instance()
|
|
|
|
instance.port_manager = port_manager
|
|
|
|
srv = loop.create_server(app.make_handler(), host, port)
|
|
|
|
srv = loop.run_until_complete(srv)
|
|
|
|
|
|
|
|
def tear_down():
|
|
|
|
for module in MODULES:
|
2015-01-23 06:40:51 +00:00
|
|
|
instance = module.instance()
|
2015-02-09 09:59:09 +00:00
|
|
|
monkeypatch.setattr('gns3server.modules.virtualbox.virtualbox_vm.VirtualBoxVM.close', lambda self: True)
|
2015-01-23 06:40:51 +00:00
|
|
|
loop.run_until_complete(instance.unload())
|
2015-01-21 21:32:33 +00:00
|
|
|
srv.close()
|
|
|
|
srv.wait_closed()
|
|
|
|
request.addfinalizer(tear_down)
|
|
|
|
return Query(loop, host=host, port=port)
|
|
|
|
|
|
|
|
|
2015-02-26 09:45:37 +00:00
|
|
|
@pytest.fixture(scope="function")
|
2015-01-21 21:32:33 +00:00
|
|
|
def project():
|
2015-01-22 15:12:21 +00:00
|
|
|
"""A GNS3 lab"""
|
|
|
|
|
2015-02-04 20:48:29 +00:00
|
|
|
return ProjectManager.instance().create_project(project_id="a1e920ca-338a-4e9f-b363-aa607b09dd80")
|
2015-01-21 21:32:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
def port_manager():
|
2015-01-22 15:12:21 +00:00
|
|
|
"""An instance of port manager"""
|
|
|
|
|
2015-01-23 23:38:59 +00:00
|
|
|
return PortManager("127.0.0.1")
|
2015-01-21 21:32:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
2015-03-21 23:19:12 +00:00
|
|
|
def free_console_port(request, port_manager, project):
|
2015-01-22 15:12:21 +00:00
|
|
|
"""Get a free TCP port"""
|
|
|
|
|
2015-01-21 21:32:33 +00:00
|
|
|
# In case of already use ports we will raise an exception
|
2015-03-21 23:19:12 +00:00
|
|
|
port = port_manager.get_free_tcp_port(project)
|
2015-01-21 21:32:33 +00:00
|
|
|
# We release the port immediately in order to allow
|
|
|
|
# the test do whatever the test want
|
2015-03-21 23:19:12 +00:00
|
|
|
port_manager.release_tcp_port(port, project)
|
2015-01-21 21:32:33 +00:00
|
|
|
return port
|
2015-01-23 16:39:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.yield_fixture(autouse=True)
|
2015-02-06 10:14:56 +00:00
|
|
|
def run_around_tests(monkeypatch):
|
|
|
|
"""
|
|
|
|
This setup a temporay project file environnement around tests
|
|
|
|
"""
|
|
|
|
|
2015-01-23 16:39:17 +00:00
|
|
|
tmppath = tempfile.mkdtemp()
|
|
|
|
|
|
|
|
config = Config.instance()
|
2015-03-17 14:40:58 +00:00
|
|
|
config.clear()
|
2015-03-16 14:03:41 +00:00
|
|
|
config.set("Server", "project_directory", tmppath)
|
2015-01-23 16:39:17 +00:00
|
|
|
|
2015-02-09 09:18:37 +00:00
|
|
|
# Prevent exectuions of the VM if we forgot to mock something
|
2015-03-16 14:03:41 +00:00
|
|
|
config.set("VirtualBox", "vboxmanage_path", tmppath)
|
|
|
|
config.set("VPCS", "vpcs_path", tmppath)
|
2015-02-09 09:18:37 +00:00
|
|
|
|
2015-02-06 10:14:56 +00:00
|
|
|
monkeypatch.setattr("gns3server.modules.project.Project._get_default_project_directory", lambda *args: tmppath)
|
|
|
|
|
2015-01-23 16:39:17 +00:00
|
|
|
yield
|
|
|
|
|
2015-01-26 12:54:44 +00:00
|
|
|
# An helper should not raise Exception
|
|
|
|
try:
|
|
|
|
shutil.rmtree(tmppath)
|
|
|
|
except:
|
|
|
|
pass
|