mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.7 KiB
Bash
40 lines
1.7 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
set -eux -o pipefail
|
|
|
|
export ANSIBLE_DEPRECATION_WARNINGS=True
|
|
|
|
### check general config
|
|
|
|
# check for entry key valid, no deprecation
|
|
[ "$(ANSIBLE_CONFIG='entry_key_not_deprecated.cfg' ansible -m meta -a 'noop' localhost 2>&1 | grep -c 'DEPRECATION')" -eq "0" ]
|
|
|
|
# check for entry key deprecation, must be defined to trigger
|
|
[ "$(ANSIBLE_CONFIG='entry_key_deprecated.cfg' ansible -m meta -a 'noop' localhost 2>&1 | grep -c 'DEPRECATION')" -eq "1" ]
|
|
|
|
# check for deprecation of entry itself, must be consumed to trigger
|
|
[ "$(ANSIBLE_TEST_ENTRY2=1 ansible -m debug -a 'msg={{q("config", "_Z_TEST_ENTRY_2")}}' localhost 2>&1 | grep -c 'DEPRECATION')" -eq "1" ]
|
|
|
|
# check for entry deprecation, just need key defined to trigger
|
|
[ "$(ANSIBLE_CONFIG='entry_key_deprecated2.cfg' ansible -m meta -a 'noop' localhost 2>&1 | grep -c 'DEPRECATION')" -eq "1" ]
|
|
|
|
|
|
### check plugin config
|
|
|
|
# force use of the test plugin
|
|
export ANSIBLE_CACHE_PLUGIN_CONNECTION=/var/tmp
|
|
export ANSIBLE_CACHE_PLUGIN=notjsonfile
|
|
|
|
# check for plugin(s) config option and setting non deprecation
|
|
[ "$(ANSIBLE_CACHE_PLUGIN_TIMEOUT=1 ansible -m meta -a 'noop' localhost --playbook-dir ./ 2>&1 | grep -c 'DEPRECATION')" -eq "0" ]
|
|
|
|
# check for plugin(s) config option setting deprecation
|
|
[ "$(ANSIBLE_NOTJSON_CACHE_PLUGIN_TIMEOUT=1 ansible -m meta -a 'noop' localhost --playbook-dir ./ 2>&1 | grep -c 'DEPRECATION')" -eq "1" ]
|
|
|
|
# check for plugin(s) config option deprecation
|
|
[ "$(ANSIBLE_NOTJSON_CACHE_PLUGIN_REMOVEME=1 ansible -m meta -a 'noop' localhost --playbook-dir ./ 2>&1 | grep -c 'DEPRECATION')" -eq "1" ]
|
|
|
|
# TODO: check for module deprecation
|
|
# TODO: check for module option deprecation
|
|
# TODO: check for plugin deprecation
|