1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-11 18:38:55 +00:00
gns3-server/tests/handlers/api/controller/test_vm.py

100 lines
3.1 KiB
Python
Raw Normal View History

2016-03-10 20:51:29 +00:00
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015 GNS3 Technologies Inc.
2016-03-11 14:06:14 +00:00
#
# 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,
2016-03-10 20:51:29 +00:00
# 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/>.
"""
This test suite check /project endpoint
"""
import uuid
import os
import asyncio
import aiohttp
import pytest
2016-03-15 09:45:05 +00:00
from unittest.mock import patch, MagicMock
from tests.utils import asyncio_patch, AsyncioMagicMock
2016-03-10 20:51:29 +00:00
from gns3server.handlers.api.controller.project_handler import ProjectHandler
from gns3server.controller import Controller
from gns3server.controller.vm import VM
2016-03-10 20:51:29 +00:00
@pytest.fixture
def hypervisor(http_controller, async_run):
hypervisor = MagicMock()
hypervisor.id = "example.com"
Controller.instance()._hypervisors = {"example.com": hypervisor}
return hypervisor
@pytest.fixture
def project(http_controller, async_run):
return async_run(Controller.instance().addProject())
@pytest.fixture
def vm(project, hypervisor, async_run):
vm = VM(project, hypervisor, name="test", vm_type="vpcs")
project._vms[vm.id] = vm
return vm
2016-03-10 20:51:29 +00:00
def test_create_vm(http_controller, tmpdir, project, hypervisor):
2016-03-15 09:45:05 +00:00
response = MagicMock()
response.json = {"console": 2048}
hypervisor.post = AsyncioMagicMock(return_value=response)
2016-03-11 14:06:14 +00:00
response = http_controller.post("/projects/{}/vms".format(project.id), {
"name": "test",
"vm_type": "vpcs",
"hypervisor_id": "example.com",
"properties": {
2016-03-15 09:45:05 +00:00
"startup_script": "echo test"
2016-03-11 14:06:14 +00:00
}
}, example=True)
2016-03-10 20:51:29 +00:00
assert response.status == 201
assert response.json["name"] == "test"
2016-03-11 14:49:28 +00:00
assert "name" not in response.json["properties"]
def test_start_vm(http_controller, tmpdir, project, hypervisor, vm):
response = MagicMock()
hypervisor.post = AsyncioMagicMock()
response = http_controller.post("/projects/{}/vms/{}/start".format(project.id, vm.id), example=True)
assert response.status == 201
assert response.json["name"] == vm.name
def test_stop_vm(http_controller, tmpdir, project, hypervisor, vm):
response = MagicMock()
hypervisor.post = AsyncioMagicMock()
response = http_controller.post("/projects/{}/vms/{}/stop".format(project.id, vm.id), example=True)
assert response.status == 201
assert response.json["name"] == vm.name
def test_suspend_vm(http_controller, tmpdir, project, hypervisor, vm):
response = MagicMock()
hypervisor.post = AsyncioMagicMock()
response = http_controller.post("/projects/{}/vms/{}/suspend".format(project.id, vm.id), example=True)
assert response.status == 201
assert response.json["name"] == vm.name