cba64f5869
* Fix setting the cache when refresh_cache or --flush-cache are used * Use jsonify function that handles datetime objects in jsonfile cache plugin * Don't access self._options directly * Add initial integration tests for aws_ec2 inventory plugin * Add CI alias * Fix and add a few more unit tests * Add integration tests for constructed * Fix typo * Use inventory config templates * Collect all instances that are not terminated by default * Create separate playbook for setting up the VPC, subnet, security group, and finding an image for the host Create a separate playbook for removing the resources * Allow easier grouping by region and add an example * use a unified json encode/decode that can handle unsafe and vault
35 lines
1.4 KiB
Bash
Executable file
35 lines
1.4 KiB
Bash
Executable file
#!/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 "$@"
|