2017-02-01 12:30:14 +02: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/>.
|
|
|
|
|
|
|
|
|
2017-04-12 15:35:49 +03:00
|
|
|
import uuid
|
|
|
|
import pytest
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
from tests.utils import asyncio_patch
|
|
|
|
|
|
|
|
|
|
|
|
from gns3server.controller import Controller
|
|
|
|
from gns3server.controller.appliance import Appliance
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def compute(http_controller, async_run):
|
|
|
|
compute = MagicMock()
|
|
|
|
compute.id = "example.com"
|
|
|
|
compute.host = "example.org"
|
|
|
|
Controller.instance()._computes = {"example.com": compute}
|
|
|
|
return compute
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def project(http_controller, async_run):
|
|
|
|
return async_run(Controller.instance().add_project(name="Test"))
|
|
|
|
|
|
|
|
|
2017-02-01 12:30:14 +02:00
|
|
|
def test_appliance_list(http_controller, controller):
|
|
|
|
|
2017-04-12 15:35:49 +03:00
|
|
|
id = str(uuid.uuid4())
|
|
|
|
controller.load_appliances()
|
|
|
|
controller._appliances[id] = Appliance(id, {
|
|
|
|
"node_type": "qemu",
|
|
|
|
"category": 0,
|
|
|
|
"name": "test",
|
|
|
|
"symbol": "guest.svg",
|
|
|
|
"default_name_format": "{name}-{0}",
|
|
|
|
"server": "local"
|
|
|
|
})
|
|
|
|
response = http_controller.get("/appliances", example=True)
|
2017-02-01 12:30:14 +02:00
|
|
|
assert response.status == 200
|
2017-04-12 15:35:49 +03:00
|
|
|
assert response.route == "/appliances"
|
|
|
|
assert len(response.json) > 0
|
|
|
|
|
2017-02-01 12:30:14 +02:00
|
|
|
|
2017-04-12 15:35:49 +03:00
|
|
|
def test_appliance_templates_list(http_controller, controller, async_run):
|
|
|
|
|
|
|
|
controller.load_appliances()
|
|
|
|
response = http_controller.get("/appliances/templates", example=True)
|
|
|
|
assert response.status == 200
|
2017-02-01 12:30:14 +02:00
|
|
|
assert len(response.json) > 0
|
2017-04-12 15:35:49 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_create_node_from_appliance(http_controller, controller, project, compute):
|
|
|
|
|
|
|
|
id = str(uuid.uuid4())
|
|
|
|
controller._appliances = {id: Appliance(id, {
|
|
|
|
"node_type": "qemu",
|
|
|
|
"category": 0,
|
|
|
|
"name": "test",
|
|
|
|
"symbol": "guest.svg",
|
|
|
|
"default_name_format": "{name}-{0}",
|
|
|
|
"server": "example.com"
|
|
|
|
})}
|
|
|
|
with asyncio_patch("gns3server.controller.project.Project.add_node_from_appliance") as mock:
|
|
|
|
response = http_controller.post("/projects/{}/appliances/{}".format(project.id, id), {
|
|
|
|
"x": 42,
|
|
|
|
"y": 12
|
|
|
|
})
|
|
|
|
mock.assert_called_with(id, x=42, y=12, compute_id=None)
|
|
|
|
print(response.body)
|
|
|
|
assert response.route == "/projects/{project_id}/appliances/{appliance_id}"
|
|
|
|
assert response.status == 201
|