mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-11 07:41:02 +00:00
0d997c9479
These changes make to possible to run: tutor mounts add /path/to/my-xblock The xblock directory with then be auto-magically bind-mounted in the "openedx" image at build time, and the lms*/cms* containers at run time. This makes it effectively possible to work as a developer on edx-platform requirements. We take the opportunity to move some openedx-specific code to a dedicated module. Close https://github.com/openedx/wg-developer-experience/issues/177
59 lines
2.0 KiB
Python
59 lines
2.0 KiB
Python
from __future__ import annotations
|
|
|
|
import unittest
|
|
|
|
from tutor import bindmount
|
|
|
|
|
|
class BindmountTests(unittest.TestCase):
|
|
def test_parse_explicit(self) -> None:
|
|
self.assertEqual(
|
|
[("lms", "/path/to/edx-platform", "/openedx/edx-platform")],
|
|
bindmount.parse_explicit_mount(
|
|
"lms:/path/to/edx-platform:/openedx/edx-platform"
|
|
),
|
|
)
|
|
self.assertEqual(
|
|
[
|
|
("lms", "/path/to/edx-platform", "/openedx/edx-platform"),
|
|
("cms", "/path/to/edx-platform", "/openedx/edx-platform"),
|
|
],
|
|
bindmount.parse_explicit_mount(
|
|
"lms,cms:/path/to/edx-platform:/openedx/edx-platform"
|
|
),
|
|
)
|
|
self.assertEqual(
|
|
[
|
|
("lms", "/path/to/edx-platform", "/openedx/edx-platform"),
|
|
("cms", "/path/to/edx-platform", "/openedx/edx-platform"),
|
|
],
|
|
bindmount.parse_explicit_mount(
|
|
"lms, cms:/path/to/edx-platform:/openedx/edx-platform"
|
|
),
|
|
)
|
|
self.assertEqual(
|
|
[
|
|
("lms", "/path/to/edx-platform", "/openedx/edx-platform"),
|
|
("lms-worker", "/path/to/edx-platform", "/openedx/edx-platform"),
|
|
],
|
|
bindmount.parse_explicit_mount(
|
|
"lms,lms-worker:/path/to/edx-platform:/openedx/edx-platform"
|
|
),
|
|
)
|
|
self.assertEqual(
|
|
[("lms", "/path/to/edx-platform", "/openedx/edx-platform")],
|
|
bindmount.parse_explicit_mount(
|
|
"lms,:/path/to/edx-platform:/openedx/edx-platform"
|
|
),
|
|
)
|
|
|
|
def test_parse_implicit(self) -> None:
|
|
# Import module to make sure filter is created
|
|
# pylint: disable=import-outside-toplevel,unused-import
|
|
import tutor.commands.compose
|
|
|
|
self.assertEqual(
|
|
[("openedx", "/path/to/edx-platform", "/openedx/edx-platform")],
|
|
bindmount.parse_implicit_mount("/path/to/edx-platform"),
|
|
)
|