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.
36 lines
1.4 KiB
Bash
36 lines
1.4 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
# ensure test config is empty
|
|
ansible-playbook playbooks/empty_inventory_config.yml "$@"
|
|
|
|
export ANSIBLE_INVENTORY_ENABLED=aws_ec2
|
|
|
|
# test with default inventory file
|
|
ansible-playbook playbooks/test_invalid_aws_ec2_inventory_config.yml "$@"
|
|
|
|
export ANSIBLE_INVENTORY=test.aws_ec2.yml
|
|
|
|
# test empty inventory config
|
|
ansible-playbook playbooks/test_invalid_aws_ec2_inventory_config.yml "$@"
|
|
|
|
# generate inventory config and test using it
|
|
ansible-playbook playbooks/create_inventory_config.yml -e @../../integration_config.yml "$@"
|
|
ansible-playbook playbooks/test_populating_inventory.yml -e @../../integration_config.yml "$@"
|
|
|
|
# generate inventory config with caching and test using it
|
|
ansible-playbook playbooks/create_inventory_config.yml -e "template='inventory_with_cache.yml' @../../integration_config.yml" "$@"
|
|
ansible-playbook playbooks/populate_cache.yml -e @../../integration_config.yml "$@"
|
|
ansible-playbook playbooks/test_inventory_cache.yml "$@"
|
|
|
|
# remove inventory cache
|
|
rm -r aws_ec2_cache_dir/
|
|
|
|
# generate inventory config with constructed features and test using it
|
|
ansible-playbook playbooks/create_inventory_config.yml -e "template='inventory_with_constructed.yml' @../../integration_config.yml" "$@"
|
|
ansible-playbook playbooks/test_populating_inventory_with_constructed.yml -e @../../integration_config.yml "$@"
|
|
|
|
# cleanup inventory config
|
|
ansible-playbook playbooks/empty_inventory_config.yml "$@"
|