mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 08:44:52 +02:00
Fix warnings in tests
This commit is contained in:
parent
3fd44f5260
commit
33499be425
@ -484,7 +484,7 @@ class Compute:
|
|||||||
return self._getUrl(path)
|
return self._getUrl(path)
|
||||||
|
|
||||||
async def _run_http_query(self, method, path, data=None, timeout=20, raw=False):
|
async def _run_http_query(self, method, path, data=None, timeout=20, raw=False):
|
||||||
with async_timeout.timeout(timeout):
|
async with async_timeout.timeout(delay=timeout):
|
||||||
url = self._getUrl(path)
|
url = self._getUrl(path)
|
||||||
headers = {}
|
headers = {}
|
||||||
headers['content-type'] = 'application/json'
|
headers['content-type'] = 'application/json'
|
||||||
|
@ -24,7 +24,7 @@ import aiofiles
|
|||||||
import zipfile
|
import zipfile
|
||||||
import time
|
import time
|
||||||
import aiohttp.web
|
import aiohttp.web
|
||||||
from datetime import datetime, timezone
|
from datetime import datetime, timezone, UTC
|
||||||
|
|
||||||
from ..utils.asyncio import wait_run_in_executor
|
from ..utils.asyncio import wait_run_in_executor
|
||||||
from ..utils.asyncio import aiozipstream
|
from ..utils.asyncio import aiozipstream
|
||||||
@ -53,14 +53,14 @@ class Snapshot:
|
|||||||
if name:
|
if name:
|
||||||
self._name = name
|
self._name = name
|
||||||
self._created_at = datetime.now().timestamp()
|
self._created_at = datetime.now().timestamp()
|
||||||
filename = self._name + "_" + datetime.utcfromtimestamp(self._created_at).replace(tzinfo=None).strftime(FILENAME_TIME_FORMAT) + ".gns3project"
|
filename = self._name + "_" + datetime.fromtimestamp(self._created_at, UTC).replace(tzinfo=None).strftime(FILENAME_TIME_FORMAT) + ".gns3project"
|
||||||
else:
|
else:
|
||||||
self._name = filename.split("_")[0]
|
self._name = filename.split("_")[0]
|
||||||
datestring = filename.replace(self._name + "_", "").split(".")[0]
|
datestring = filename.replace(self._name + "_", "").split(".")[0]
|
||||||
try:
|
try:
|
||||||
self._created_at = datetime.strptime(datestring, FILENAME_TIME_FORMAT).replace(tzinfo=timezone.utc).timestamp()
|
self._created_at = datetime.strptime(datestring, FILENAME_TIME_FORMAT).replace(tzinfo=timezone.utc).timestamp()
|
||||||
except ValueError:
|
except ValueError:
|
||||||
self._created_at = datetime.utcnow().timestamp()
|
self._created_at = datetime.now(UTC)
|
||||||
self._path = os.path.join(project.path, "snapshots", filename)
|
self._path = os.path.join(project.path, "snapshots", filename)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
[pytest]
|
[pytest]
|
||||||
asyncio_mode=auto
|
asyncio_mode=auto
|
||||||
log_level=NOTSET
|
log_level=NOTSET
|
||||||
ignore=env
|
|
@ -31,7 +31,7 @@ def nio():
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def manager(loop):
|
async def manager(event_loop):
|
||||||
|
|
||||||
m = MagicMock()
|
m = MagicMock()
|
||||||
m.module_name = "builtins"
|
m.module_name = "builtins"
|
||||||
@ -113,7 +113,7 @@ def test_json_without_ports(on_gns3vm, compute_project, manager):
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
async def test_update_port_mappings(loop, on_gns3vm, compute_project):
|
async def test_update_port_mappings(event_loop, on_gns3vm, compute_project):
|
||||||
"""
|
"""
|
||||||
We don't allow an empty interface in the middle of port list
|
We don't allow an empty interface in the middle of port list
|
||||||
"""
|
"""
|
||||||
@ -153,7 +153,7 @@ async def test_update_port_mappings(loop, on_gns3vm, compute_project):
|
|||||||
assert cloud.ports_mapping == ports1
|
assert cloud.ports_mapping == ports1
|
||||||
|
|
||||||
|
|
||||||
async def test_linux_ethernet_raw_add_nio(loop, linux_platform, compute_project, nio):
|
async def test_linux_ethernet_raw_add_nio(event_loop, linux_platform, compute_project, nio):
|
||||||
ports = [
|
ports = [
|
||||||
{
|
{
|
||||||
"interface": "eth0",
|
"interface": "eth0",
|
||||||
@ -180,7 +180,7 @@ async def test_linux_ethernet_raw_add_nio(loop, linux_platform, compute_project,
|
|||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
async def test_linux_ethernet_raw_add_nio_bridge(loop, linux_platform, compute_project, nio):
|
async def test_linux_ethernet_raw_add_nio_bridge(event_loop, linux_platform, compute_project, nio):
|
||||||
"""
|
"""
|
||||||
Bridge can't be connected directly to a cloud we use a tap in the middle
|
Bridge can't be connected directly to a cloud we use a tap in the middle
|
||||||
"""
|
"""
|
||||||
|
@ -25,7 +25,7 @@ from gns3server.compute.docker.docker_error import DockerError, DockerHttp404Err
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def vm(loop):
|
async def vm(event_loop):
|
||||||
|
|
||||||
vm = Docker()
|
vm = Docker()
|
||||||
vm._connected = True
|
vm._connected = True
|
||||||
|
@ -32,7 +32,7 @@ from unittest.mock import patch, MagicMock, call
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture()
|
@pytest.fixture()
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = Docker.instance()
|
m = Docker.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
@ -40,7 +40,7 @@ async def manager(loop, port_manager):
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="function")
|
@pytest.fixture(scope="function")
|
||||||
async def vm(loop, compute_project, manager):
|
async def vm(event_loop, compute_project, manager):
|
||||||
|
|
||||||
vm = DockerVM("test", str(uuid.uuid4()), compute_project, manager, "ubuntu:latest")
|
vm = DockerVM("test", str(uuid.uuid4()), compute_project, manager, "ubuntu:latest")
|
||||||
vm._cid = "e90e34656842"
|
vm._cid = "e90e34656842"
|
||||||
|
@ -29,7 +29,7 @@ from tests.utils import asyncio_patch, AsyncioMagicMock
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = Dynamips.instance()
|
m = Dynamips.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
|
@ -26,7 +26,7 @@ from gns3server.config import Config
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = Dynamips.instance()
|
m = Dynamips.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
|
@ -37,7 +37,7 @@ if not sys.platform.startswith("win"):
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = IOU.instance()
|
m = IOU.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
@ -45,7 +45,7 @@ async def manager(loop, port_manager):
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="function")
|
@pytest.fixture(scope="function")
|
||||||
async def vm(loop, compute_project, manager, tmpdir, fake_iou_bin, iourc_file):
|
async def vm(event_loop, compute_project, manager, tmpdir, fake_iou_bin, iourc_file):
|
||||||
|
|
||||||
vm = IOUVM("test", str(uuid.uuid4()), compute_project, manager, application_id=1)
|
vm = IOUVM("test", str(uuid.uuid4()), compute_project, manager, application_id=1)
|
||||||
config = manager.config.get_section_config("IOU")
|
config = manager.config.get_section_config("IOU")
|
||||||
|
@ -66,7 +66,7 @@ def test_invalid_empty_file(tmpdir):
|
|||||||
|
|
||||||
|
|
||||||
@pytest.mark.skipif(qemu_img() is None, reason="qemu-img is not available")
|
@pytest.mark.skipif(qemu_img() is None, reason="qemu-img is not available")
|
||||||
async def test_rebase(loop, tmpdir):
|
async def test_rebase(event_loop, tmpdir):
|
||||||
|
|
||||||
shutil.copy("tests/resources/empty8G.qcow2", str(tmpdir / "empty16G.qcow2"))
|
shutil.copy("tests/resources/empty8G.qcow2", str(tmpdir / "empty16G.qcow2"))
|
||||||
shutil.copy("tests/resources/linked.qcow2", str(tmpdir / "linked.qcow2"))
|
shutil.copy("tests/resources/linked.qcow2", str(tmpdir / "linked.qcow2"))
|
||||||
|
@ -34,7 +34,7 @@ from gns3server.compute.notification_manager import NotificationManager
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = Qemu.instance()
|
m = Qemu.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
|
@ -29,7 +29,7 @@ from gns3server.compute.nios.nio_udp import NIOUDP
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="function")
|
@pytest.fixture(scope="function")
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = VPCS.instance()
|
m = VPCS.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
|
@ -29,7 +29,7 @@ from gns3server.utils import force_unix_path
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="function")
|
@pytest.fixture(scope="function")
|
||||||
async def vpcs(loop, port_manager):
|
async def vpcs(event_loop, port_manager):
|
||||||
|
|
||||||
VPCS._instance = None
|
VPCS._instance = None
|
||||||
vpcs = VPCS.instance()
|
vpcs = VPCS.instance()
|
||||||
@ -38,7 +38,7 @@ async def vpcs(loop, port_manager):
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="function")
|
@pytest.fixture(scope="function")
|
||||||
async def qemu(loop, port_manager):
|
async def qemu(event_loop, port_manager):
|
||||||
|
|
||||||
Qemu._instance = None
|
Qemu._instance = None
|
||||||
Qemu._init_config_disk = MagicMock() # do not create the config.img image
|
Qemu._init_config_disk = MagicMock() # do not create the config.img image
|
||||||
|
@ -33,7 +33,7 @@ from gns3server.config import Config
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="function")
|
@pytest.fixture(scope="function")
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = VPCS.instance()
|
m = VPCS.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
|
@ -28,7 +28,7 @@ from gns3server.compute.notification_manager import NotificationManager
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = TraceNG.instance()
|
m = TraceNG.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
|
@ -29,7 +29,7 @@ from tests.utils import asyncio_patch
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = VirtualBox.instance()
|
m = VirtualBox.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
|
@ -25,7 +25,7 @@ from gns3server.compute.virtualbox import VirtualBox
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = VirtualBox.instance()
|
m = VirtualBox.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
|
@ -21,7 +21,7 @@ from gns3server.compute.vmware import VMware
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = VMware.instance()
|
m = VMware.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
|
@ -22,7 +22,7 @@ from gns3server.compute.vmware import VMware
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = VMware.instance()
|
m = VMware.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
|
@ -31,7 +31,7 @@ from gns3server.compute.notification_manager import NotificationManager
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def manager(loop, port_manager):
|
async def manager(event_loop, port_manager):
|
||||||
|
|
||||||
m = VPCS.instance()
|
m = VPCS.instance()
|
||||||
m.port_manager = port_manager
|
m.port_manager = port_manager
|
||||||
@ -39,7 +39,7 @@ async def manager(loop, port_manager):
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="function")
|
@pytest.fixture(scope="function")
|
||||||
async def vm(loop, compute_project, manager, tmpdir, ubridge_path):
|
async def vm(event_loop, compute_project, manager, tmpdir, ubridge_path):
|
||||||
|
|
||||||
vm = VPCSVM("test", "00010203-0405-0607-0809-0a0b0c0d0e0f", compute_project, manager)
|
vm = VPCSVM("test", "00010203-0405-0607-0809-0a0b0c0d0e0f", compute_project, manager)
|
||||||
vm._vpcs_version = parse_version("0.9")
|
vm._vpcs_version = parse_version("0.9")
|
||||||
|
@ -25,7 +25,7 @@ sys.original_platform = sys.platform
|
|||||||
|
|
||||||
if sys.platform.startswith("win"):
|
if sys.platform.startswith("win"):
|
||||||
@pytest.yield_fixture(scope="session")
|
@pytest.yield_fixture(scope="session")
|
||||||
def loop(request):
|
def event_loop(request):
|
||||||
"""Return an event loop and destroy it at the end of test"""
|
"""Return an event loop and destroy it at the end of test"""
|
||||||
|
|
||||||
loop = asyncio.ProactorEventLoop()
|
loop = asyncio.ProactorEventLoop()
|
||||||
@ -72,7 +72,7 @@ def compute(controller):
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def project(loop, tmpdir, controller):
|
async def project(event_loop, tmpdir, controller):
|
||||||
|
|
||||||
return await controller.add_project(name="Test")
|
return await controller.add_project(name="Test")
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ async def test_start(gns3vm, controller):
|
|||||||
assert gns3vm.password == "world"
|
assert gns3vm.password == "world"
|
||||||
|
|
||||||
|
|
||||||
async def test_start_invalid_vm(loop, gns3vm, controller):
|
async def test_start_invalid_vm(event_loop, gns3vm, controller):
|
||||||
|
|
||||||
await controller.add_compute("r1",
|
await controller.add_compute("r1",
|
||||||
name="R1",
|
name="R1",
|
||||||
|
@ -25,7 +25,7 @@ from gns3server.controller.gns3vm.virtualbox_gns3_vm import VirtualBoxGNS3VM
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def gns3vm(loop, controller):
|
async def gns3vm(event_loop, controller):
|
||||||
|
|
||||||
vm = VirtualBoxGNS3VM(controller)
|
vm = VirtualBoxGNS3VM(controller)
|
||||||
vm.vmname = "GNS3 VM"
|
vm.vmname = "GNS3 VM"
|
||||||
|
@ -21,7 +21,7 @@ from gns3server.controller.gns3vm.vmware_gns3_vm import VMwareGNS3VM
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def gns3vm(loop, controller):
|
async def gns3vm(event_loop, controller):
|
||||||
|
|
||||||
vm = VMwareGNS3VM(controller)
|
vm = VMwareGNS3VM(controller)
|
||||||
vm.vmname = "GNS3 VM"
|
vm.vmname = "GNS3 VM"
|
||||||
|
@ -33,7 +33,7 @@ from gns3server.utils.asyncio import aiozipstream
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
async def project(loop, controller):
|
async def project(event_loop, controller):
|
||||||
|
|
||||||
p = Project(controller=controller, name="test")
|
p = Project(controller=controller, name="test")
|
||||||
p.dump = MagicMock()
|
p.dump = MagicMock()
|
||||||
|
@ -47,7 +47,7 @@ def dummy_gns3vm(controller, dummy_engine):
|
|||||||
return vm
|
return vm
|
||||||
|
|
||||||
|
|
||||||
async def test_list(loop, controller):
|
async def test_list(event_loop, controller):
|
||||||
|
|
||||||
vm = GNS3VM(controller)
|
vm = GNS3VM(controller)
|
||||||
with asyncio_patch("gns3server.controller.gns3vm.vmware_gns3_vm.VMwareGNS3VM.list", return_value=[{"vmname": "test", "vmx_path": "test"}]):
|
with asyncio_patch("gns3server.controller.gns3vm.vmware_gns3_vm.VMwareGNS3VM.list", return_value=[{"vmname": "test", "vmx_path": "test"}]):
|
||||||
@ -60,14 +60,14 @@ async def test_list(loop, controller):
|
|||||||
await vm.list("hyperv")
|
await vm.list("hyperv")
|
||||||
|
|
||||||
|
|
||||||
async def test_json(loop, controller):
|
async def test_json(event_loop, controller):
|
||||||
|
|
||||||
vm = GNS3VM(controller)
|
vm = GNS3VM(controller)
|
||||||
assert vm.__json__() == vm._settings
|
assert vm.__json__() == vm._settings
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Not working well on Windows")
|
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Not working well on Windows")
|
||||||
async def test_update_settings(loop, controller):
|
async def test_update_settings(event_loop, controller):
|
||||||
|
|
||||||
vm = GNS3VM(controller)
|
vm = GNS3VM(controller)
|
||||||
vm.settings = {
|
vm.settings = {
|
||||||
|
@ -166,7 +166,7 @@ async def test_import_with_images(tmpdir, controller):
|
|||||||
assert os.path.exists(path), path
|
assert os.path.exists(path), path
|
||||||
|
|
||||||
|
|
||||||
async def test_import_iou_linux_no_vm(loop, linux_platform, tmpdir, controller):
|
async def test_import_iou_linux_no_vm(event_loop, linux_platform, tmpdir, controller):
|
||||||
"""
|
"""
|
||||||
On non linux host IOU should be local if we don't have a GNS3 VM
|
On non linux host IOU should be local if we don't have a GNS3 VM
|
||||||
"""
|
"""
|
||||||
@ -210,7 +210,7 @@ async def test_import_iou_linux_no_vm(loop, linux_platform, tmpdir, controller):
|
|||||||
assert topo["topology"]["nodes"][0]["compute_id"] == "local"
|
assert topo["topology"]["nodes"][0]["compute_id"] == "local"
|
||||||
|
|
||||||
|
|
||||||
async def test_import_iou_linux_with_vm(loop, linux_platform, tmpdir, controller):
|
async def test_import_iou_linux_with_vm(event_loop, linux_platform, tmpdir, controller):
|
||||||
"""
|
"""
|
||||||
On non linux host IOU should be vm if we have a GNS3 VM configured
|
On non linux host IOU should be vm if we have a GNS3 VM configured
|
||||||
"""
|
"""
|
||||||
@ -255,7 +255,7 @@ async def test_import_iou_linux_with_vm(loop, linux_platform, tmpdir, controller
|
|||||||
assert topo["topology"]["nodes"][0]["compute_id"] == "vm"
|
assert topo["topology"]["nodes"][0]["compute_id"] == "vm"
|
||||||
|
|
||||||
|
|
||||||
async def test_import_nat_non_linux(loop, windows_platform, tmpdir, controller):
|
async def test_import_nat_non_linux(event_loop, windows_platform, tmpdir, controller):
|
||||||
"""
|
"""
|
||||||
On non linux host NAT should be moved to the GNS3 VM
|
On non linux host NAT should be moved to the GNS3 VM
|
||||||
"""
|
"""
|
||||||
@ -300,7 +300,7 @@ async def test_import_nat_non_linux(loop, windows_platform, tmpdir, controller):
|
|||||||
assert topo["topology"]["nodes"][0]["compute_id"] == "vm"
|
assert topo["topology"]["nodes"][0]["compute_id"] == "vm"
|
||||||
|
|
||||||
|
|
||||||
async def test_import_iou_non_linux(loop, windows_platform, tmpdir, controller):
|
async def test_import_iou_non_linux(event_loop, windows_platform, tmpdir, controller):
|
||||||
"""
|
"""
|
||||||
On non linux host IOU should be moved to the GNS3 VM
|
On non linux host IOU should be moved to the GNS3 VM
|
||||||
"""
|
"""
|
||||||
@ -356,7 +356,7 @@ async def test_import_iou_non_linux(loop, windows_platform, tmpdir, controller):
|
|||||||
mock.assert_called_with(controller._computes["vm"], project_id, project.path, os.path.join('project-files', 'iou', topo["topology"]["nodes"][0]['node_id']))
|
mock.assert_called_with(controller._computes["vm"], project_id, project.path, os.path.join('project-files', 'iou', topo["topology"]["nodes"][0]['node_id']))
|
||||||
|
|
||||||
|
|
||||||
async def test_import_node_id(loop, linux_platform, tmpdir, controller):
|
async def test_import_node_id(event_loop, linux_platform, tmpdir, controller):
|
||||||
"""
|
"""
|
||||||
When importing a node, node_id should change
|
When importing a node, node_id should change
|
||||||
"""
|
"""
|
||||||
@ -449,7 +449,7 @@ async def test_import_node_id(loop, linux_platform, tmpdir, controller):
|
|||||||
assert os.path.exists(os.path.join(project.path, "project-files", "iou", topo["topology"]["nodes"][0]["node_id"], "startup.cfg"))
|
assert os.path.exists(os.path.join(project.path, "project-files", "iou", topo["topology"]["nodes"][0]["node_id"], "startup.cfg"))
|
||||||
|
|
||||||
|
|
||||||
async def test_import_keep_compute_id(loop, windows_platform, tmpdir, controller):
|
async def test_import_keep_compute_id(event_loop, windows_platform, tmpdir, controller):
|
||||||
"""
|
"""
|
||||||
On linux host IOU should be moved to the GNS3 VM
|
On linux host IOU should be moved to the GNS3 VM
|
||||||
"""
|
"""
|
||||||
|
@ -53,7 +53,7 @@ def write_config(tmpdir, settings):
|
|||||||
return path
|
return path
|
||||||
|
|
||||||
|
|
||||||
def test_get_section_config(loop, tmpdir):
|
def test_get_section_config(event_loop, tmpdir):
|
||||||
|
|
||||||
config = load_config(tmpdir, {
|
config = load_config(tmpdir, {
|
||||||
"Server": {
|
"Server": {
|
||||||
@ -63,7 +63,7 @@ def test_get_section_config(loop, tmpdir):
|
|||||||
assert dict(config.get_section_config("Server")) == {"host": "127.0.0.1"}
|
assert dict(config.get_section_config("Server")) == {"host": "127.0.0.1"}
|
||||||
|
|
||||||
|
|
||||||
def test_set_section_config(loop, tmpdir):
|
def test_set_section_config(event_loop, tmpdir):
|
||||||
|
|
||||||
config = load_config(tmpdir, {
|
config = load_config(tmpdir, {
|
||||||
"Server": {
|
"Server": {
|
||||||
@ -77,7 +77,7 @@ def test_set_section_config(loop, tmpdir):
|
|||||||
assert dict(config.get_section_config("Server")) == {"host": "192.168.1.1", "local": "true"}
|
assert dict(config.get_section_config("Server")) == {"host": "192.168.1.1", "local": "true"}
|
||||||
|
|
||||||
|
|
||||||
def test_set(loop, tmpdir):
|
def test_set(event_loop, tmpdir):
|
||||||
|
|
||||||
config = load_config(tmpdir, {
|
config = load_config(tmpdir, {
|
||||||
"Server": {
|
"Server": {
|
||||||
@ -90,7 +90,7 @@ def test_set(loop, tmpdir):
|
|||||||
assert dict(config.get_section_config("Server")) == {"host": "192.168.1.1"}
|
assert dict(config.get_section_config("Server")) == {"host": "192.168.1.1"}
|
||||||
|
|
||||||
|
|
||||||
def test_reload(loop, tmpdir):
|
def test_reload(event_loop, tmpdir):
|
||||||
|
|
||||||
config = load_config(tmpdir, {
|
config = load_config(tmpdir, {
|
||||||
"Server": {
|
"Server": {
|
||||||
|
@ -105,5 +105,5 @@ class AsyncioBytesIO(io.BytesIO):
|
|||||||
async def write(self, data):
|
async def write(self, data):
|
||||||
return super().write(data)
|
return super().write(data)
|
||||||
|
|
||||||
async def close(self):
|
# async def close(self):
|
||||||
return super().close()
|
# return super().close()
|
||||||
|
@ -44,7 +44,7 @@ async def test_exception_wait_run_in_executor():
|
|||||||
|
|
||||||
|
|
||||||
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Not supported on Windows")
|
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Not supported on Windows")
|
||||||
async def test_subprocess_check_output(loop, tmpdir):
|
async def test_subprocess_check_output(event_loop, tmpdir):
|
||||||
|
|
||||||
path = str(tmpdir / "test")
|
path = str(tmpdir / "test")
|
||||||
result = await subprocess_check_output("echo", "-n", path)
|
result = await subprocess_check_output("echo", "-n", path)
|
||||||
|
@ -39,7 +39,7 @@ def response():
|
|||||||
# assert response.status == 200
|
# assert response.status == 200
|
||||||
|
|
||||||
|
|
||||||
async def test_response_file_not_found(loop, tmpdir, response):
|
async def test_response_file_not_found(event_loop, tmpdir, response):
|
||||||
|
|
||||||
filename = str(tmpdir / 'hello-not-found')
|
filename = str(tmpdir / 'hello-not-found')
|
||||||
with pytest.raises(HTTPNotFound):
|
with pytest.raises(HTTPNotFound):
|
||||||
|
Loading…
Reference in New Issue
Block a user