2016-06-27 16:33:42 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2020-06-16 04:29:03 +00:00
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
2016-06-27 16:33:42 +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/>.
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
from gns3server.controller.symbols import Symbols
|
|
|
|
from gns3server.utils.get_resource import get_resource
|
|
|
|
|
|
|
|
|
2016-06-28 17:58:57 +00:00
|
|
|
def test_list(symbols_dir):
|
|
|
|
|
|
|
|
with open(os.path.join(symbols_dir, "linux.svg"), "w+") as f:
|
|
|
|
pass
|
|
|
|
|
2016-06-27 16:33:42 +00:00
|
|
|
symbols = Symbols()
|
|
|
|
assert {
|
2018-11-23 10:27:10 +00:00
|
|
|
'symbol_id': ':/symbols/classic/firewall.svg',
|
2019-03-11 09:55:16 +00:00
|
|
|
'filename': 'firewall.svg',
|
|
|
|
'builtin': True,
|
|
|
|
'theme': 'Classic'
|
2016-06-27 16:33:42 +00:00
|
|
|
} in symbols.list()
|
2016-06-28 17:58:57 +00:00
|
|
|
assert {
|
|
|
|
'symbol_id': 'linux.svg',
|
|
|
|
'filename': 'linux.svg',
|
2019-03-11 09:55:16 +00:00
|
|
|
'builtin': False,
|
|
|
|
'theme': 'Custom symbols'
|
2016-06-28 17:58:57 +00:00
|
|
|
} in symbols.list()
|
2016-06-28 16:17:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_get_path():
|
2018-11-23 10:27:10 +00:00
|
|
|
|
2016-06-28 16:17:48 +00:00
|
|
|
symbols = Symbols()
|
2018-11-23 10:27:10 +00:00
|
|
|
symbols.theme = "Classic"
|
|
|
|
assert symbols.get_path(':/symbols/classic/firewall.svg') == get_resource("symbols/classic/firewall.svg")
|
2016-08-17 09:58:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_get_size():
|
2018-11-23 10:27:10 +00:00
|
|
|
|
2016-08-17 09:58:19 +00:00
|
|
|
symbols = Symbols()
|
2018-11-23 10:27:10 +00:00
|
|
|
symbols.theme = "Classic"
|
|
|
|
assert symbols.get_size(':/symbols/classic/firewall.svg') == (66, 45, 'svg')
|