mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2025-12-06 07:12:04 +01:00
104 lines
4.3 KiB
Python
104 lines
4.3 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
"""!
|
|
____ ____ ______ __ __ __ _____
|
|
/ __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ /
|
|
/ __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ /_ <
|
|
/ /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ /
|
|
/_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ /____/
|
|
German BOS Information Script
|
|
by Bastian Schroll
|
|
|
|
@file: test_config.py
|
|
@date: 08.01.2017
|
|
@author: Bastian Schroll
|
|
@description: Unittests for BOSWatch. File must be _run as "pytest" unittest
|
|
"""
|
|
import logging
|
|
|
|
from boswatch.utils import paths
|
|
from boswatch import configYaml
|
|
|
|
# FIXME complete tests
|
|
|
|
|
|
class Test_Config:
|
|
"""!Unittests for the config"""
|
|
|
|
def setup_method(self, method):
|
|
logging.debug("[TEST] %s.%s", type(self).__name__, method.__name__)
|
|
|
|
def test_loadLocalConfig(self):
|
|
"""!load a local config file"""
|
|
bwConfig = configYaml.loadConfigFile(paths.TEST_PATH + "test.yaml")
|
|
assert bwConfig is not None
|
|
|
|
def test_getLocalConfig(self):
|
|
"""!get values from local config file"""
|
|
bwConfig = configYaml.loadConfigFile(paths.TEST_PATH + "test.yaml")
|
|
assert bwConfig["types"]["integer"] == 11
|
|
assert bwConfig["types"]["boolean"] is True
|
|
|
|
def test_getLocalConfigFailed(self):
|
|
"""!fail while get values from local config file"""
|
|
bwConfig = configYaml.loadConfigFile(paths.TEST_PATH + "test.yaml")
|
|
assert bwConfig["test"]["abc"] is None
|
|
assert bwConfig["abc"]["test"] is None
|
|
|
|
def test_shareConfig(self):
|
|
"""!load local config file and share it"""
|
|
configYaml.loadConfigFile(paths.TEST_PATH + "test.yaml", "test_shareConfig")
|
|
assert configYaml.loadConfigSharepoint("test_shareConfig") is not None
|
|
|
|
# def test_shareConfigUsed(self):
|
|
# """!load local config file and tr to share it twice with same name"""
|
|
# bwConfig1 = Config()
|
|
# bwConfig1.loadConfigFile(paths.TEST_PATH + "test.yaml", "test_shareConfigUsed")
|
|
# assert bwConfig1._sharePoints["test_shareConfigUsed"] is not None
|
|
# bwConfig2 = Config()
|
|
# bwConfig2.loadConfigFile(paths.TEST_PATH + "test.yaml")
|
|
# assert not bwConfig2._shareConfig("test_shareConfigUsed")
|
|
#
|
|
# def test_getNotSetSharedConfig(self):
|
|
# """!try to get values from shared config where not exists"""
|
|
# bwConfig = Config()
|
|
# bwConfig.loadConfigFile(paths.TEST_PATH + "test.yaml")
|
|
# assert bwConfig.getInt("test", "one") == 1
|
|
# assert bwConfig.getInt("test", "one", "NotSetSharedConfig") is None
|
|
#
|
|
# def test_getSharedConfig(self):
|
|
# """!get values from shared config file"""
|
|
# bwConfig1 = Config()
|
|
# bwConfig1.loadConfigFile(paths.TEST_PATH + "test.yaml", "test_getSharedConfig")
|
|
# assert bwConfig1._sharePoints["test_getSharedConfig"] is not None
|
|
#
|
|
# bwConfig2 = Config()
|
|
# assert bwConfig2.getStr("test", "one") is None
|
|
# assert bwConfig2.getInt("test", "one", "test_getSharedConfig") == 1
|
|
#
|
|
# def test_getSharedConfigFailed(self):
|
|
# """!fail while get values from shared config file"""
|
|
# bwConfig1 = Config()
|
|
# bwConfig1.loadConfigFile(paths.TEST_PATH + "test.yaml", "test_getSharedConfigFailed")
|
|
# assert bwConfig1._sharePoints["test_getSharedConfigFailed"] is not None
|
|
#
|
|
# bwConfig2 = Config()
|
|
# assert bwConfig2.getStr("test", "abc", "test_getSharedConfigFailed") is None
|
|
# assert bwConfig2.getStr("abc", "test", "test_getSharedConfigFailed") is None
|
|
#
|
|
# def test_getDataTypes(self):
|
|
# bwConfig = Config()
|
|
# bwConfig.loadConfigFile(paths.TEST_PATH + "test.yaml")
|
|
# assert bwConfig.getStr("testcase", "test") == "ok"
|
|
# assert bwConfig.getInt("test", "one") == 1
|
|
# assert bwConfig.getInt("boolTest", "three") == 0
|
|
# assert bwConfig.getBool("boolTest", "one")
|
|
# assert bwConfig.getBool("boolTest", "two")
|
|
# assert not bwConfig.getBool("boolTest", "three")
|
|
# assert not bwConfig.getBool("boolTest", "four")
|
|
#
|
|
# def test_getAllSharepoints(self):
|
|
# bwConfig = Config()
|
|
# bwConfig.loadConfigFile(paths.TEST_PATH + "test.yaml", "test_shareConfig")
|
|
# assert bwConfig.getAllSharepoints() is not None
|