2019-07-02 20:16:44 +00:00
|
|
|
import os
|
2019-05-11 22:11:44 +00:00
|
|
|
import tempfile
|
2019-05-11 17:31:18 +00:00
|
|
|
import unittest
|
2019-05-11 22:10:14 +00:00
|
|
|
import unittest.mock
|
2019-05-11 17:31:18 +00:00
|
|
|
|
2019-06-03 22:44:12 +00:00
|
|
|
from tutor import config as tutor_config
|
2019-05-11 17:31:18 +00:00
|
|
|
from tutor import env
|
2020-01-16 10:52:53 +00:00
|
|
|
from tutor import fmt
|
2019-05-11 17:31:18 +00:00
|
|
|
from tutor import exceptions
|
|
|
|
|
|
|
|
|
|
|
|
class EnvTests(unittest.TestCase):
|
2019-07-02 20:16:44 +00:00
|
|
|
def setUp(self):
|
|
|
|
env.Renderer.reset()
|
|
|
|
|
2019-05-11 17:31:18 +00:00
|
|
|
def test_walk_templates(self):
|
2020-01-16 10:52:53 +00:00
|
|
|
renderer = env.Renderer({}, [env.TEMPLATES_ROOT])
|
|
|
|
templates = list(renderer.walk_templates("local"))
|
2019-05-11 17:31:18 +00:00
|
|
|
self.assertIn("local/docker-compose.yml", templates)
|
|
|
|
|
2020-01-16 10:52:53 +00:00
|
|
|
def test_walk_templates_partials_are_ignored(self):
|
|
|
|
template_name = "apps/openedx/settings/partials/common_all.py"
|
2020-01-16 21:25:57 +00:00
|
|
|
renderer = env.Renderer({}, [env.TEMPLATES_ROOT], ignore_folders=["partials"])
|
2020-01-16 10:52:53 +00:00
|
|
|
templates = list(renderer.walk_templates("apps"))
|
|
|
|
self.assertIn(template_name, renderer.environment.loader.list_templates())
|
|
|
|
self.assertNotIn(template_name, templates)
|
|
|
|
|
2020-01-16 14:40:38 +00:00
|
|
|
def test_is_binary_file(self):
|
|
|
|
self.assertTrue(env.is_binary_file("/home/somefile.ico"))
|
|
|
|
|
|
|
|
def test_find_path(self):
|
|
|
|
renderer = env.Renderer({}, [env.TEMPLATES_ROOT])
|
|
|
|
path = renderer.find_path("local/docker-compose.yml")
|
|
|
|
self.assertTrue(os.path.exists(path))
|
|
|
|
|
2019-05-11 17:31:18 +00:00
|
|
|
def test_pathjoin(self):
|
|
|
|
self.assertEqual(
|
|
|
|
"/tmp/env/target/dummy", env.pathjoin("/tmp", "target", "dummy")
|
|
|
|
)
|
|
|
|
self.assertEqual("/tmp/env/dummy", env.pathjoin("/tmp", "dummy"))
|
|
|
|
|
|
|
|
def test_render_str(self):
|
|
|
|
self.assertEqual(
|
|
|
|
"hello world", env.render_str({"name": "world"}, "hello {{ name }}")
|
|
|
|
)
|
|
|
|
|
2019-05-21 10:34:29 +00:00
|
|
|
def test_common_domain(self):
|
|
|
|
self.assertEqual(
|
|
|
|
"mydomain.com",
|
|
|
|
env.render_str(
|
|
|
|
{"d1": "d1.mydomain.com", "d2": "d2.mydomain.com"},
|
|
|
|
"{{ d1|common_domain(d2) }}",
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
2019-05-11 17:31:18 +00:00
|
|
|
def test_render_str_missing_configuration(self):
|
|
|
|
self.assertRaises(exceptions.TutorError, env.render_str, {}, "hello {{ name }}")
|
2019-05-11 22:11:44 +00:00
|
|
|
|
|
|
|
def test_render_file(self):
|
|
|
|
config = {}
|
|
|
|
tutor_config.merge(config, tutor_config.load_defaults())
|
|
|
|
config["MYSQL_ROOT_PASSWORD"] = "testpassword"
|
2019-09-03 08:36:10 +00:00
|
|
|
rendered = env.render_file(config, "hooks", "mysql", "init")
|
2019-05-11 22:11:44 +00:00
|
|
|
self.assertIn("testpassword", rendered)
|
|
|
|
|
2019-05-11 22:10:14 +00:00
|
|
|
@unittest.mock.patch.object(tutor_config.fmt, "echo")
|
|
|
|
def test_render_file_missing_configuration(self, _):
|
2019-05-11 22:11:44 +00:00
|
|
|
self.assertRaises(
|
|
|
|
exceptions.TutorError, env.render_file, {}, "local", "docker-compose.yml"
|
|
|
|
)
|
2019-05-20 17:09:58 +00:00
|
|
|
|
2020-01-16 10:52:53 +00:00
|
|
|
def test_save_full(self):
|
2019-05-21 10:34:29 +00:00
|
|
|
defaults = tutor_config.load_defaults()
|
|
|
|
with tempfile.TemporaryDirectory() as root:
|
2019-12-24 16:22:12 +00:00
|
|
|
config = tutor_config.load_current(root, defaults)
|
|
|
|
tutor_config.merge(config, defaults)
|
2020-01-16 10:52:53 +00:00
|
|
|
with unittest.mock.patch.object(fmt, "STDOUT"):
|
2019-12-24 16:22:12 +00:00
|
|
|
env.save(root, config)
|
2019-07-02 20:16:44 +00:00
|
|
|
self.assertTrue(
|
|
|
|
os.path.exists(os.path.join(root, "env", "local", "docker-compose.yml"))
|
|
|
|
)
|
2019-05-21 10:34:29 +00:00
|
|
|
|
2020-01-16 10:52:53 +00:00
|
|
|
def test_save_full_with_https(self):
|
2019-05-21 10:34:29 +00:00
|
|
|
defaults = tutor_config.load_defaults()
|
2019-05-20 17:09:58 +00:00
|
|
|
with tempfile.TemporaryDirectory() as root:
|
2019-12-24 16:22:12 +00:00
|
|
|
config = tutor_config.load_current(root, defaults)
|
|
|
|
tutor_config.merge(config, defaults)
|
|
|
|
config["ACTIVATE_HTTPS"] = True
|
2020-01-16 10:52:53 +00:00
|
|
|
with unittest.mock.patch.object(fmt, "STDOUT"):
|
2019-12-24 16:22:12 +00:00
|
|
|
env.save(root, config)
|
2020-01-16 10:52:53 +00:00
|
|
|
with open(os.path.join(root, "env", "apps", "nginx", "lms.conf")) as f:
|
|
|
|
self.assertIn("ssl", f.read())
|
2019-05-29 09:14:06 +00:00
|
|
|
|
|
|
|
def test_patch(self):
|
|
|
|
patches = {"plugin1": "abcd", "plugin2": "efgh"}
|
|
|
|
with unittest.mock.patch.object(
|
|
|
|
env.plugins, "iter_patches", return_value=patches.items()
|
|
|
|
) as mock_iter_patches:
|
|
|
|
rendered = env.render_str({}, '{{ patch("location") }}')
|
|
|
|
mock_iter_patches.assert_called_once_with({}, "location")
|
|
|
|
self.assertEqual("abcd\nefgh", rendered)
|
|
|
|
|
|
|
|
def test_patch_separator_suffix(self):
|
|
|
|
patches = {"plugin1": "abcd", "plugin2": "efgh"}
|
|
|
|
with unittest.mock.patch.object(
|
|
|
|
env.plugins, "iter_patches", return_value=patches.items()
|
2019-06-03 22:44:12 +00:00
|
|
|
):
|
2019-05-29 09:14:06 +00:00
|
|
|
rendered = env.render_str(
|
|
|
|
{}, '{{ patch("location", separator=",\n", suffix=",") }}'
|
|
|
|
)
|
|
|
|
self.assertEqual("abcd,\nefgh,", rendered)
|
2019-07-02 20:16:44 +00:00
|
|
|
|
|
|
|
def test_plugin_templates(self):
|
|
|
|
with tempfile.TemporaryDirectory() as plugin_templates:
|
2020-01-16 10:52:53 +00:00
|
|
|
# Create plugin
|
|
|
|
plugin1 = env.plugins.DictPlugin(
|
|
|
|
{"name": "plugin1", "version": "0", "templates": plugin_templates}
|
|
|
|
)
|
|
|
|
|
2019-07-02 20:16:44 +00:00
|
|
|
# Create two templates
|
|
|
|
os.makedirs(os.path.join(plugin_templates, "plugin1", "apps"))
|
|
|
|
with open(
|
|
|
|
os.path.join(plugin_templates, "plugin1", "unrendered.txt"), "w"
|
|
|
|
) as f:
|
|
|
|
f.write("This file should not be rendered")
|
|
|
|
with open(
|
|
|
|
os.path.join(plugin_templates, "plugin1", "apps", "rendered.txt"), "w"
|
|
|
|
) as f:
|
|
|
|
f.write("Hello my ID is {{ ID }}")
|
|
|
|
|
|
|
|
# Create configuration
|
|
|
|
config = {"ID": "abcd"}
|
|
|
|
|
2020-01-16 10:52:53 +00:00
|
|
|
# Render templates
|
2019-07-02 20:16:44 +00:00
|
|
|
with unittest.mock.patch.object(
|
2020-01-16 10:52:53 +00:00
|
|
|
env.plugins, "iter_enabled", return_value=[plugin1],
|
2019-07-02 20:16:44 +00:00
|
|
|
):
|
|
|
|
with tempfile.TemporaryDirectory() as root:
|
|
|
|
# Render plugin templates
|
2020-01-16 10:52:53 +00:00
|
|
|
env.save_plugin_templates(plugin1, root, config)
|
2019-07-02 20:16:44 +00:00
|
|
|
|
|
|
|
# Check that plugin template was rendered
|
|
|
|
dst_unrendered = os.path.join(
|
|
|
|
root, "env", "plugins", "plugin1", "unrendered.txt"
|
|
|
|
)
|
|
|
|
dst_rendered = os.path.join(
|
|
|
|
root, "env", "plugins", "plugin1", "apps", "rendered.txt"
|
|
|
|
)
|
|
|
|
self.assertFalse(os.path.exists(dst_unrendered))
|
|
|
|
self.assertTrue(os.path.exists(dst_rendered))
|
|
|
|
with open(dst_rendered) as f:
|
|
|
|
self.assertEqual("Hello my ID is abcd", f.read())
|
2019-07-10 08:20:43 +00:00
|
|
|
|
|
|
|
def test_renderer_is_reset_on_config_change(self):
|
2019-08-20 15:46:53 +00:00
|
|
|
with tempfile.TemporaryDirectory() as plugin_templates:
|
2020-01-16 10:52:53 +00:00
|
|
|
plugin1 = env.plugins.DictPlugin(
|
|
|
|
{"name": "plugin1", "version": "0", "templates": plugin_templates}
|
|
|
|
)
|
2019-08-20 15:46:53 +00:00
|
|
|
# Create one template
|
2020-01-16 10:52:53 +00:00
|
|
|
os.makedirs(os.path.join(plugin_templates, plugin1.name))
|
|
|
|
with open(
|
|
|
|
os.path.join(plugin_templates, plugin1.name, "myplugin.txt"), "w"
|
|
|
|
) as f:
|
2019-08-20 15:46:53 +00:00
|
|
|
f.write("some content")
|
|
|
|
|
2020-01-16 10:52:53 +00:00
|
|
|
# Load env once
|
|
|
|
config = {"PLUGINS": []}
|
|
|
|
env1 = env.Renderer.instance(config).environment
|
|
|
|
|
|
|
|
with unittest.mock.patch.object(
|
|
|
|
env.plugins, "iter_enabled", return_value=[plugin1],
|
|
|
|
):
|
|
|
|
# Load env a second time
|
|
|
|
config["PLUGINS"].append("myplugin")
|
|
|
|
env2 = env.Renderer.instance(config).environment
|
|
|
|
|
|
|
|
self.assertNotIn("plugin1/myplugin.txt", env1.loader.list_templates())
|
|
|
|
self.assertIn("plugin1/myplugin.txt", env2.loader.list_templates())
|