1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00
gns3-server/tests/api/routes/controller/test_drawings.py

93 lines
3.2 KiB
Python
Raw Normal View History

2016-06-20 16:45:31 +00:00
# -*- coding: utf-8 -*-
#
# Copyright (C) 2020 GNS3 Technologies Inc.
2016-06-20 16:45:31 +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,
# 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/>.
2020-10-02 06:37:50 +00:00
import pytest
2016-06-23 09:17:23 +00:00
from gns3server.controller.drawing import Drawing
2016-06-20 16:45:31 +00:00
2020-10-02 06:37:50 +00:00
@pytest.mark.asyncio
async def test_create_drawing(controller_api, project):
2016-06-20 16:45:31 +00:00
params = {
2016-06-20 16:45:31 +00:00
"svg": '<svg height="210" width="500"><line x1="0" y1="0" x2="200" y2="200" style="stroke:rgb(255,0,0);stroke-width:2" /></svg>',
"x": 10,
"y": 20,
"z": 0
}
response = await controller_api.post("/projects/{}/drawings".format(project.id), params)
2020-10-02 06:37:50 +00:00
assert response.status_code == 201
2016-06-23 09:17:23 +00:00
assert response.json["drawing_id"] is not None
2016-06-20 16:45:31 +00:00
2020-10-02 06:37:50 +00:00
@pytest.mark.asyncio
async def test_get_drawing(controller_api, project):
params = {
"svg": '<svg height="210" width="500"><line x1="0" y1="0" x2="200" y2="200" style="stroke:rgb(255,0,0);stroke-width:2" /></svg>',
"x": 10,
"y": 20,
"z": 0
}
response = await controller_api.post("/projects/{}/drawings".format(project.id), params)
response = await controller_api.get("/projects/{}/drawings/{}".format(project.id, response.json["drawing_id"]))
2020-10-02 06:37:50 +00:00
assert response.status_code == 200
assert response.json["x"] == 10
2020-10-02 06:37:50 +00:00
@pytest.mark.asyncio
async def test_update_drawing(controller_api, project):
2016-06-20 16:45:31 +00:00
params = {
2016-06-20 16:45:31 +00:00
"svg": '<svg height="210" width="500"><line x1="0" y1="0" x2="200" y2="200" style="stroke:rgb(255,0,0);stroke-width:2" /></svg>',
"x": 10,
"y": 20,
"z": 0
}
response = await controller_api.post("/projects/{}/drawings".format(project.id), params)
response = await controller_api.put("/projects/{}/drawings/{}".format(project.id, response.json["drawing_id"]), {"x": 42})
2020-10-02 06:37:50 +00:00
assert response.status_code == 200
2016-06-20 16:45:31 +00:00
assert response.json["x"] == 42
2020-10-02 06:37:50 +00:00
@pytest.mark.asyncio
async def test_list_drawing(controller_api, project):
params = {
2016-06-20 16:45:31 +00:00
"svg": '<svg height="210" width="500"><line x1="0" y1="0" x2="200" y2="200" style="stroke:rgb(255,0,0);stroke-width:2" /></svg>',
"x": 10,
"y": 20,
"z": 0
}
await controller_api.post("/projects/{}/drawings".format(project.id), params)
response = await controller_api.get("/projects/{}/drawings".format(project.id))
2020-10-02 06:37:50 +00:00
assert response.status_code == 200
2016-06-20 16:45:31 +00:00
assert len(response.json) == 1
2020-10-02 06:37:50 +00:00
@pytest.mark.asyncio
async def test_delete_drawing(controller_api, project):
2016-06-20 16:45:31 +00:00
2016-06-23 09:17:23 +00:00
drawing = Drawing(project)
project._drawings = {drawing.id: drawing}
response = await controller_api.delete("/projects/{}/drawings/{}".format(project.id, drawing.id))
2020-10-02 06:37:50 +00:00
assert response.status_code == 204
assert drawing.id not in project.drawings