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.
81 lines
2.6 KiB
Bash
81 lines
2.6 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
source virtualenv.sh
|
|
|
|
# Run test if dependencies are installed
|
|
failed_dep_1=$(ansible localhost -m pip -a "name=redis>=2.4.5 state=present" "$@" | tee out.txt | grep -c 'FAILED!' || true)
|
|
cat out.txt
|
|
|
|
installed_redis=$(ansible localhost -m package -a "name=redis-server state=present" --become "$@" | tee out.txt | grep -c '"changed": true' || true)
|
|
failed_dep_2=$(grep out.txt -ce 'FAILED!' || true)
|
|
cat out.txt
|
|
|
|
started_redis=$(ansible localhost -m service -a "name=redis-server state=started" --become "$@" | tee out.txt | grep -c '"changed": true' || true)
|
|
failed_dep_3=$(grep out.txt -ce 'FAILED!' || true)
|
|
cat out.txt
|
|
|
|
CLEANUP_REDIS () { if [ "${installed_redis}" -eq 1 ] ; then ansible localhost -m package -a "name=redis-server state=absent" --become ; fi }
|
|
STOP_REDIS () { if [ "${installed_redis}" -ne 1 ] && [ "${started_redis}" -eq 1 ] ; then ansible localhost -m service -a "name=redis-server state=stopped" --become ; fi }
|
|
|
|
if [ "${failed_dep_1}" -eq 1 ] || [ "${failed_dep_2}" -eq 1 ] || [ "${failed_dep_3}" -eq 1 ] ; then
|
|
STOP_REDIS
|
|
CLEANUP_REDIS
|
|
exit 0
|
|
fi
|
|
|
|
export ANSIBLE_CACHE_PLUGIN=redis
|
|
export ANSIBLE_CACHE_PLUGIN_CONNECTION=localhost:6379:0
|
|
export ANSIBLE_CACHE_PLUGINS=./plugins/cache
|
|
|
|
# Use old redis for fact caching
|
|
count=$(ansible-playbook test_fact_gathering.yml -vvv 2>&1 "$@" | tee out.txt | grep -c 'Gathering Facts' || true)
|
|
failed_dep_version=$(grep out.txt -ce "'redis' python module (version 2.4.5 or newer) is required" || true)
|
|
cat out.txt
|
|
if [ "${failed_dep_version}" -eq 1 ] ; then
|
|
STOP_REDIS
|
|
CLEANUP_REDIS
|
|
exit 0
|
|
fi
|
|
if [ "${count}" -ne 1 ] ; then
|
|
STOP_REDIS
|
|
CLEANUP_REDIS
|
|
exit 1
|
|
fi
|
|
|
|
# Attempt to use old redis for inventory caching; should not work
|
|
export ANSIBLE_INVENTORY_CACHE=True
|
|
export ANSIBLE_INVENTORY_CACHE_PLUGIN=redis
|
|
export ANSIBLE_INVENTORY_ENABLED=test
|
|
export ANSIBLE_INVENTORY_PLUGINS=./plugins/inventory
|
|
|
|
ansible-inventory -i inventory_config --graph 2>&1 "$@" | tee out.txt | grep 'Cache options were provided but may not reconcile correctly unless set via set_options'
|
|
res=$?
|
|
cat out.txt
|
|
if [ "${res}" -eq 1 ] ; then
|
|
STOP_REDIS
|
|
CLEANUP_REDIS
|
|
exit 1
|
|
fi
|
|
|
|
# Use new style redis for fact caching
|
|
unset ANSIBLE_CACHE_PLUGINS
|
|
count=$(ansible-playbook test_fact_gathering.yml -vvv "$@" | tee out.txt | grep -c 'Gathering Facts' || true)
|
|
cat out.txt
|
|
if [ "${count}" -ne 1 ] ; then
|
|
STOP_REDIS
|
|
CLEANUP_REDIS
|
|
exit 1
|
|
fi
|
|
|
|
# Use new redis for inventory caching
|
|
ansible-inventory -i inventory_config --graph "$@" 2>&1 | tee out.txt | grep 'host2'
|
|
res=$?
|
|
cat out.txt
|
|
|
|
STOP_REDIS
|
|
CLEANUP_REDIS
|
|
|
|
exit $res
|