2015-02-19 15:46:57 +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/>.
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
import aiohttp
|
|
|
|
import asyncio
|
|
|
|
import os
|
2015-04-27 21:12:13 +00:00
|
|
|
import sys
|
2015-02-19 15:46:57 +00:00
|
|
|
import stat
|
2015-02-19 18:43:45 +00:00
|
|
|
import re
|
2015-02-19 15:46:57 +00:00
|
|
|
from tests.utils import asyncio_patch
|
|
|
|
|
|
|
|
|
2015-08-27 16:27:17 +00:00
|
|
|
from unittest import mock
|
2015-02-19 15:46:57 +00:00
|
|
|
from unittest.mock import patch, MagicMock
|
2015-08-27 16:27:17 +00:00
|
|
|
|
2015-02-19 15:46:57 +00:00
|
|
|
from gns3server.modules.qemu.qemu_vm import QemuVM
|
|
|
|
from gns3server.modules.qemu.qemu_error import QemuError
|
|
|
|
from gns3server.modules.qemu import Qemu
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
def manager(port_manager):
|
|
|
|
m = Qemu.instance()
|
|
|
|
m.port_manager = port_manager
|
|
|
|
return m
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def fake_qemu_img_binary():
|
|
|
|
|
2015-06-06 21:15:03 +00:00
|
|
|
bin_path = os.path.join(os.environ["PATH"], "qemu-img")
|
2015-02-19 15:46:57 +00:00
|
|
|
with open(bin_path, "w+") as f:
|
|
|
|
f.write("1")
|
|
|
|
os.chmod(bin_path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)
|
|
|
|
return bin_path
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def fake_qemu_binary():
|
|
|
|
|
2015-04-27 21:12:13 +00:00
|
|
|
if sys.platform.startswith("win"):
|
2015-06-10 13:49:24 +00:00
|
|
|
bin_path = os.path.join(os.environ["PATH"], "qemu-system-x86_64.EXE")
|
2015-04-27 21:12:13 +00:00
|
|
|
else:
|
2015-06-10 13:49:24 +00:00
|
|
|
bin_path = os.path.join(os.environ["PATH"], "qemu-system-x86_64")
|
2015-02-19 15:46:57 +00:00
|
|
|
with open(bin_path, "w+") as f:
|
|
|
|
f.write("1")
|
|
|
|
os.chmod(bin_path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)
|
|
|
|
return bin_path
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
|
|
def vm(project, manager, fake_qemu_binary, fake_qemu_img_binary):
|
2015-03-03 13:37:34 +00:00
|
|
|
manager.port_manager.console_host = "127.0.0.1"
|
2015-02-19 15:46:57 +00:00
|
|
|
return QemuVM("test", "00010203-0405-0607-0809-0a0b0c0d0e0f", project, manager, qemu_path=fake_qemu_binary)
|
|
|
|
|
|
|
|
|
2015-02-25 14:42:01 +00:00
|
|
|
@pytest.fixture(scope="function")
|
|
|
|
def running_subprocess_mock():
|
|
|
|
mm = MagicMock()
|
|
|
|
mm.returncode = None
|
|
|
|
return mm
|
|
|
|
|
|
|
|
|
2015-02-19 15:46:57 +00:00
|
|
|
def test_vm(project, manager, fake_qemu_binary):
|
|
|
|
vm = QemuVM("test", "00010203-0405-0607-0809-0a0b0c0d0e0f", project, manager, qemu_path=fake_qemu_binary)
|
|
|
|
assert vm.name == "test"
|
|
|
|
assert vm.id == "00010203-0405-0607-0809-0a0b0c0d0e0f"
|
|
|
|
|
|
|
|
|
2015-02-25 14:42:01 +00:00
|
|
|
def test_is_running(vm, running_subprocess_mock):
|
|
|
|
|
|
|
|
vm._process = None
|
|
|
|
assert vm.is_running() is False
|
|
|
|
vm._process = running_subprocess_mock
|
|
|
|
assert vm.is_running()
|
|
|
|
vm._process.returncode = -1
|
|
|
|
assert vm.is_running() is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_start(loop, vm, running_subprocess_mock):
|
|
|
|
with asyncio_patch("asyncio.create_subprocess_exec", return_value=running_subprocess_mock):
|
2015-02-19 15:46:57 +00:00
|
|
|
loop.run_until_complete(asyncio.async(vm.start()))
|
|
|
|
assert vm.is_running()
|
|
|
|
|
|
|
|
|
2015-02-25 14:42:01 +00:00
|
|
|
def test_stop(loop, vm, running_subprocess_mock):
|
|
|
|
process = running_subprocess_mock
|
2015-02-19 15:46:57 +00:00
|
|
|
|
|
|
|
# Wait process kill success
|
|
|
|
future = asyncio.Future()
|
|
|
|
future.set_result(True)
|
|
|
|
process.wait.return_value = future
|
|
|
|
|
|
|
|
with asyncio_patch("asyncio.create_subprocess_exec", return_value=process):
|
|
|
|
nio = Qemu.instance().create_nio(vm.qemu_path, {"type": "nio_udp", "lport": 4242, "rport": 4243, "rhost": "127.0.0.1"})
|
2015-03-07 03:08:00 +00:00
|
|
|
vm.adapter_add_nio_binding(0, nio)
|
2015-02-19 15:46:57 +00:00
|
|
|
loop.run_until_complete(asyncio.async(vm.start()))
|
|
|
|
assert vm.is_running()
|
|
|
|
loop.run_until_complete(asyncio.async(vm.stop()))
|
|
|
|
assert vm.is_running() is False
|
|
|
|
process.terminate.assert_called_with()
|
|
|
|
|
|
|
|
|
2015-06-26 12:41:58 +00:00
|
|
|
def test_termination_callback(vm):
|
|
|
|
|
|
|
|
vm.status = "started"
|
|
|
|
queue = vm.project.get_listen_queue()
|
|
|
|
|
|
|
|
vm._termination_callback(0)
|
|
|
|
assert vm.status == "stopped"
|
|
|
|
|
|
|
|
(action, event) = queue.get_nowait()
|
|
|
|
assert action == "vm.stopped"
|
|
|
|
assert event == vm
|
|
|
|
|
|
|
|
with pytest.raises(asyncio.queues.QueueEmpty):
|
|
|
|
queue.get_nowait()
|
|
|
|
|
|
|
|
|
|
|
|
def test_termination_callback_error(vm, tmpdir):
|
|
|
|
|
|
|
|
with open(str(tmpdir / "qemu.log"), "w+") as f:
|
|
|
|
f.write("BOOMM")
|
|
|
|
|
|
|
|
vm.status = "started"
|
|
|
|
vm._stdout_file = str(tmpdir / "qemu.log")
|
|
|
|
queue = vm.project.get_listen_queue()
|
|
|
|
|
|
|
|
vm._termination_callback(1)
|
|
|
|
assert vm.status == "stopped"
|
|
|
|
|
|
|
|
(action, event) = queue.get_nowait()
|
|
|
|
assert action == "vm.stopped"
|
|
|
|
assert event == vm
|
|
|
|
|
|
|
|
(action, event) = queue.get_nowait()
|
|
|
|
assert action == "log.error"
|
2015-06-26 13:10:41 +00:00
|
|
|
assert event["message"] == "QEMU process has stopped, return code: 1\nBOOMM"
|
2015-06-26 12:41:58 +00:00
|
|
|
|
|
|
|
|
2015-02-19 15:46:57 +00:00
|
|
|
def test_reload(loop, vm):
|
|
|
|
|
|
|
|
with asyncio_patch("gns3server.modules.qemu.QemuVM._control_vm") as mock:
|
|
|
|
loop.run_until_complete(asyncio.async(vm.reload()))
|
|
|
|
assert mock.called_with("system_reset")
|
|
|
|
|
|
|
|
|
2015-02-19 18:43:45 +00:00
|
|
|
def test_suspend(loop, vm):
|
|
|
|
|
|
|
|
control_vm_result = MagicMock()
|
|
|
|
control_vm_result.match.group.decode.return_value = "running"
|
|
|
|
with asyncio_patch("gns3server.modules.qemu.QemuVM._control_vm", return_value=control_vm_result) as mock:
|
|
|
|
loop.run_until_complete(asyncio.async(vm.suspend()))
|
|
|
|
assert mock.called_with("system_reset")
|
|
|
|
|
|
|
|
|
2015-02-19 15:46:57 +00:00
|
|
|
def test_add_nio_binding_udp(vm, loop):
|
|
|
|
nio = Qemu.instance().create_nio(vm.qemu_path, {"type": "nio_udp", "lport": 4242, "rport": 4243, "rhost": "127.0.0.1"})
|
2015-03-07 03:08:00 +00:00
|
|
|
loop.run_until_complete(asyncio.async(vm.adapter_add_nio_binding(0, nio)))
|
2015-02-19 15:46:57 +00:00
|
|
|
assert nio.lport == 4242
|
|
|
|
|
|
|
|
|
2015-06-09 14:35:21 +00:00
|
|
|
def test_add_nio_binding_ethernet(vm, loop, ethernet_device):
|
2015-09-14 21:16:54 +00:00
|
|
|
with patch("gns3server.modules.base_manager.BaseManager.has_privileged_access", return_value=True):
|
2015-06-09 14:35:21 +00:00
|
|
|
nio = Qemu.instance().create_nio(vm.qemu_path, {"type": "nio_generic_ethernet", "ethernet_device": ethernet_device})
|
2015-03-07 03:08:00 +00:00
|
|
|
loop.run_until_complete(asyncio.async(vm.adapter_add_nio_binding(0, nio)))
|
2015-06-09 14:35:21 +00:00
|
|
|
assert nio.ethernet_device == ethernet_device
|
2015-02-19 15:46:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_port_remove_nio_binding(vm, loop):
|
|
|
|
nio = Qemu.instance().create_nio(vm.qemu_path, {"type": "nio_udp", "lport": 4242, "rport": 4243, "rhost": "127.0.0.1"})
|
2015-03-07 03:08:00 +00:00
|
|
|
loop.run_until_complete(asyncio.async(vm.adapter_add_nio_binding(0, nio)))
|
|
|
|
loop.run_until_complete(asyncio.async(vm.adapter_remove_nio_binding(0)))
|
2015-02-19 15:46:57 +00:00
|
|
|
assert vm._ethernet_adapters[0].ports[0] is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_close(vm, port_manager, loop):
|
|
|
|
with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()):
|
|
|
|
loop.run_until_complete(asyncio.async(vm.start()))
|
|
|
|
|
|
|
|
console_port = vm.console
|
|
|
|
|
|
|
|
loop.run_until_complete(asyncio.async(vm.close()))
|
|
|
|
|
|
|
|
# Raise an exception if the port is not free
|
2015-03-21 23:19:12 +00:00
|
|
|
port_manager.reserve_tcp_port(console_port, vm.project)
|
2015-02-19 15:46:57 +00:00
|
|
|
|
|
|
|
assert vm.is_running() is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_set_qemu_path(vm, tmpdir, fake_qemu_binary):
|
|
|
|
|
|
|
|
# Raise because none
|
|
|
|
with pytest.raises(QemuError):
|
|
|
|
vm.qemu_path = None
|
|
|
|
|
2015-04-01 16:24:36 +00:00
|
|
|
# Should not crash with unicode characters
|
2015-06-10 13:49:24 +00:00
|
|
|
path = str(tmpdir / "\u62FF" / "qemu-system-mips")
|
|
|
|
|
2015-06-12 07:40:38 +00:00
|
|
|
os.makedirs(str(tmpdir / "\u62FF"))
|
2015-02-19 15:46:57 +00:00
|
|
|
|
|
|
|
# Raise because file doesn't exists
|
|
|
|
with pytest.raises(QemuError):
|
|
|
|
vm.qemu_path = path
|
|
|
|
|
|
|
|
with open(path, "w+") as f:
|
|
|
|
f.write("1")
|
|
|
|
|
|
|
|
# Raise because file is not executable
|
2015-04-27 21:12:13 +00:00
|
|
|
if not sys.platform.startswith("win"):
|
|
|
|
with pytest.raises(QemuError):
|
|
|
|
vm.qemu_path = path
|
2015-02-19 15:46:57 +00:00
|
|
|
|
|
|
|
os.chmod(path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)
|
|
|
|
|
|
|
|
vm.qemu_path = path
|
|
|
|
assert vm.qemu_path == path
|
2015-06-10 13:49:24 +00:00
|
|
|
assert vm.platform == "mips"
|
2015-02-19 15:46:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_set_qemu_path_environ(vm, tmpdir, fake_qemu_binary):
|
|
|
|
|
|
|
|
# It should find the binary in the path
|
2015-06-10 13:49:24 +00:00
|
|
|
vm.qemu_path = "qemu-system-x86_64"
|
2015-02-19 15:46:57 +00:00
|
|
|
|
|
|
|
assert vm.qemu_path == fake_qemu_binary
|
2015-06-10 13:49:24 +00:00
|
|
|
assert vm.platform == "x86_64"
|
|
|
|
|
|
|
|
|
2015-08-26 11:47:12 +00:00
|
|
|
|
|
|
|
def test_set_qemu_path_windows(vm, tmpdir):
|
|
|
|
|
|
|
|
bin_path = os.path.join(os.environ["PATH"], "qemu-system-x86_64w.EXE")
|
|
|
|
open(bin_path, "w+").close()
|
|
|
|
os.chmod(bin_path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)
|
|
|
|
|
|
|
|
vm.qemu_path = bin_path
|
|
|
|
|
|
|
|
assert vm.qemu_path == bin_path
|
|
|
|
assert vm.platform == "x86_64"
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-10 13:49:24 +00:00
|
|
|
@pytest.mark.skipif(sys.platform.startswith("linux") is False, reason="Supported only on linux")
|
|
|
|
def test_set_qemu_path_kvm_binary(vm, tmpdir, fake_qemu_binary):
|
|
|
|
|
|
|
|
bin_path = os.path.join(os.environ["PATH"], "qemu-kvm")
|
|
|
|
with open(bin_path, "w+") as f:
|
|
|
|
f.write("1")
|
|
|
|
os.chmod(bin_path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)
|
|
|
|
return bin_path
|
|
|
|
|
|
|
|
# It should find the binary in the path
|
|
|
|
vm.qemu_path = "qemu-kvm"
|
|
|
|
|
|
|
|
assert vm.qemu_path == fake_qemu_binary
|
|
|
|
assert vm.platform == "x86_64"
|
|
|
|
|
|
|
|
|
|
|
|
def test_set_platform(project, manager):
|
|
|
|
|
|
|
|
with patch("shutil.which", return_value="/bin/qemu-system-x86_64") as which_mock:
|
|
|
|
with patch("gns3server.modules.qemu.QemuVM._check_qemu_path"):
|
|
|
|
vm = QemuVM("test", "00010203-0405-0607-0809-0a0b0c0d0e0f", project, manager, platform="x86_64")
|
|
|
|
if sys.platform.startswith("win"):
|
2015-08-27 16:27:17 +00:00
|
|
|
which_mock.assert_called_with("qemu-system-x86_64w.exe", path=mock.ANY)
|
2015-06-10 13:49:24 +00:00
|
|
|
else:
|
2015-08-27 16:27:17 +00:00
|
|
|
which_mock.assert_called_with("qemu-system-x86_64", path=mock.ANY)
|
2015-06-10 13:49:24 +00:00
|
|
|
assert vm.platform == "x86_64"
|
|
|
|
assert vm.qemu_path == "/bin/qemu-system-x86_64"
|
2015-02-19 15:46:57 +00:00
|
|
|
|
|
|
|
|
2015-07-23 08:46:43 +00:00
|
|
|
def test_disk_options(vm, tmpdir, loop, fake_qemu_img_binary):
|
|
|
|
|
|
|
|
vm._hda_disk_image = str(tmpdir / "test.qcow2")
|
|
|
|
open(vm._hda_disk_image, "w+").close()
|
2015-02-19 15:46:57 +00:00
|
|
|
|
|
|
|
with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()) as process:
|
|
|
|
loop.run_until_complete(asyncio.async(vm._disk_options()))
|
|
|
|
assert process.called
|
|
|
|
args, kwargs = process.call_args
|
2015-07-23 08:46:43 +00:00
|
|
|
assert args == (fake_qemu_img_binary, "create", "-o", "backing_file={}".format(vm._hda_disk_image), "-f", "qcow2", os.path.join(vm.working_dir, "hda_disk.qcow2"))
|
2015-02-19 15:46:57 +00:00
|
|
|
|
|
|
|
|
2015-04-27 21:12:13 +00:00
|
|
|
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Not supported on Windows")
|
2015-02-19 15:46:57 +00:00
|
|
|
def test_set_process_priority(vm, loop, fake_qemu_img_binary):
|
|
|
|
|
|
|
|
with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()) as process:
|
|
|
|
vm._process = MagicMock()
|
|
|
|
vm._process.pid = 42
|
|
|
|
loop.run_until_complete(asyncio.async(vm._set_process_priority()))
|
|
|
|
assert process.called
|
|
|
|
args, kwargs = process.call_args
|
|
|
|
assert args == ("renice", "-n", "5", "-p", "42")
|
2015-02-19 19:22:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_json(vm, project):
|
|
|
|
|
|
|
|
json = vm.__json__()
|
|
|
|
assert json["name"] == vm.name
|
|
|
|
assert json["project_id"] == project.id
|
2015-02-20 23:15:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_control_vm(vm, loop):
|
|
|
|
|
|
|
|
vm._process = MagicMock()
|
|
|
|
reader = MagicMock()
|
|
|
|
writer = MagicMock()
|
|
|
|
with asyncio_patch("asyncio.open_connection", return_value=(reader, writer)) as open_connect:
|
|
|
|
res = loop.run_until_complete(asyncio.async(vm._control_vm("test")))
|
|
|
|
assert writer.write.called_with("test")
|
|
|
|
assert res is None
|
|
|
|
|
|
|
|
|
2015-02-25 14:42:01 +00:00
|
|
|
def test_control_vm_expect_text(vm, loop, running_subprocess_mock):
|
2015-02-20 23:15:56 +00:00
|
|
|
|
2015-02-25 14:42:01 +00:00
|
|
|
vm._process = running_subprocess_mock
|
2015-02-20 23:15:56 +00:00
|
|
|
reader = MagicMock()
|
|
|
|
writer = MagicMock()
|
|
|
|
with asyncio_patch("asyncio.open_connection", return_value=(reader, writer)) as open_connect:
|
|
|
|
|
|
|
|
future = asyncio.Future()
|
2015-03-07 03:08:00 +00:00
|
|
|
future.set_result(b"epic product")
|
2015-02-20 23:15:56 +00:00
|
|
|
reader.readline.return_value = future
|
|
|
|
|
2015-03-24 04:52:02 +00:00
|
|
|
vm._monitor = 4242
|
2015-03-07 03:08:00 +00:00
|
|
|
res = loop.run_until_complete(asyncio.async(vm._control_vm("test", [b"epic"])))
|
2015-02-20 23:15:56 +00:00
|
|
|
assert writer.write.called_with("test")
|
|
|
|
|
|
|
|
assert res == "epic product"
|
2015-02-23 19:21:00 +00:00
|
|
|
|
|
|
|
|
2015-03-03 13:37:34 +00:00
|
|
|
def test_build_command(vm, loop, fake_qemu_binary, port_manager):
|
2015-02-23 19:21:00 +00:00
|
|
|
|
|
|
|
os.environ["DISPLAY"] = "0:0"
|
2015-05-04 19:29:28 +00:00
|
|
|
with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()) as process:
|
|
|
|
cmd = loop.run_until_complete(asyncio.async(vm._build_command()))
|
|
|
|
assert cmd == [
|
|
|
|
fake_qemu_binary,
|
|
|
|
"-name",
|
|
|
|
"test",
|
|
|
|
"-m",
|
2015-08-07 15:03:06 +00:00
|
|
|
"256M",
|
2015-08-07 07:21:09 +00:00
|
|
|
"-smp",
|
|
|
|
"cpus=1",
|
2015-08-03 10:10:36 +00:00
|
|
|
"-boot",
|
|
|
|
"order=c",
|
2015-05-04 19:29:28 +00:00
|
|
|
"-serial",
|
|
|
|
"telnet:127.0.0.1:{},server,nowait".format(vm.console),
|
2015-05-13 08:19:50 +00:00
|
|
|
"-net",
|
|
|
|
"none",
|
2015-05-04 19:29:28 +00:00
|
|
|
"-device",
|
2015-05-13 08:19:50 +00:00
|
|
|
"e1000,mac=00:00:ab:0e:0f:00"
|
2015-05-04 19:29:28 +00:00
|
|
|
]
|
2015-02-23 19:21:00 +00:00
|
|
|
|
2015-05-13 08:19:50 +00:00
|
|
|
|
2015-04-27 21:12:13 +00:00
|
|
|
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Not supported on Windows")
|
2015-02-23 19:21:00 +00:00
|
|
|
def test_build_command_without_display(vm, loop, fake_qemu_binary):
|
|
|
|
|
|
|
|
os.environ["DISPLAY"] = ""
|
|
|
|
with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()) as process:
|
|
|
|
cmd = loop.run_until_complete(asyncio.async(vm._build_command()))
|
|
|
|
assert "-nographic" in cmd
|
2015-03-07 10:56:07 +00:00
|
|
|
|
|
|
|
|
2015-04-27 21:12:13 +00:00
|
|
|
# Windows accept this kind of mistake
|
|
|
|
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Not supported on Windows")
|
|
|
|
def test_build_command_with_invalid_options(vm, loop, fake_qemu_binary):
|
2015-03-31 20:14:08 +00:00
|
|
|
|
|
|
|
vm.options = "'test"
|
|
|
|
with pytest.raises(QemuError):
|
|
|
|
cmd = loop.run_until_complete(asyncio.async(vm._build_command()))
|
|
|
|
|
|
|
|
|
2015-03-07 10:56:07 +00:00
|
|
|
def test_hda_disk_image(vm, tmpdir):
|
|
|
|
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"images_path": str(tmpdir)}):
|
|
|
|
vm.hda_disk_image = "/tmp/test"
|
|
|
|
assert vm.hda_disk_image == "/tmp/test"
|
|
|
|
vm.hda_disk_image = "test"
|
2015-03-12 05:09:01 +00:00
|
|
|
assert vm.hda_disk_image == str(tmpdir / "QEMU" / "test")
|
2015-03-07 10:56:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_hdb_disk_image(vm, tmpdir):
|
|
|
|
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"images_path": str(tmpdir)}):
|
|
|
|
vm.hdb_disk_image = "/tmp/test"
|
|
|
|
assert vm.hdb_disk_image == "/tmp/test"
|
|
|
|
vm.hdb_disk_image = "test"
|
2015-03-12 05:09:01 +00:00
|
|
|
assert vm.hdb_disk_image == str(tmpdir / "QEMU" / "test")
|
|
|
|
|
2015-05-13 08:19:50 +00:00
|
|
|
|
2015-03-12 05:09:01 +00:00
|
|
|
def test_hdc_disk_image(vm, tmpdir):
|
|
|
|
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"images_path": str(tmpdir)}):
|
|
|
|
vm.hdc_disk_image = "/tmp/test"
|
|
|
|
assert vm.hdc_disk_image == "/tmp/test"
|
|
|
|
vm.hdc_disk_image = "test"
|
|
|
|
assert vm.hdc_disk_image == str(tmpdir / "QEMU" / "test")
|
|
|
|
|
2015-05-13 08:19:50 +00:00
|
|
|
|
2015-03-12 05:09:01 +00:00
|
|
|
def test_hdd_disk_image(vm, tmpdir):
|
|
|
|
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"images_path": str(tmpdir)}):
|
|
|
|
vm.hdd_disk_image = "/tmp/test"
|
|
|
|
assert vm.hdd_disk_image == "/tmp/test"
|
|
|
|
vm.hdd_disk_image = "test"
|
|
|
|
assert vm.hdd_disk_image == str(tmpdir / "QEMU" / "test")
|
2015-06-12 07:40:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_options(vm):
|
|
|
|
vm.kvm = False
|
|
|
|
vm.options = "-usb"
|
|
|
|
assert vm.options == "-usb"
|
|
|
|
assert vm.kvm is False
|
2015-07-27 14:19:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_get_qemu_img(vm, tmpdir):
|
|
|
|
|
|
|
|
open(str(tmpdir / "qemu-sytem-x86_64"), "w+").close()
|
|
|
|
open(str(tmpdir / "qemu-img"), "w+").close()
|
|
|
|
vm._qemu_path = str(tmpdir / "qemu-sytem-x86_64")
|
2015-07-27 15:32:27 +00:00
|
|
|
assert vm._get_qemu_img() == str(tmpdir / "qemu-img")
|
2015-07-27 14:19:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_get_qemu_img_not_exist(vm, tmpdir):
|
|
|
|
|
|
|
|
open(str(tmpdir / "qemu-sytem-x86_64"), "w+").close()
|
|
|
|
vm._qemu_path = str(tmpdir / "qemu-sytem-x86_64")
|
|
|
|
with pytest.raises(QemuError):
|
|
|
|
vm._get_qemu_img()
|
2015-08-07 14:49:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_run_with_kvm_darwin(darwin_platform, vm):
|
|
|
|
|
|
|
|
with patch("configparser.SectionProxy.getboolean", return_value=True):
|
|
|
|
assert vm._run_with_kvm("qemu-system-x86_64", "") is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_with_kvm_windows(windows_platform, vm):
|
|
|
|
|
|
|
|
with patch("configparser.SectionProxy.getboolean", return_value=True):
|
|
|
|
assert vm._run_with_kvm("qemu-system-x86_64.exe", "") is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_with_kvm_linux(linux_platform, vm):
|
|
|
|
|
|
|
|
with patch("os.path.exists", return_value=True) as os_path:
|
|
|
|
with patch("configparser.SectionProxy.getboolean", return_value=True):
|
|
|
|
assert vm._run_with_kvm("qemu-system-x86_64", "") is True
|
|
|
|
os_path.assert_called_with("/dev/kvm")
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_with_kvm_linux_config_desactivated(linux_platform, vm):
|
|
|
|
|
|
|
|
with patch("os.path.exists", return_value=True) as os_path:
|
|
|
|
with patch("configparser.SectionProxy.getboolean", return_value=False):
|
|
|
|
assert vm._run_with_kvm("qemu-system-x86_64", "") is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_with_kvm_linux_options_no_kvm(linux_platform, vm):
|
|
|
|
|
|
|
|
with patch("os.path.exists", return_value=True) as os_path:
|
|
|
|
with patch("configparser.SectionProxy.getboolean", return_value=True):
|
|
|
|
assert vm._run_with_kvm("qemu-system-x86_64", "-no-kvm") is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_with_kvm_not_x86(linux_platform, vm):
|
|
|
|
|
|
|
|
with patch("os.path.exists", return_value=True) as os_path:
|
|
|
|
with patch("configparser.SectionProxy.getboolean", return_value=True):
|
|
|
|
assert vm._run_with_kvm("qemu-system-arm", "") is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_with_kvm_linux_dev_kvm_missing(linux_platform, vm):
|
|
|
|
|
|
|
|
with patch("os.path.exists", return_value=False) as os_path:
|
|
|
|
with patch("configparser.SectionProxy.getboolean", return_value=True):
|
|
|
|
with pytest.raises(QemuError):
|
|
|
|
vm._run_with_kvm("qemu-system-x86_64", "")
|