2016-03-11 17:51:35 +02:00
|
|
|
# -*- 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/>.
|
|
|
|
|
|
|
|
"""
|
|
|
|
This test suite check /project endpoint
|
|
|
|
"""
|
|
|
|
|
|
|
|
import uuid
|
|
|
|
import os
|
|
|
|
import asyncio
|
|
|
|
import aiohttp
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
from unittest.mock import patch, MagicMock, PropertyMock
|
2016-03-15 11:45:05 +02:00
|
|
|
from tests.utils import asyncio_patch, AsyncioMagicMock
|
2016-03-11 17:51:35 +02:00
|
|
|
|
|
|
|
from gns3server.handlers.api.controller.project_handler import ProjectHandler
|
|
|
|
from gns3server.controller import Controller
|
|
|
|
from gns3server.controller.vm import VM
|
2016-03-14 18:40:27 +02:00
|
|
|
from gns3server.controller.link import Link
|
2016-03-11 17:51:35 +02: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())
|
|
|
|
|
|
|
|
|
|
|
|
def test_create_link(http_controller, tmpdir, project, hypervisor, async_run):
|
2016-03-15 11:45:05 +02:00
|
|
|
response = MagicMock()
|
|
|
|
response.json = {"console": 2048}
|
|
|
|
hypervisor.post = AsyncioMagicMock(return_value=response)
|
|
|
|
|
2016-03-11 17:51:35 +02:00
|
|
|
vm1 = async_run(project.addVM(hypervisor, None))
|
|
|
|
vm2 = async_run(project.addVM(hypervisor, None))
|
|
|
|
|
2016-03-14 18:40:27 +02:00
|
|
|
with asyncio_patch("gns3server.controller.udp_link.UDPLink.create") as mock:
|
2016-03-14 17:51:47 +02:00
|
|
|
response = http_controller.post("/projects/{}/links".format(project.id), {
|
|
|
|
"vms": [
|
|
|
|
{
|
|
|
|
"vm_id": vm1.id,
|
|
|
|
"adapter_number": 0,
|
|
|
|
"port_number": 3
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"vm_id": vm2.id,
|
|
|
|
"adapter_number": 2,
|
|
|
|
"port_number": 4
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}, example=True)
|
2016-03-14 18:40:27 +02:00
|
|
|
assert mock.called
|
2016-03-11 17:51:35 +02:00
|
|
|
assert response.status == 201
|
|
|
|
assert response.json["link_id"] is not None
|
|
|
|
assert len(response.json["vms"]) == 2
|
2016-03-14 18:40:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_delete_link(http_controller, tmpdir, project, hypervisor, async_run):
|
|
|
|
|
|
|
|
link = Link(project)
|
|
|
|
project._links = {link.id: link}
|
|
|
|
with asyncio_patch("gns3server.controller.udp_link.Link.delete"):
|
|
|
|
response = http_controller.delete("/projects/{}/links/{}".format(project.id, link.id), example=True)
|
2016-03-14 21:54:05 +02:00
|
|
|
assert response.status == 204
|