gns3-server/tests/api/test_virtualbox.py

117 lines
5.3 KiB
Python
Raw Normal View History

# -*- 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/>.
2015-01-22 04:30:24 +02:00
import pytest
2015-01-21 23:32:33 +02:00
from tests.utils import asyncio_patch
2015-01-22 04:30:24 +02:00
@pytest.fixture(scope="module")
def vm(server, project):
with asyncio_patch("gns3server.modules.virtualbox.virtualbox_vm.VirtualBoxVM.create", return_value=True) as mock:
response = server.post("/virtualbox/vms", {"name": "VMTEST",
"vmname": "VMTEST",
"linked_clone": False,
"project_id": project.id})
2015-01-22 04:30:24 +02:00
assert mock.called
assert response.status == 201
return response.json
2015-01-21 00:28:40 +02:00
def test_vbox_create(server, project):
2015-01-22 00:21:15 +02:00
2015-01-22 04:30:24 +02:00
with asyncio_patch("gns3server.modules.virtualbox.virtualbox_vm.VirtualBoxVM.create", return_value=True):
response = server.post("/virtualbox/vms", {"name": "VM1",
"vmname": "VM1",
"linked_clone": False,
"project_id": project.id},
2015-01-22 00:21:15 +02:00
example=True)
assert response.status == 201
assert response.json["name"] == "VM1"
assert response.json["project_id"] == project.id
2015-01-24 01:38:59 +02:00
def test_vbox_get(server, project, vm):
response = server.get("/virtualbox/vms/{}".format(vm["vm_id"]), example=True)
2015-01-24 01:38:59 +02:00
assert response.status == 200
assert response.route == "/virtualbox/vms/{vm_id}"
2015-01-24 01:38:59 +02:00
assert response.json["name"] == "VMTEST"
assert response.json["project_id"] == project.id
2015-01-24 01:38:59 +02:00
2015-01-22 04:30:24 +02:00
def test_vbox_start(server, vm):
with asyncio_patch("gns3server.modules.virtualbox.virtualbox_vm.VirtualBoxVM.start", return_value=True) as mock:
response = server.post("/virtualbox/vms/{}/start".format(vm["vm_id"]))
2015-01-22 04:30:24 +02:00
assert mock.called
assert response.status == 204
def test_vbox_stop(server, vm):
with asyncio_patch("gns3server.modules.virtualbox.virtualbox_vm.VirtualBoxVM.stop", return_value=True) as mock:
response = server.post("/virtualbox/vms/{}/stop".format(vm["vm_id"]))
2015-01-22 04:30:24 +02:00
assert mock.called
assert response.status == 204
def test_vbox_suspend(server, vm):
with asyncio_patch("gns3server.modules.virtualbox.virtualbox_vm.VirtualBoxVM.suspend", return_value=True) as mock:
response = server.post("/virtualbox/vms/{}/suspend".format(vm["vm_id"]))
assert mock.called
assert response.status == 204
2015-01-22 04:30:24 +02:00
def test_vbox_resume(server, vm):
with asyncio_patch("gns3server.modules.virtualbox.virtualbox_vm.VirtualBoxVM.resume", return_value=True) as mock:
response = server.post("/virtualbox/vms/{}/resume".format(vm["vm_id"]))
assert mock.called
assert response.status == 204
2015-01-23 04:07:09 +02:00
def test_vbox_reload(server, vm):
with asyncio_patch("gns3server.modules.virtualbox.virtualbox_vm.VirtualBoxVM.reload", return_value=True) as mock:
response = server.post("/virtualbox/vms/{}/reload".format(vm["vm_id"]))
2015-01-23 04:07:09 +02:00
assert mock.called
assert response.status == 204
2015-01-24 01:38:59 +02:00
def test_vbox_nio_create_udp(server, vm):
response = server.post("/virtualbox/vms/{}/adapters/0/nio".format(vm["vm_id"]), {"type": "nio_udp",
"lport": 4242,
"rport": 4343,
"rhost": "127.0.0.1"},
2015-01-24 01:38:59 +02:00
example=True)
assert response.status == 201
assert response.route == "/virtualbox/vms/{vm_id}/adapters/{adapter_id:\d+}/nio"
2015-01-24 01:38:59 +02:00
assert response.json["type"] == "nio_udp"
def test_vbox_delete_nio(server, vm):
server.post("/virtualbox/vms/{}/adapters/0/nio".format(vm["vm_id"]), {"type": "nio_udp",
"lport": 4242,
"rport": 4343,
"rhost": "127.0.0.1"})
response = server.delete("/virtualbox/vms/{}/adapters/0/nio".format(vm["vm_id"]), example=True)
2015-01-24 01:38:59 +02:00
assert response.status == 204
assert response.route == "/virtualbox/vms/{vm_id}/adapters/{adapter_id:\d+}/nio"
2015-01-24 01:38:59 +02:00
def test_vpcs_update(server, vm, free_console_port):
response = server.put("/virtualbox/vms/{}".format(vm["vm_id"]), {"name": "test",
"console": free_console_port})
2015-01-24 01:38:59 +02:00
assert response.status == 200
assert response.json["name"] == "test"
assert response.json["console"] == free_console_port