1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-09 17:38:57 +00:00
gns3-server/tests/test_config.py

113 lines
3.0 KiB
Python
Raw Normal View History

2015-02-02 14:01:48 +00:00
# -*- coding: utf-8 -*-
#
# Copyright (C) 2020 GNS3 Technologies Inc.
2015-02-02 14:01:48 +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 configparser
from gns3server.config import Config
def load_config(tmpdir, settings):
"""
Create a configuration file for
the test.
:params tmpdir: Temporary directory
:params settings: Configuration settings
:returns: Configuration instance
"""
path = write_config(tmpdir, settings)
return Config(files=[path])
def write_config(tmpdir, settings):
"""
Write a configuration file for the test.
:params tmpdir: Temporary directory
:params settings: Configuration settings
:returns: File path
"""
path = str(tmpdir / "server.conf")
config = configparser.ConfigParser()
config.read_dict(settings)
with open(path, "w+") as f:
config.write(f)
return path
2020-07-30 05:28:22 +00:00
def test_get_section_config(loop, tmpdir):
2015-02-02 14:01:48 +00:00
config = load_config(tmpdir, {
"Server": {
2016-08-23 20:40:26 +00:00
"host": "127.0.0.1",
2015-02-02 14:01:48 +00:00
}
})
assert dict(config.get_section_config("Server")) == {"host": "127.0.0.1"}
2020-07-30 05:28:22 +00:00
def test_set_section_config(loop, tmpdir):
2015-02-02 14:01:48 +00:00
2015-03-16 14:03:41 +00:00
config = load_config(tmpdir, {
"Server": {
"host": "127.0.0.1",
"local": "false"
}
})
2015-03-16 14:03:41 +00:00
assert dict(config.get_section_config("Server")) == {"host": "127.0.0.1", "local": "false"}
config.set_section_config("Server", {"host": "192.168.1.1", "local": True})
assert dict(config.get_section_config("Server")) == {"host": "192.168.1.1", "local": "true"}
2020-07-30 05:28:22 +00:00
def test_set(loop, tmpdir):
2015-03-16 14:03:41 +00:00
2015-02-02 14:01:48 +00:00
config = load_config(tmpdir, {
"Server": {
"host": "127.0.0.1"
}
})
2015-02-02 14:01:48 +00:00
assert dict(config.get_section_config("Server")) == {"host": "127.0.0.1"}
2015-03-16 14:03:41 +00:00
config.set("Server", "host", "192.168.1.1")
2015-02-02 14:01:48 +00:00
assert dict(config.get_section_config("Server")) == {"host": "192.168.1.1"}
2020-07-30 05:28:22 +00:00
def test_reload(loop, tmpdir):
config = load_config(tmpdir, {
"Server": {
"host": "127.0.0.1"
}
})
assert dict(config.get_section_config("Server")) == {"host": "127.0.0.1"}
config.set_section_config("Server", {"host": "192.168.1.1"})
assert dict(config.get_section_config("Server")) == {"host": "192.168.1.1"}
write_config(tmpdir, {
"Server": {
"host": "192.168.1.2"
}
})
2015-03-02 19:46:05 +00:00
config.reload()
assert dict(config.get_section_config("Server")) == {"host": "192.168.1.1"}