1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-12 02:48:55 +00:00
gns3-server/tests/controller/test_vm.py

150 lines
4.2 KiB
Python
Raw Normal View History

2016-03-10 20:51:29 +00:00
#!/usr/bin/env python
#
# Copyright (C) 2016 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/>.
import pytest
import uuid
2016-03-15 09:45:05 +00:00
import asyncio
2016-03-10 20:51:29 +00:00
from unittest.mock import MagicMock
2016-03-15 09:45:05 +00:00
from tests.utils import AsyncioMagicMock
2016-03-10 20:51:29 +00:00
from gns3server.controller.vm import VM
from gns3server.controller.project import Project
@pytest.fixture
2016-04-15 15:57:06 +00:00
def compute():
2016-03-15 09:45:05 +00:00
s = AsyncioMagicMock()
2016-03-10 20:51:29 +00:00
s.id = "http://test.com:42"
return s
@pytest.fixture
2016-04-15 15:57:06 +00:00
def vm(compute):
2016-03-10 20:51:29 +00:00
project = Project(str(uuid.uuid4()))
2016-04-15 15:57:06 +00:00
vm = VM(project, compute,
2016-03-10 20:51:29 +00:00
name="demo",
vm_id=str(uuid.uuid4()),
vm_type="vpcs",
2016-03-11 14:06:14 +00:00
console_type="vnc",
properties={"startup_script": "echo test"})
2016-03-10 20:51:29 +00:00
return vm
2016-04-15 15:57:06 +00:00
def test_json(vm, compute):
2016-03-10 20:51:29 +00:00
assert vm.__json__() == {
2016-04-15 15:57:06 +00:00
"compute_id": compute.id,
2016-03-11 14:06:14 +00:00
"project_id": vm.project.id,
2016-03-10 20:51:29 +00:00
"vm_id": vm.id,
"vm_type": vm.vm_type,
"name": "demo",
"console": vm.console,
"console_type": vm.console_type,
"properties": vm.properties
}
2016-04-15 15:57:06 +00:00
def test_init_without_uuid(project, compute):
vm = VM(project, compute,
2016-03-10 20:51:29 +00:00
vm_type="vpcs",
console_type="vnc")
assert vm.id is not None
2016-04-15 15:57:06 +00:00
def test_create(vm, compute, project, async_run):
2016-03-15 09:45:05 +00:00
vm._console = 2048
response = MagicMock()
response.json = {"console": 2048}
2016-04-15 15:57:06 +00:00
compute.post = AsyncioMagicMock(return_value=response)
2016-03-15 09:45:05 +00:00
async_run(vm.create())
data = {
"console": 2048,
"console_type": "vnc",
"vm_id": vm.id,
"startup_script": "echo test",
"name": "demo"
}
2016-04-15 15:57:06 +00:00
compute.post.assert_called_with("/projects/{}/vpcs/vms".format(vm.project.id), data=data)
2016-03-15 09:45:05 +00:00
assert vm._console == 2048
assert vm._properties == {"startup_script": "echo test"}
2016-04-15 15:57:06 +00:00
def test_start(vm, compute, project, async_run):
2016-04-15 15:57:06 +00:00
compute.post = AsyncioMagicMock()
async_run(vm.start())
2016-04-15 15:57:06 +00:00
compute.post.assert_called_with("/projects/{}/vpcs/vms/{}/start".format(vm.project.id, vm.id))
2016-04-15 15:57:06 +00:00
def test_stop(vm, compute, project, async_run):
2016-04-15 15:57:06 +00:00
compute.post = AsyncioMagicMock()
async_run(vm.stop())
2016-04-15 15:57:06 +00:00
compute.post.assert_called_with("/projects/{}/vpcs/vms/{}/stop".format(vm.project.id, vm.id))
2016-04-15 15:57:06 +00:00
def test_suspend(vm, compute, project, async_run):
2016-04-15 15:57:06 +00:00
compute.post = AsyncioMagicMock()
async_run(vm.suspend())
2016-04-15 15:57:06 +00:00
compute.post.assert_called_with("/projects/{}/vpcs/vms/{}/suspend".format(vm.project.id, vm.id))
2016-04-18 14:57:02 +00:00
def test_reload(vm, compute, project, async_run):
compute.post = AsyncioMagicMock()
async_run(vm.reload())
compute.post.assert_called_with("/projects/{}/vpcs/vms/{}/reload".format(vm.project.id, vm.id))
2016-04-15 15:57:06 +00:00
def test_create_without_console(vm, compute, project, async_run):
2016-03-15 09:45:05 +00:00
"""
None properties should be send. Because it can mean the emulator doesn"t support it
"""
response = MagicMock()
response.json = {"console": 2048, "test_value": "success"}
2016-04-15 15:57:06 +00:00
compute.post = AsyncioMagicMock(return_value=response)
2016-03-15 09:45:05 +00:00
2016-03-10 20:51:29 +00:00
async_run(vm.create())
data = {
"console_type": "vnc",
2016-03-11 14:06:14 +00:00
"vm_id": vm.id,
"startup_script": "echo test",
"name": "demo"
2016-03-10 20:51:29 +00:00
}
2016-04-15 15:57:06 +00:00
compute.post.assert_called_with("/projects/{}/vpcs/vms".format(vm.project.id), data=data)
2016-03-15 09:45:05 +00:00
assert vm._console == 2048
assert vm._properties == {"test_value": "success", "startup_script": "echo test"}
2016-04-15 15:57:06 +00:00
def test_post(vm, compute, async_run):
async_run(vm.post("/test", {"a": "b"}))
2016-04-15 15:57:06 +00:00
compute.post.assert_called_with("/projects/{}/vpcs/vms/{}/test".format(vm.project.id, vm.id), data={"a": "b"})
2016-03-14 16:40:27 +00:00
2016-04-15 15:57:06 +00:00
def test_delete(vm, compute, async_run):
2016-03-14 16:40:27 +00:00
async_run(vm.delete("/test"))
2016-04-15 15:57:06 +00:00
compute.delete.assert_called_with("/projects/{}/vpcs/vms/{}/test".format(vm.project.id, vm.id))