mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 12:57:52 +00:00
334f3e720e
Missing features: - https certificates - xqueue - lms/cms workers Moreover, we scalability issues due to the uploaded file storage in the lms/cms. To address this issue we need to develop the MinIO plugin so that it becomes compatible with Open edX. Close #126 #179 #187
64 lines
2.1 KiB
Python
64 lines
2.1 KiB
Python
import unittest
|
|
import unittest.mock
|
|
import tempfile
|
|
|
|
from tutor.commands import config as tutor_config
|
|
from tutor import env
|
|
|
|
|
|
class ConfigTests(unittest.TestCase):
|
|
def setUp(self):
|
|
# This is necessary to avoid cached mocks
|
|
env.Renderer.reset()
|
|
|
|
def test_version(self):
|
|
defaults = tutor_config.load_defaults()
|
|
self.assertNotIn("TUTOR_VERSION", defaults)
|
|
|
|
def test_merge(self):
|
|
config1 = {"x": "y"}
|
|
config2 = {"x": "z"}
|
|
tutor_config.merge(config1, config2)
|
|
self.assertEqual({"x": "y"}, config1)
|
|
|
|
def test_merge_render(self):
|
|
config = {}
|
|
defaults = tutor_config.load_defaults()
|
|
with unittest.mock.patch.object(
|
|
tutor_config.utils, "random_string", return_value="abcd"
|
|
):
|
|
tutor_config.merge(config, defaults)
|
|
|
|
self.assertEqual("abcd", config["MYSQL_ROOT_PASSWORD"])
|
|
|
|
@unittest.mock.patch.object(tutor_config.fmt, "echo")
|
|
def test_save_twice(self, _):
|
|
with tempfile.TemporaryDirectory() as root:
|
|
tutor_config.save(root, silent=True)
|
|
config1 = tutor_config.load_user(root)
|
|
|
|
tutor_config.save(root, silent=True)
|
|
config2 = tutor_config.load_user(root)
|
|
|
|
self.assertEqual(config1, config2)
|
|
|
|
@unittest.mock.patch.object(tutor_config.fmt, "echo")
|
|
def test_removed_entry_is_added_on_save(self, _):
|
|
with tempfile.TemporaryDirectory() as root:
|
|
with unittest.mock.patch.object(
|
|
tutor_config.utils, "random_string"
|
|
) as mock_random_string:
|
|
mock_random_string.return_value = "abcd"
|
|
config1, _ = tutor_config.load_all(root)
|
|
password1 = config1["MYSQL_ROOT_PASSWORD"]
|
|
|
|
config1.pop("MYSQL_ROOT_PASSWORD")
|
|
tutor_config.save_config(root, config1)
|
|
|
|
mock_random_string.return_value = "efgh"
|
|
config2, _ = tutor_config.load_all(root)
|
|
password2 = config2["MYSQL_ROOT_PASSWORD"]
|
|
|
|
self.assertEqual("abcd", password1)
|
|
self.assertEqual("efgh", password2)
|