126c45e646
Signed-off-by: gardar <gardar@users.noreply.github.com>
51 lines
1.2 KiB
Python
51 lines
1.2 KiB
Python
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import os
|
|
import testinfra.utils.ansible_runner
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
|
|
|
|
|
|
def test_directories(host):
|
|
dirs = [
|
|
"/etc/grafana",
|
|
"/var/log/grafana",
|
|
"/var/lib/grafana",
|
|
"/var/lib/grafana/dashboards",
|
|
"/var/lib/grafana/plugins"
|
|
]
|
|
files = [
|
|
"/etc/grafana/grafana.ini"
|
|
]
|
|
for directory in dirs:
|
|
d = host.file(directory)
|
|
assert d.is_directory
|
|
assert d.exists
|
|
for file in files:
|
|
f = host.file(file)
|
|
assert f.exists
|
|
assert f.is_file
|
|
|
|
|
|
def test_service(host):
|
|
s = host.service("grafana-server")
|
|
# assert s.is_enabled
|
|
assert s.is_running
|
|
|
|
|
|
def test_packages(host):
|
|
p = host.package("grafana")
|
|
assert p.is_installed
|
|
|
|
|
|
def test_socket(host):
|
|
assert host.socket("tcp://0.0.0.0:3000").is_listening
|
|
|
|
|
|
def test_yum_repo(host):
|
|
if host.system_info.distribution in ['centos', 'redhat', 'fedora']:
|
|
f = host.file("/etc/yum.repos.d/grafana.repo")
|
|
assert f.exists
|