/
githubmirror
/
salt
Обзор
Документация
Войти
/
githubmirror
/
salt
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/integration/shell/test_spm.py
73 строки
2 KB
Pedro Algarvio
Update pre-commit hook versions
29 фев 2024, 15:30
Не верифицирован
29 фев 2024, 15:30
f454911
Код
Авторство
О чём код?
import os import pytest from tests.support.case import ShellCase, SPMCase @pytest.mark.windows_whitelisted class SPMTest(ShellCase, SPMCase): """ Test spm script """ @pytest.mark.slow_test def test_spm_help(self): """ test --help argument for spm """ expected_args = ["--version", "--assume-yes", "--help"] output = self.run_spm("--help") for arg in expected_args: self.assertIn(arg, "".join(output)) @pytest.mark.slow_test def test_spm_bad_arg(self): """ test correct output when bad argument passed """ expected_args = ["--version", "--assume-yes", "--help"] output = self.run_spm("doesnotexist") for arg in expected_args: self.assertIn(arg, "".join(output)) @pytest.mark.slow_test def test_spm_assume_yes(self): """ test spm install with -y arg """ config = self._spm_config(assume_yes=False) self._spm_build_files(config) spm_file = os.path.join(config["spm_build_dir"], "apache-201506-2.spm") build = self.run_spm(f"build {self.formula_dir} -c {self._tmp_spm}") install = self.run_spm(f"install {spm_file} -c {self._tmp_spm} -y") self.assertTrue( os.path.exists(os.path.join(config["formula_path"], "apache", "apache.sls")) ) @pytest.mark.slow_test def test_spm_force(self): """ test spm install with -f arg """ config = self._spm_config(assume_yes=False) self._spm_build_files(config) spm_file = os.path.join(config["spm_build_dir"], "apache-201506-2.spm") build = self.run_spm(f"build {self.formula_dir} -c {self._tmp_spm}") install = self.run_spm(f"install {spm_file} -c {self._tmp_spm} -y") self.assertTrue( os.path.exists(os.path.join(config["formula_path"], "apache", "apache.sls")) ) # check if it forces the install after its already been installed it install = self.run_spm(f"install {spm_file} -c {self._tmp_spm} -y -f") self.assertEqual(["... installing apache"], install)