/
githubmirror
/
salt
Обзор
Документация
Войти
/
githubmirror
/
salt
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/unit/utils/test_extend.py
51 строка
2 KB
Pedro Algarvio
Update pre-commit hook versions
29 фев 2024, 15:30
Не верифицирован
29 фев 2024, 15:30
f454911
Код
Авторство
О чём код?
""" tests.unit.utils.extend_test ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Test the salt extend script, leave templates/test alone to keep this working! """ import os import shutil from datetime import date import pytest import salt.utils.extend import salt.utils.files from tests.support.mock import MagicMock, patch from tests.support.runtests import RUNTIME_VARS from tests.support.unit import TestCase class ExtendTestCase(TestCase): def setUp(self): self.starting_dir = os.getcwd() os.chdir(RUNTIME_VARS.CODE_DIR) self.out = None def tearDown(self): if self.out is not None: if os.path.exists(self.out): shutil.rmtree(self.out, True) os.chdir(self.starting_dir) @pytest.mark.skipif( not os.path.exists(os.path.join(RUNTIME_VARS.CODE_DIR, "templates")), reason="Test template directory 'templates/' missing.", ) def test_run(self): with patch("sys.exit", MagicMock): out = salt.utils.extend.run( "test", "test", "this description", RUNTIME_VARS.CODE_DIR, False ) self.out = out year = date.today().strftime("%Y") self.assertTrue(os.path.exists(out)) self.assertFalse(os.path.exists(os.path.join(out, "template.yml"))) self.assertTrue(os.path.exists(os.path.join(out, "directory"))) self.assertTrue(os.path.exists(os.path.join(out, "directory", "test.py"))) with salt.utils.files.fopen( os.path.join(out, "directory", "test.py"), "r" ) as test_f: self.assertEqual(test_f.read(), year)