1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
"""
Copyright © 2020-2025 Ralph Seichter
This file is part of "Fangfrisch".
Fangfrisch 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.
Fangfrisch 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 Fangfrisch. If not, see <https://www.gnu.org/licenses/>.
"""
import tempfile
import unittest
from fangfrisch.config import LOG_METHOD_CONSOLE
from fangfrisch.config import PREFIX
from fangfrisch.config.config import Configuration
from fangfrisch.config.config import means_disabled
from tests import FangfrischTest
from tests.test_log import FORMAT
from tests.test_log import LEVEL
SECTION = "sanesecurity"
class ConfigTests(FangfrischTest):
c: Configuration = None
def setUp(self) -> None:
self.c = Configuration()
def test_dump(self):
self.c.init()
file = tempfile.TemporaryFile(mode="w+t")
self.assertTrue(self.c.write(file))
file.close()
def test_sanesec_base_url(self):
self.c.init()
self.assertIsNotNone(self.c.get(SECTION, PREFIX))
def test_sanesec_unknown(self):
self.c.init()
self.assertIsNone(self.c.get(SECTION, self.UNKNOWN))
def test_unknown_section(self):
self.c.init()
self.assertIsNone(self.c.get(self.UNKNOWN, PREFIX))
def test_missing_file(self):
self.assertFalse(self.c.init(self.UNKNOWN))
def test_local_dir(self):
self.c.init(self.CONF)
self.assertEqual(self.TMPDIR, self.c.local_dir(self.UNITTEST))
def test_integrity_check(self):
self.c.init(self.CONF)
self.assertEqual("sha256", self.c.integrity_check(self.UNITTEST))
def test_sections(self):
self.c.init(self.CONF)
s = self.c.sections()
self.assertIn(self.UNITTEST, s)
def test_timeout(self):
self.c.init(self.CONF)
self.assertEqual(5, self.c.on_update_timeout(self.UNITTEST))
def test_interval(self):
self.c.init(self.CONF)
self.assertEqual(60, self.c.interval(SECTION))
def test_disabled_none(self):
self.assertFalse(means_disabled(None))
def test_disabled_yes(self):
self.assertFalse(means_disabled("yes"))
def test_disabled_no(self):
self.assertTrue(means_disabled("no"))
def test_log_format(self):
self.c.init(self.CONF)
self.assertEqual(FORMAT, self.c.log_format())
def test_log_level(self):
self.c.init(self.CONF)
self.assertEqual(LEVEL, self.c.log_level())
def test_log_method(self):
self.c.init(self.CONF)
self.assertEqual(LOG_METHOD_CONSOLE, self.c.log_method())
def test_on_update_exec(self):
self.c.init(self.CONF)
self.assertEqual("echo on_update_exec", self.c.on_update_exec())
def test_on_update_exec2(self):
self.c.init(self.CONF)
self.assertEqual("echo overridden", self.c.on_update_exec(section="unittest2"))
def test_on_update_timeout(self):
self.c.init(self.CONF)
self.assertEqual(5, self.c.on_update_timeout())
def test_on_update_timeout2(self):
self.c.init(self.CONF)
self.assertEqual(6, self.c.on_update_timeout(section="unittest2"))
def test_log_target(self):
self.c.init(self.CONF)
self.assertEqual(self.UNITTEST, self.c.log_target())
def test_conn_timeout1(self):
self.c.init(self.CONF)
self.assertEqual(9, self.c.connection_timeout())
if __name__ == "__main__":
unittest.main()
|