mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 17:28:08 +00:00
118 lines
3.4 KiB
Python
118 lines
3.4 KiB
Python
#!/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
|
|
import asyncio
|
|
from unittest.mock import MagicMock
|
|
|
|
|
|
from tests.utils import AsyncioMagicMock
|
|
|
|
from gns3server.controller.vm import VM
|
|
from gns3server.controller.project import Project
|
|
|
|
|
|
@pytest.fixture
|
|
def hypervisor():
|
|
s = AsyncioMagicMock()
|
|
s.id = "http://test.com:42"
|
|
return s
|
|
|
|
|
|
@pytest.fixture
|
|
def vm(hypervisor):
|
|
project = Project(str(uuid.uuid4()))
|
|
vm = VM(project, hypervisor,
|
|
name="demo",
|
|
vm_id=str(uuid.uuid4()),
|
|
vm_type="vpcs",
|
|
console_type="vnc",
|
|
properties={"startup_script": "echo test"})
|
|
return vm
|
|
|
|
|
|
def test_json(vm, hypervisor):
|
|
assert vm.__json__() == {
|
|
"hypervisor_id": hypervisor.id,
|
|
"project_id": vm.project.id,
|
|
"vm_id": vm.id,
|
|
"vm_type": vm.vm_type,
|
|
"name": "demo",
|
|
"console": vm.console,
|
|
"console_type": vm.console_type,
|
|
"properties": vm.properties
|
|
}
|
|
|
|
|
|
def test_init_without_uuid(project, hypervisor):
|
|
vm = VM(project, hypervisor,
|
|
vm_type="vpcs",
|
|
console_type="vnc")
|
|
assert vm.id is not None
|
|
|
|
|
|
def test_create(vm, hypervisor, project, async_run):
|
|
vm._console = 2048
|
|
|
|
response = MagicMock()
|
|
response.json = {"console": 2048}
|
|
hypervisor.post = AsyncioMagicMock(return_value=response)
|
|
|
|
async_run(vm.create())
|
|
data = {
|
|
"console": 2048,
|
|
"console_type": "vnc",
|
|
"vm_id": vm.id,
|
|
"startup_script": "echo test",
|
|
"name": "demo"
|
|
}
|
|
hypervisor.post.assert_called_with("/projects/{}/vpcs/vms".format(vm.project.id), data=data)
|
|
assert vm._console == 2048
|
|
assert vm._properties == {"startup_script": "echo test"}
|
|
|
|
|
|
def test_create_without_console(vm, hypervisor, project, async_run):
|
|
"""
|
|
None properties should be send. Because it can mean the emulator doesn"t support it
|
|
"""
|
|
|
|
response = MagicMock()
|
|
response.json = {"console": 2048, "test_value": "success"}
|
|
hypervisor.post = AsyncioMagicMock(return_value=response)
|
|
|
|
async_run(vm.create())
|
|
data = {
|
|
"console_type": "vnc",
|
|
"vm_id": vm.id,
|
|
"startup_script": "echo test",
|
|
"name": "demo"
|
|
}
|
|
hypervisor.post.assert_called_with("/projects/{}/vpcs/vms".format(vm.project.id), data=data)
|
|
assert vm._console == 2048
|
|
assert vm._properties == {"test_value": "success", "startup_script": "echo test"}
|
|
|
|
|
|
def test_post(vm, hypervisor, async_run):
|
|
async_run(vm.post("/test", {"a": "b"}))
|
|
hypervisor.post.assert_called_with("/projects/{}/vpcs/vms/{}/test".format(vm.project.id, vm.id), data={"a": "b"})
|
|
|
|
|
|
def test_delete(vm, hypervisor, async_run):
|
|
async_run(vm.delete("/test"))
|
|
hypervisor.delete.assert_called_with("/projects/{}/vpcs/vms/{}/test".format(vm.project.id, vm.id))
|