TestInfraをテスト用に使用することができます。すべてはzabbix_agent_versionがgroup_varsからAnsible変数であるテストtestinfraで使用可能な変数を使用する
test.py
import pytest
def test_zabbix_agent_package(host):
package = host.package("zabbix-agent")
assert package.is_installed
package_version = host.ansible("debug", "msg={{ zabbix_agent_version }}")["msg"]
(...)
を実行している間Ansible自体を使用することを除いて罰金行きます。これは、テスト
pytest --connection=ansible --ansible-inventory=inventory --hosts=$hosts -v test.py
私が手
ansible.cfg
[defaults]
timeout = 10
host_key_checking = False
library=library/
retry_files_enabled = False
roles_path=roles/
pipelining=true
ConnectTimeout=60
remote_user=deploy
private_key_file=/opt/jenkins/.ssh/deploy
出力は
self = <ansible>, module_name = 'debug', module_args = 'msg={{ zabbix_agent_version }}', check = True, kwargs = {}
result = {'failed': True, 'msg': "the field 'args' has an invalid value, which appears to include a variable that is undefined. The error was: 'zabbix_agent_version' is undefined"}
def __call__(self, module_name, module_args=None, check=True, **kwargs):
if not self._host.backend.HAS_RUN_ANSIBLE:
raise RuntimeError((
"Ansible module is only available with ansible "
"connection backend"))
result = self._host.backend.run_ansible(
module_name, module_args, check=check, **kwargs)
if result.get("failed", False) is True:
> raise AnsibleException(result)
E AnsibleException: Unexpected error: {'failed': True,
E 'msg': u"the field 'args' has an invalid value, which appears to include a variable that is undefined. The error was: 'zabbix_agent_version' is undefined"}
/usr/lib/python2.7/site-packages/testinfra/modules/ansible.py:70: AnsibleException
任意のアイデア理由で実行この脚本
- hosts: all
become: true
tasks:
- name: debug
debug: msg={{ zabbix_agent_version }}
コマンドを実行することによって得ることができます不可能な場合、この変数は表示されませんtestinfraのAnsibleモジュールを走らせながら走っている間に走り回ることができますか? zabbix_agent_version
はgroup_vars
を使用して変数セットがある場合は、host.ansible.get_variables()
を使用してアクセスするのではなくdebug
タスクを実行する必要があるかのように
Ansibleバージョン2.2.1.0 Pythonのバージョン2.7.5 Testinfraバージョン手動Ansibleを実行しているとき 'zabbix_agent_version'が定義されている1.6.4 Pytestバージョン3.1.3 – FRC
?これはリモートホスト上のカスタムファクトから来るのでしょうか?これはローカル変数ファイルに設定されていますか? – larsks
zabbix_agent_versionはgroup_varsで定義されています。この事実をチェックするプレイブックを実行すると(デバッグ:msg = {{zabbix_agent_version}})、これはAnsibleが取得できます。 – FRC