2015-02-12 02:21:34 +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/>.
|
|
|
|
|
2017-01-10 11:15:31 +00:00
|
|
|
import os
|
2017-01-10 11:41:14 +00:00
|
|
|
import uuid
|
2015-02-12 02:21:34 +00:00
|
|
|
import pytest
|
|
|
|
import asyncio
|
2015-03-02 14:26:57 +00:00
|
|
|
import configparser
|
2015-02-12 02:21:34 +00:00
|
|
|
|
|
|
|
from unittest.mock import patch
|
2016-04-15 15:57:06 +00:00
|
|
|
from gns3server.compute.dynamips.nodes.router import Router
|
|
|
|
from gns3server.compute.dynamips.dynamips_error import DynamipsError
|
|
|
|
from gns3server.compute.dynamips import Dynamips
|
2015-03-16 13:42:00 +00:00
|
|
|
from gns3server.config import Config
|
2015-02-12 02:21:34 +00:00
|
|
|
|
|
|
|
|
2016-10-24 19:39:35 +00:00
|
|
|
@pytest.fixture
|
2015-02-12 02:21:34 +00:00
|
|
|
def manager(port_manager):
|
|
|
|
m = Dynamips.instance()
|
|
|
|
m.port_manager = port_manager
|
|
|
|
return m
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
|
|
def router(project, manager):
|
|
|
|
return Router("test", "00010203-0405-0607-0809-0a0b0c0d0e0f", project, manager)
|
|
|
|
|
|
|
|
|
|
|
|
def test_router(project, manager):
|
|
|
|
router = Router("test", "00010203-0405-0607-0809-0a0b0c0d0e0f", project, manager)
|
|
|
|
assert router.name == "test"
|
|
|
|
assert router.id == "00010203-0405-0607-0809-0a0b0c0d0e0f"
|
|
|
|
|
|
|
|
|
2017-01-10 11:15:31 +00:00
|
|
|
def test_convert_project_before_2_0_0_b3(project, manager):
|
2017-01-10 11:41:14 +00:00
|
|
|
node_id = str(uuid.uuid4())
|
2017-01-10 11:15:31 +00:00
|
|
|
wdir = project.module_working_directory(manager.module_name.lower())
|
2017-01-10 11:41:14 +00:00
|
|
|
os.makedirs(os.path.join(wdir, node_id))
|
2017-01-10 11:15:31 +00:00
|
|
|
os.makedirs(os.path.join(wdir, "configs"))
|
|
|
|
open(os.path.join(wdir, "configs", "i1_startup-config.cfg"), "w+").close()
|
|
|
|
open(os.path.join(wdir, "configs", "i2_startup-config.cfg"), "w+").close()
|
|
|
|
open(os.path.join(wdir, "c7200_i1_nvram"), "w+").close()
|
|
|
|
open(os.path.join(wdir, "c7200_i2_nvram"), "w+").close()
|
2017-01-10 11:41:14 +00:00
|
|
|
router = Router("test", node_id, project, manager, dynamips_id=1)
|
|
|
|
assert os.path.exists(os.path.join(wdir, node_id, "configs", "i1_startup-config.cfg"))
|
|
|
|
assert not os.path.exists(os.path.join(wdir, node_id, "configs", "i2_startup-config.cfg"))
|
|
|
|
assert os.path.exists(os.path.join(wdir, node_id, "c7200_i1_nvram"))
|
|
|
|
assert not os.path.exists(os.path.join(wdir, node_id, "c7200_i2_nvram"))
|
2017-01-10 11:15:31 +00:00
|
|
|
|
|
|
|
|
2015-02-12 02:21:34 +00:00
|
|
|
def test_router_invalid_dynamips_path(project, manager, loop):
|
2015-03-16 13:42:00 +00:00
|
|
|
|
|
|
|
config = Config.instance()
|
2015-03-16 14:03:41 +00:00
|
|
|
config.set("Dynamips", "dynamips_path", "/bin/test_fake")
|
|
|
|
config.set("Dynamips", "allocate_aux_console_ports", False)
|
2015-03-16 13:42:00 +00:00
|
|
|
|
|
|
|
with pytest.raises(DynamipsError):
|
|
|
|
router = Router("test", "00010203-0405-0607-0809-0a0b0c0d0e0e", project, manager)
|
2018-01-24 10:11:53 +00:00
|
|
|
loop.run_until_complete(asyncio.ensure_future(router.create()))
|
2015-03-16 13:42:00 +00:00
|
|
|
assert router.name == "test"
|
|
|
|
assert router.id == "00010203-0405-0607-0809-0a0b0c0d0e0e"
|