mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-12 19:38:57 +00:00
89888ae7bf
Dynamips working directory management Random port selection for the ZeroMQ server TCP & UDP port allocation in a range with improvements Update Dynamips to 0.2.11 (for the tests) Focus on Python3 development (stop trying to be compatible with Python 2.x) More error/bug catching
45 lines
996 B
Python
45 lines
996 B
Python
from gns3server.modules.dynamips import Hypervisor
|
|
import time
|
|
import os
|
|
|
|
|
|
def test_is_started(hypervisor):
|
|
|
|
assert hypervisor.is_running()
|
|
|
|
|
|
def test_port(hypervisor):
|
|
|
|
assert hypervisor.port == 9000
|
|
|
|
|
|
def test_host(hypervisor):
|
|
|
|
assert hypervisor.host == "127.0.0.1"
|
|
|
|
|
|
def test_working_dir(hypervisor):
|
|
|
|
assert hypervisor.working_dir == "/tmp"
|
|
|
|
|
|
def test_path(hypervisor):
|
|
|
|
cwd = os.path.dirname(os.path.abspath(__file__))
|
|
dynamips_path = os.path.join(cwd, "dynamips.stable")
|
|
assert hypervisor.path == dynamips_path
|
|
|
|
|
|
def test_stdout():
|
|
|
|
# try to launch Dynamips on the same port
|
|
# this will fail so that we can read its stdout/stderr
|
|
cwd = os.path.dirname(os.path.abspath(__file__))
|
|
dynamips_path = os.path.join(cwd, "dynamips.stable")
|
|
hypervisor = Hypervisor(dynamips_path, "/tmp", "172.0.0.1", 7200)
|
|
hypervisor.start()
|
|
# give some time for Dynamips to start
|
|
time.sleep(0.01)
|
|
output = hypervisor.read_stdout()
|
|
assert output
|