mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-26 08:48:11 +00:00
QEMU VNC options tests
This commit is contained in:
parent
b8a4785633
commit
c91a001729
@ -359,6 +359,13 @@ def test_bios_option(vm, tmpdir, loop, fake_qemu_img_binary):
|
|||||||
assert ' '.join(['-bios', str(tmpdir / "test.img")]) in ' '.join(options)
|
assert ' '.join(['-bios', str(tmpdir / "test.img")]) in ' '.join(options)
|
||||||
|
|
||||||
|
|
||||||
|
def test_vnc_option(vm, tmpdir, loop, fake_qemu_img_binary):
|
||||||
|
vm._console_type = 'vnc'
|
||||||
|
vm._console = 5905
|
||||||
|
options = loop.run_until_complete(asyncio.async(vm._build_command()))
|
||||||
|
assert '-vnc 127.0.0.1:5' in ' '.join(options)
|
||||||
|
|
||||||
|
|
||||||
def test_disk_options_multiple_disk(vm, tmpdir, loop, fake_qemu_img_binary):
|
def test_disk_options_multiple_disk(vm, tmpdir, loop, fake_qemu_img_binary):
|
||||||
|
|
||||||
vm._hda_disk_image = str(tmpdir / "test0.qcow2")
|
vm._hda_disk_image = str(tmpdir / "test0.qcow2")
|
||||||
|
Loading…
Reference in New Issue
Block a user