manage_pip_packages/molecule/default/tests/test_default.py

31 lines
1.1 KiB
Python
Raw Normal View History

2023-03-14 22:23:33 +00:00
"""Role testing files using testinfra."""
def test_hosts_file(host):
"""Validate /etc/hosts file."""
2023-03-16 21:18:20 +00:00
etc_hosts = host.file("/etc/hosts")
assert etc_hosts.exists
assert etc_hosts.user == "root"
assert etc_hosts.group == "root"
2023-03-14 22:23:33 +00:00
2023-03-16 21:18:20 +00:00
def test_python_pip_packages_installed(host):
"""Validate python3 and pip are installed"""
apt_package_python3 = host.package("python3")
apt_package_pip = host.package("python3-pip")
assert apt_package_python3.is_installed
assert apt_package_pip.is_installed
def test_pip_installed_latest(host):
"""Validate pip is installed and up-to-date"""
pip_packages_list = host.pip.get_packages(pip_path='pip')
pip_outdated_list = host.pip.get_outdated_packages(pip_path='pip')
assert 'pip' in pip_packages_list
assert 'pip' not in pip_outdated_list
2023-03-16 21:18:20 +00:00
def test_packages_not_installed(host):
"""Validate docker, yamllint and vault-cli are not installed"""
pip_packages_list = host.pip.get_packages(pip_path='pip')
assert 'docker' not in pip_packages_list
assert 'yamllint' not in pip_packages_list
assert 'vault-cli' not in pip_packages_list