mirror of
https://github.com/saltstack/salt.git
synced 2025-04-10 23:01:39 +00:00
36 lines
897 B
Python
36 lines
897 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def install():
|
|
pytest.helpers.clean_env()
|
|
# Create an existing config
|
|
pytest.helpers.existing_config()
|
|
args = ["/S"]
|
|
pytest.helpers.install_salt(args)
|
|
yield args
|
|
pytest.helpers.clean_env()
|
|
|
|
|
|
def test_binaries_present(install):
|
|
# This will show the contents of the directory on failure
|
|
inst_dir = pytest.INST_DIR
|
|
inst_dir_exists = os.path.exists(inst_dir)
|
|
dir_contents = os.listdir(inst_dir)
|
|
assert os.path.exists(rf"{inst_dir}\ssm.exe")
|
|
|
|
|
|
def test_config_present(install):
|
|
assert os.path.exists(rf"{pytest.DATA_DIR}\conf\minion")
|
|
|
|
|
|
def test_config_correct(install):
|
|
# The config file should be the existing config, unchanged
|
|
expected = pytest.EXISTING_CONTENT
|
|
|
|
with open(rf"{pytest.DATA_DIR}\conf\minion") as f:
|
|
result = f.readlines()
|
|
|
|
assert result == expected
|