2017-04-12 12:35:49 +00: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/>.
|
|
|
|
|
2018-11-17 11:12:46 +00:00
|
|
|
import pytest
|
|
|
|
import jsonschema
|
|
|
|
|
2018-11-28 09:12:57 +00:00
|
|
|
from gns3server.controller.template import Template
|
2017-04-12 12:35:49 +00:00
|
|
|
|
|
|
|
|
2018-11-28 09:12:57 +00:00
|
|
|
def test_template_json():
|
|
|
|
a = Template(None, {
|
2017-04-12 12:35:49 +00:00
|
|
|
"node_type": "qemu",
|
|
|
|
"name": "Test",
|
|
|
|
"default_name_format": "{name}-{0}",
|
|
|
|
"category": 0,
|
|
|
|
"symbol": "qemu.svg",
|
2017-08-08 11:58:43 +00:00
|
|
|
"server": "local",
|
2018-11-17 11:12:46 +00:00
|
|
|
"platform": "i386"
|
2017-04-12 12:35:49 +00:00
|
|
|
})
|
2018-11-17 11:12:46 +00:00
|
|
|
settings = a.__json__()
|
2018-11-28 09:12:57 +00:00
|
|
|
assert settings["template_id"] == a.id
|
|
|
|
assert settings["template_type"] == "qemu"
|
2018-11-17 11:12:46 +00:00
|
|
|
assert settings["builtin"] == False
|
2017-05-16 08:33:37 +00:00
|
|
|
|
|
|
|
|
2018-11-28 09:12:57 +00:00
|
|
|
def test_template_json_with_not_known_category():
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2018-11-17 11:12:46 +00:00
|
|
|
with pytest.raises(jsonschema.ValidationError):
|
2020-06-16 04:29:03 +00:00
|
|
|
Template(None, {
|
2018-11-17 11:12:46 +00:00
|
|
|
"node_type": "qemu",
|
|
|
|
"name": "Test",
|
|
|
|
"default_name_format": "{name}-{0}",
|
|
|
|
"category": 'Not known',
|
|
|
|
"symbol": "qemu.svg",
|
|
|
|
"server": "local",
|
|
|
|
"platform": "i386"
|
|
|
|
})
|
2017-08-08 11:58:43 +00:00
|
|
|
|
|
|
|
|
2018-11-28 09:12:57 +00:00
|
|
|
def test_template_json_with_platform():
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2018-11-28 09:12:57 +00:00
|
|
|
a = Template(None, {
|
2017-08-08 11:58:43 +00:00
|
|
|
"node_type": "dynamips",
|
|
|
|
"name": "Test",
|
|
|
|
"default_name_format": "{name}-{0}",
|
|
|
|
"category": 0,
|
|
|
|
"symbol": "dynamips.svg",
|
2018-11-17 11:12:46 +00:00
|
|
|
"image": "IOS_image.bin",
|
2017-08-08 11:58:43 +00:00
|
|
|
"server": "local",
|
|
|
|
"platform": "c3725"
|
|
|
|
})
|
2018-11-17 11:12:46 +00:00
|
|
|
settings = a.__json__()
|
2018-11-28 09:12:57 +00:00
|
|
|
assert settings["template_id"] == a.id
|
|
|
|
assert settings["template_type"] == "dynamips"
|
2018-11-17 11:12:46 +00:00
|
|
|
assert settings["builtin"] == False
|
|
|
|
assert settings["platform"] == "c3725"
|
2017-08-07 08:00:46 +00:00
|
|
|
|
|
|
|
|
2018-11-28 09:12:57 +00:00
|
|
|
def test_template_fix_linked_base():
|
2017-05-16 08:33:37 +00:00
|
|
|
"""
|
|
|
|
Version of the gui before 2.1 use linked_base and the server
|
|
|
|
linked_clone
|
|
|
|
"""
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2018-11-28 09:12:57 +00:00
|
|
|
a = Template(None, {
|
2017-05-16 08:33:37 +00:00
|
|
|
"node_type": "qemu",
|
|
|
|
"name": "Test",
|
|
|
|
"default_name_format": "{name}-{0}",
|
|
|
|
"category": 0,
|
|
|
|
"symbol": "qemu.svg",
|
|
|
|
"server": "local",
|
|
|
|
"linked_base": True
|
|
|
|
})
|
2018-11-13 07:40:18 +00:00
|
|
|
assert a.settings["linked_clone"]
|
|
|
|
assert "linked_base" not in a.settings
|