2018-01-19 17:23:48 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
|
|
|
export ANSIBLE_ROLES_PATH=./roles
|
|
|
|
|
2018-04-11 23:08:33 +02:00
|
|
|
function gen_task_files() {
|
|
|
|
for i in $(seq -f '%03g' 1 39); do
|
|
|
|
echo -e "- name: Hello Message\n debug:\n msg: Task file ${i}" > "tasks/hello/tasks-file-${i}.yml"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2018-01-19 17:23:48 +01:00
|
|
|
## Import (static)
|
|
|
|
|
|
|
|
# Playbook
|
2018-05-03 06:56:42 +02:00
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook playbook/test_import_playbook.yml -i ../../inventory "$@"
|
|
|
|
ANSIBLE_STRATEGY='free' ansible-playbook playbook/test_import_playbook.yml -i ../../inventory "$@"
|
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook playbook/test_import_playbook_tags.yml -i ../../inventory "$@" --tags canary1,canary22,validate --skip-tags skipme
|
2018-01-19 17:23:48 +01:00
|
|
|
|
|
|
|
# Tasks
|
2018-05-03 06:56:42 +02:00
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook tasks/test_import_tasks.yml -i ../../inventory "$@"
|
|
|
|
ANSIBLE_STRATEGY='free' ansible-playbook tasks/test_import_tasks.yml -i ../../inventory "$@"
|
|
|
|
ANSIBLE_STRATEGY='free' ansible-playbook tasks/test_import_tasks_tags.yml -i ../../inventory "$@" --tags tasks1,canary1,validate
|
2018-01-19 17:23:48 +01:00
|
|
|
|
|
|
|
# Role
|
2018-05-03 06:56:42 +02:00
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook role/test_import_role.yml -i ../../inventory "$@"
|
|
|
|
ANSIBLE_STRATEGY='free' ansible-playbook role/test_import_role.yml -i ../../inventory "$@"
|
2018-01-19 17:23:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
## Include (dynamic)
|
|
|
|
|
|
|
|
# Tasks
|
2018-05-03 06:56:42 +02:00
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook tasks/test_include_tasks.yml -i ../../inventory "$@"
|
|
|
|
ANSIBLE_STRATEGY='free' ansible-playbook tasks/test_include_tasks.yml -i ../../inventory "$@"
|
|
|
|
ANSIBLE_STRATEGY='free' ansible-playbook tasks/test_include_tasks_tags.yml -i ../../inventory "$@" --tags tasks1,canary1,validate
|
2018-01-19 17:23:48 +01:00
|
|
|
|
|
|
|
# Role
|
2018-05-03 06:56:42 +02:00
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook role/test_include_role.yml -i ../../inventory "$@"
|
|
|
|
ANSIBLE_STRATEGY='free' ansible-playbook role/test_include_role.yml -i ../../inventory "$@"
|
2018-01-19 17:23:48 +01:00
|
|
|
|
|
|
|
|
2018-04-11 23:08:33 +02:00
|
|
|
## Max Recursion Depth
|
2018-01-19 17:23:48 +01:00
|
|
|
# https://github.com/ansible/ansible/issues/23609
|
2018-05-03 06:56:42 +02:00
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook test_role_recursion.yml -i ../../inventory "$@"
|
2018-01-31 14:35:06 +01:00
|
|
|
|
|
|
|
## Nested tasks
|
|
|
|
# https://github.com/ansible/ansible/issues/34782
|
2018-05-03 06:56:42 +02:00
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook test_nested_tasks.yml -i ../../inventory "$@"
|
|
|
|
ANSIBLE_STRATEGY='free' ansible-playbook test_nested_tasks.yml -i ../../inventory "$@"
|
2018-04-11 23:08:33 +02:00
|
|
|
|
|
|
|
## Tons of top level include_tasks
|
|
|
|
# https://github.com/ansible/ansible/issues/36053
|
|
|
|
# Fixed by https://github.com/ansible/ansible/pull/36075
|
|
|
|
gen_task_files
|
2018-05-03 06:56:42 +02:00
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook test_copious_include_tasks.yml -i ../../inventory "$@"
|
|
|
|
ANSIBLE_STRATEGY='free' ansible-playbook test_copious_include_tasks.yml -i ../../inventory "$@"
|
2018-04-11 23:08:33 +02:00
|
|
|
rm -f tasks/hello/*.yml
|
2018-04-16 23:46:47 +02:00
|
|
|
|
|
|
|
# Inlcuded tasks should inherit attrs from non-dynamic blocks in parent chain
|
|
|
|
# https://github.com/ansible/ansible/pull/38827
|
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook test_grandparent_inheritance.yml -i ../../inventory "$@"
|
2018-04-26 20:39:44 +02:00
|
|
|
|
|
|
|
# undefined_var
|
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook undefined_var/playbook.yml -i ../../inventory "$@"
|
|
|
|
ANSIBLE_STRATEGY='free' ansible-playbook undefined_var/playbook.yml -i ../../inventory "$@"
|
2018-04-26 21:25:02 +02:00
|
|
|
|
2018-05-31 19:08:38 +02:00
|
|
|
# include_ + apply (explicit inheritance)
|
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook apply/include_apply.yml -i ../../inventory "$@" --tags foo
|
|
|
|
set +e
|
|
|
|
OUT=$(ANSIBLE_STRATEGY='linear' ansible-playbook apply/import_apply.yml -i ../../inventory "$@" --tags foo 2>&1 | grep 'ERROR! Invalid options for import_tasks: apply')
|
|
|
|
set -e
|
|
|
|
if [[ -z "$OUT" ]]; then
|
|
|
|
echo "apply on import_tasks did not cause error"
|
|
|
|
exit 1
|
|
|
|
fi
|
2018-06-08 22:36:22 +02:00
|
|
|
|
|
|
|
# Test that duplicate items in loop are not deduped
|
|
|
|
ANSIBLE_STRATEGY='linear' ansible-playbook tasks/test_include_dupe_loop.yml -i ../../inventory "$@" | tee test_include_dupe_loop.out
|
2018-07-09 17:27:00 +02:00
|
|
|
test "$(grep -c '"item=foo"' test_include_dupe_loop.out)" = 3
|
2018-06-08 22:36:22 +02:00
|
|
|
ANSIBLE_STRATEGY='free' ansible-playbook tasks/test_include_dupe_loop.yml -i ../../inventory "$@" | tee test_include_dupe_loop.out
|
2018-07-15 16:59:30 +02:00
|
|
|
test "$(grep -c '"item=foo"' test_include_dupe_loop.out)" = 3
|
|
|
|
|
|
|
|
ansible-playbook public_exposure/playbook.yml -i ../../inventory "$@"
|