- Add mock-specific build artifacts (chroot/, mock-*, mockroot/) - Include package build files (*.deb, *.changes, *.buildinfo) - Add development tools (.coverage, .pytest_cache, .tox) - Include system files (.DS_Store, Thumbs.db, ._*) - Add temporary and backup files (*.tmp, *.bak, *.backup) - Include local configuration overrides (config.local.yaml, .env.local) - Add test artifacts and documentation builds - Comprehensive coverage for Python build system project This ensures build artifacts, chroot environments, and development tools are properly ignored in version control.
24 lines
955 B
Python
24 lines
955 B
Python
""" Tests for buildroot.py """
|
|
|
|
from unittest.mock import MagicMock
|
|
from mockbuild import util, buildroot
|
|
|
|
|
|
def test_module_config():
|
|
""" test _module_commands_from_config method """
|
|
def _check(config, output):
|
|
assert buildroot.Buildroot._module_commands_from_config(config) \
|
|
== output
|
|
_check([("enable", "module:stream")],
|
|
[["module", "enable", "module:stream"]])
|
|
_check([("enable", "module:stream, module2:stream2")],
|
|
[["module", "enable", "module:stream", "module2:stream2"]])
|
|
_check([("disable", "module:*,module2:*"),
|
|
("enable", "module:stream, module2:stream2"),
|
|
("install", "pg:12")],
|
|
[["module", "disable", "module:*", "module2:*"],
|
|
["module", "enable", "module:stream", "module2:stream2"],
|
|
["module", "install", "pg:12"]])
|
|
|
|
_check([("info", "")], [["module", "info"]])
|
|
_check([("info", None)], [["module", "info"]])
|