2020-04-22 13:09:52 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
|
|
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
|
|
|
|
|
|
|
|
|
|
|
|
def test_service(host):
|
|
|
|
svc = host.service("crio")
|
|
|
|
assert svc.is_running
|
|
|
|
assert svc.is_enabled
|
|
|
|
|
|
|
|
|
|
|
|
def test_run(host):
|
2020-04-24 08:18:07 +00:00
|
|
|
crictl = "/usr/local/bin/crictl"
|
2020-04-22 13:09:52 +00:00
|
|
|
path = "unix:///var/run/crio/crio.sock"
|
|
|
|
with host.sudo():
|
2020-04-24 08:18:07 +00:00
|
|
|
cmd = host.command(crictl + " --runtime-endpoint " + path + " version")
|
2020-04-22 13:09:52 +00:00
|
|
|
assert cmd.rc == 0
|
|
|
|
assert "RuntimeName: cri-o" in cmd.stdout
|