2015-01-14 19:52:02 +02: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/>.
|
|
|
|
|
|
|
|
import pytest
|
2015-01-15 14:02:43 +02:00
|
|
|
import asyncio
|
|
|
|
from tests.utils import asyncio_patch
|
|
|
|
|
|
|
|
#Move loop to util
|
2015-01-15 17:59:01 +02:00
|
|
|
from tests.api.base import loop, port_manager
|
2015-01-15 14:02:43 +02:00
|
|
|
from asyncio.subprocess import Process
|
2015-01-15 15:27:33 +02:00
|
|
|
from unittest.mock import patch, MagicMock
|
2015-01-14 19:52:02 +02:00
|
|
|
from gns3server.modules.vpcs.vpcs_device import VPCSDevice
|
|
|
|
from gns3server.modules.vpcs.vpcs_error import VPCSError
|
|
|
|
|
|
|
|
@patch("subprocess.check_output", return_value="Welcome to Virtual PC Simulator, version 0.6".encode("utf-8"))
|
2015-01-15 17:59:01 +02:00
|
|
|
def test_vm(tmpdir, port_manager):
|
|
|
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test")
|
2015-01-14 19:52:02 +02:00
|
|
|
assert vm.name == "test"
|
|
|
|
assert vm.id == 42
|
|
|
|
|
|
|
|
@patch("subprocess.check_output", return_value="Welcome to Virtual PC Simulator, version 0.1".encode("utf-8"))
|
2015-01-15 17:59:01 +02:00
|
|
|
def test_vm_invalid_vpcs_version(tmpdir, port_manager):
|
2015-01-14 19:52:02 +02:00
|
|
|
with pytest.raises(VPCSError):
|
2015-01-15 17:59:01 +02:00
|
|
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test")
|
2015-01-14 19:52:02 +02:00
|
|
|
assert vm.name == "test"
|
|
|
|
assert vm.id == 42
|
|
|
|
|
2015-01-15 17:59:01 +02:00
|
|
|
def test_vm_invalid_vpcs_path(tmpdir, port_manager):
|
2015-01-14 19:52:02 +02:00
|
|
|
with pytest.raises(VPCSError):
|
2015-01-15 17:59:01 +02:00
|
|
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test_fake")
|
2015-01-14 19:52:02 +02:00
|
|
|
assert vm.name == "test"
|
|
|
|
assert vm.id == 42
|
|
|
|
|
2015-01-15 17:59:01 +02:00
|
|
|
def test_start(tmpdir, loop, port_manager):
|
2015-01-15 15:27:33 +02:00
|
|
|
with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()):
|
2015-01-15 17:59:01 +02:00
|
|
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test")
|
2015-01-15 15:27:33 +02:00
|
|
|
loop.run_until_complete(asyncio.async(vm.start()))
|
|
|
|
assert vm.is_running() == True
|
|
|
|
|
2015-01-15 17:59:01 +02:00
|
|
|
def test_stop(tmpdir, loop, port_manager):
|
2015-01-15 15:27:33 +02:00
|
|
|
process = MagicMock()
|
|
|
|
with asyncio_patch("asyncio.create_subprocess_exec", return_value=process):
|
2015-01-15 17:59:01 +02:00
|
|
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test")
|
2015-01-15 14:02:43 +02:00
|
|
|
loop.run_until_complete(asyncio.async(vm.start()))
|
|
|
|
assert vm.is_running() == True
|
2015-01-15 15:27:33 +02:00
|
|
|
loop.run_until_complete(asyncio.async(vm.stop()))
|
|
|
|
assert vm.is_running() == False
|
|
|
|
process.terminate.assert_called_with()
|
2015-01-15 14:02:43 +02:00
|
|
|
|
2015-01-16 17:20:10 +02:00
|
|
|
def test_add_nio_binding_udp(port_manager, tmpdir):
|
|
|
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test")
|
|
|
|
nio = vm.port_add_nio_binding(0, {"type": "nio_udp", "lport": 4242, "rport": 4243, "rhost": "127.0.0.1"})
|
|
|
|
assert nio.lport == 4242
|
|
|
|
|
|
|
|
def test_add_nio_binding_tap(port_manager, tmpdir):
|
|
|
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test")
|
|
|
|
with patch("gns3server.modules.vpcs.vpcs_device.has_privileged_access", return_value=True):
|
|
|
|
nio = vm.port_add_nio_binding(0, {"type": "nio_tap", "tap_device": "test"})
|
|
|
|
assert nio.tap_device == "test"
|
|
|
|
|
|
|
|
def test_add_nio_binding_tap_no_privileged_access(port_manager, tmpdir):
|
|
|
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test")
|
|
|
|
with patch("gns3server.modules.vpcs.vpcs_device.has_privileged_access", return_value=False):
|
|
|
|
with pytest.raises(VPCSError):
|
|
|
|
vm.port_add_nio_binding(0, {"type": "nio_tap", "tap_device": "test"})
|