2016-08-30 14:38:19 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2020-06-16 04:29:03 +00:00
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
2016-08-30 14:38:19 +00:00
|
|
|
#
|
|
|
|
# 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
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
from tests.utils import asyncio_patch
|
2020-07-10 08:14:38 +00:00
|
|
|
from gns3server.utils.asyncio import wait_run_in_executor
|
2016-08-30 14:38:19 +00:00
|
|
|
|
|
|
|
from gns3server.controller.gns3vm.virtualbox_gns3_vm import VirtualBoxGNS3VM
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def gns3vm(controller):
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2016-08-30 14:38:19 +00:00
|
|
|
vm = VirtualBoxGNS3VM(controller)
|
|
|
|
vm.vmname = "GNS3 VM"
|
|
|
|
return vm
|
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_look_for_interface(gns3vm):
|
|
|
|
|
2016-08-30 14:38:19 +00:00
|
|
|
showvminfo = """
|
|
|
|
nic1="hostonly"
|
|
|
|
nictype1="82540EM"
|
|
|
|
nicspeed1="0"
|
|
|
|
nic2="nat"
|
|
|
|
nictype2="82540EM"
|
|
|
|
nicspeed2="0"
|
|
|
|
nic3="none"
|
|
|
|
nic4="none"
|
|
|
|
nic5="none"
|
|
|
|
nic6="none"
|
|
|
|
nic7="none"
|
|
|
|
nic8="none"
|
|
|
|
vcpwidth=1024
|
|
|
|
vcpheight=768
|
|
|
|
vcprate=512
|
|
|
|
vcpfps=25
|
|
|
|
GuestMemoryBalloon=0
|
|
|
|
"""
|
|
|
|
|
|
|
|
with asyncio_patch("gns3server.controller.gns3vm.virtualbox_gns3_vm.VirtualBoxGNS3VM._execute", return_value=showvminfo) as mock:
|
2020-06-16 04:29:03 +00:00
|
|
|
res = await gns3vm._look_for_interface("nat")
|
2020-11-11 06:48:41 +00:00
|
|
|
mock.assert_called_with('showvminfo', ['GNS3 VM', '--machinereadable'])
|
|
|
|
assert res == 2
|
2016-08-30 14:38:19 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
# with asyncio_patch("gns3server.controller.gns3vm.virtualbox_gns3_vm.VirtualBoxGNS3VM._execute") as mock:
|
|
|
|
# mock.side_effect = execute_mock
|
|
|
|
# res = await gns3vm._look_for_interface("dummy")
|
|
|
|
# assert mock.called
|
|
|
|
# assert res == -1
|
2020-07-10 08:14:38 +00:00
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
@pytest.mark.asyncio
|
2020-07-10 08:14:38 +00:00
|
|
|
async def test_cpu_vendor_id(gns3vm):
|
|
|
|
|
|
|
|
from cpuinfo import get_cpu_info
|
|
|
|
cpu_info = await wait_run_in_executor(get_cpu_info)
|
|
|
|
vendor_id = cpu_info.get('vendor_id_raw')
|
|
|
|
assert vendor_id # vendor id should not be empty
|