blob: 078c653e7b2f386f67d77e570933eb9bff5f506e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import os
import pytest
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('nfs-server')
@pytest.mark.parametrize('svc', [
'rpcbind',
'nfs-server'
])
def test_svc(host, svc):
service = host.service(svc)
assert service.is_running
assert service.is_enabled
def test_exports(host):
f = host.file("/etc/exports")
assert f.exists
assert f.content_string == \
"""/dockerdata-nfs kubernetes-node-2(rw,sync,no_root_squash,no_subtree_check)""" # noqa: E501
|