2015-01-24 00:57:54 +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 tempfile
|
2015-04-01 15:36:22 +00:00
|
|
|
import os
|
|
|
|
import stat
|
2015-05-27 14:21:18 +00:00
|
|
|
import asyncio
|
|
|
|
|
|
|
|
|
|
|
|
from unittest.mock import patch
|
2015-01-24 00:57:54 +00:00
|
|
|
|
|
|
|
from gns3server.modules.virtualbox import VirtualBox
|
|
|
|
from gns3server.modules.virtualbox.virtualbox_error import VirtualBoxError
|
2015-05-27 14:21:18 +00:00
|
|
|
from tests.utils import asyncio_patch
|
2015-01-24 00:57:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
def manager(port_manager):
|
|
|
|
m = VirtualBox.instance()
|
|
|
|
m.port_manager = port_manager
|
|
|
|
return m
|
|
|
|
|
|
|
|
|
2015-02-12 02:21:34 +00:00
|
|
|
def test_vm_invalid_vboxmanage_path(manager):
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"vboxmanage_path": "/bin/test_fake"}):
|
|
|
|
with pytest.raises(VirtualBoxError):
|
|
|
|
manager.find_vboxmanage()
|
2015-01-24 00:57:54 +00:00
|
|
|
|
2015-04-01 15:59:58 +00:00
|
|
|
|
2015-02-12 02:21:34 +00:00
|
|
|
def test_vm_non_executable_vboxmanage_path(manager):
|
2015-01-24 00:57:54 +00:00
|
|
|
tmpfile = tempfile.NamedTemporaryFile()
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"vboxmanage_path": tmpfile.name}):
|
|
|
|
with pytest.raises(VirtualBoxError):
|
2015-01-26 08:36:26 +00:00
|
|
|
manager.find_vboxmanage()
|
2015-04-01 15:36:22 +00:00
|
|
|
|
2015-04-01 15:59:58 +00:00
|
|
|
|
2015-04-01 15:36:22 +00:00
|
|
|
def test_vm_invalid_executable_name_vboxmanage_path(manager, tmpdir):
|
|
|
|
path = str(tmpdir / "vpcs")
|
|
|
|
with open(path, "w+") as f:
|
|
|
|
f.write(path)
|
|
|
|
os.chmod(path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)
|
|
|
|
tmpfile = tempfile.NamedTemporaryFile()
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"vboxmanage_path": path}):
|
|
|
|
with pytest.raises(VirtualBoxError):
|
|
|
|
manager.find_vboxmanage()
|
|
|
|
|
2015-04-01 15:59:58 +00:00
|
|
|
|
2015-04-01 15:36:22 +00:00
|
|
|
def test_vboxmanage_path(manager, tmpdir):
|
|
|
|
path = str(tmpdir / "VBoxManage")
|
|
|
|
with open(path, "w+") as f:
|
|
|
|
f.write(path)
|
|
|
|
os.chmod(path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)
|
|
|
|
tmpfile = tempfile.NamedTemporaryFile()
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"vboxmanage_path": path}):
|
|
|
|
assert manager.find_vboxmanage() == path
|
2015-05-27 14:21:18 +00:00
|
|
|
|
|
|
|
|
2015-05-28 10:05:19 +00:00
|
|
|
def test_list_images(manager, loop):
|
2015-05-27 14:21:18 +00:00
|
|
|
vm_list = ['"Windows 8.1" {27b4d095-ff5f-4ac4-bb9d-5f2c7861c1f1}',
|
|
|
|
'"Carriage',
|
|
|
|
'Return" {27b4d095-ff5f-4ac4-bb9d-5f2c7861c1f1}',
|
2015-06-03 09:59:53 +00:00
|
|
|
'',
|
2015-05-27 14:21:18 +00:00
|
|
|
'"<inaccessible>" {42b4d095-ff5f-4ac4-bb9d-5f2c7861c1f1}',
|
2015-05-28 10:04:01 +00:00
|
|
|
'"Linux Microcore 4.7.1" {ccd8c50b-c172-457d-99fa-dd69371ede0e}']
|
2015-05-27 14:21:18 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def execute_mock(cmd, args):
|
|
|
|
if cmd == "list":
|
|
|
|
return vm_list
|
|
|
|
else:
|
|
|
|
if args[0] == "Windows 8.1":
|
|
|
|
return ["memory=512"]
|
|
|
|
elif args[0] == "Linux Microcore 4.7.1":
|
|
|
|
return ["memory=256"]
|
|
|
|
assert False, "Unknow {} {}".format(cmd, args)
|
|
|
|
|
|
|
|
with asyncio_patch("gns3server.modules.virtualbox.VirtualBox.execute") as mock:
|
|
|
|
mock.side_effect = execute_mock
|
2015-05-28 10:05:19 +00:00
|
|
|
vms = loop.run_until_complete(asyncio.async(manager.list_images()))
|
2015-05-27 14:21:18 +00:00
|
|
|
assert vms == [
|
|
|
|
{"vmname": "Windows 8.1", "ram": 512},
|
|
|
|
{"vmname": "Linux Microcore 4.7.1", "ram": 256}
|
|
|
|
]
|