2016-06-20 19:45:31 +03: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/>.
|
|
|
|
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
|
|
import uuid
|
|
|
|
|
|
|
|
from tests.utils import AsyncioMagicMock
|
|
|
|
|
|
|
|
|
2016-06-23 12:17:23 +03:00
|
|
|
from gns3server.controller.drawing import Drawing
|
2016-06-20 19:45:31 +03:00
|
|
|
from gns3server.controller.project import Project
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def project(controller, async_run):
|
2016-07-11 16:36:52 +03:00
|
|
|
return async_run(controller.add_project(name="Test"))
|
2016-06-20 19:45:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2016-06-23 12:17:23 +03:00
|
|
|
def drawing(project):
|
|
|
|
return Drawing(project, None, svg="<svg></svg>")
|
2016-06-20 19:45:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_init_without_uuid(project):
|
2016-06-23 12:17:23 +03:00
|
|
|
drawing = Drawing(project, None, svg="<svg></svg>")
|
|
|
|
assert drawing.id is not None
|
2016-06-20 19:45:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_init_with_uuid(project):
|
|
|
|
id = str(uuid.uuid4())
|
2016-06-23 12:17:23 +03:00
|
|
|
drawing = Drawing(project, id, svg="<svg></svg>")
|
|
|
|
assert drawing.id == id
|
2016-06-20 19:45:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_json(project):
|
2016-06-23 12:17:23 +03:00
|
|
|
i = Drawing(project, None, svg="<svg></svg>")
|
2016-06-20 19:45:31 +03:00
|
|
|
assert i.__json__() == {
|
2016-06-23 12:17:23 +03:00
|
|
|
"drawing_id": i.id,
|
2016-06-20 19:45:31 +03:00
|
|
|
"project_id": project.id,
|
|
|
|
"x": i.x,
|
|
|
|
"y": i.y,
|
2016-06-21 13:19:12 +03:00
|
|
|
"z": i.z,
|
2016-06-21 20:39:00 +03:00
|
|
|
"svg": i.svg,
|
|
|
|
"rotation": i.rotation
|
2016-06-20 19:45:31 +03:00
|
|
|
}
|
|
|
|
assert i.__json__(topology_dump=True) == {
|
2016-06-23 12:17:23 +03:00
|
|
|
"drawing_id": i.id,
|
2016-06-20 19:45:31 +03:00
|
|
|
"x": i.x,
|
|
|
|
"y": i.y,
|
2016-06-21 13:19:12 +03:00
|
|
|
"z": i.z,
|
2016-06-21 20:39:00 +03:00
|
|
|
"rotation": i.rotation,
|
2016-06-21 13:19:12 +03:00
|
|
|
"svg": i.svg
|
2016-06-20 19:45:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-23 12:17:23 +03:00
|
|
|
def test_update(drawing, project, async_run, controller):
|
2016-06-20 19:45:31 +03:00
|
|
|
controller._notification = AsyncioMagicMock()
|
|
|
|
project.dump = MagicMock()
|
|
|
|
|
2016-06-23 12:17:23 +03:00
|
|
|
async_run(drawing.update(x=42, svg="<svg><rect></rect></svg>"))
|
|
|
|
assert drawing.x == 42
|
2016-06-22 18:46:00 +03:00
|
|
|
args, kwargs = controller._notification.emit.call_args
|
2016-06-23 12:17:23 +03:00
|
|
|
assert args[0] == "drawing.updated"
|
2016-06-22 18:46:00 +03:00
|
|
|
# JSON
|
|
|
|
assert args[1]["x"] == 42
|
|
|
|
assert args[1]["svg"] == "<svg><rect></rect></svg>"
|
|
|
|
|
2016-06-23 12:17:23 +03:00
|
|
|
async_run(drawing.update(x=12, svg="<svg><rect></rect></svg>"))
|
|
|
|
assert drawing.x == 12
|
2016-06-22 18:46:00 +03:00
|
|
|
args, kwargs = controller._notification.emit.call_args
|
2016-06-23 12:17:23 +03:00
|
|
|
assert args[0] == "drawing.updated"
|
2016-06-22 18:46:00 +03:00
|
|
|
# JSON
|
|
|
|
assert args[1]["x"] == 12
|
|
|
|
# To avoid spamming client with large data we don't send the svg if the SVG didn't change
|
|
|
|
assert "svg" not in args[1]
|
|
|
|
|
2016-06-20 19:45:31 +03:00
|
|
|
assert project.dump.called
|