diff options
author | Michael DeHaan <michael@ansibleworks.com> | 2014-02-14 00:28:29 +0100 |
---|---|---|
committer | Michael DeHaan <michael@ansibleworks.com> | 2014-02-14 00:28:29 +0100 |
commit | c91ceddfac82bcef4b2edc0ee6bfca2271ef892c (patch) | |
tree | 8ef57946d4965fbbda88f57bda09d8a463dd046f /tests_new/integration | |
parent | Merge pull request #6002 from chrishoffman/ec2_validate (diff) | |
download | ansible-c91ceddfac82bcef4b2edc0ee6bfca2271ef892c.tar.xz ansible-c91ceddfac82bcef4b2edc0ee6bfca2271ef892c.zip |
Add the start of an integration test structure using Ansible playbooks, also added an assert action plugin to make writing those easier.
Diffstat (limited to 'tests_new/integration')
-rw-r--r-- | tests_new/integration/README.md | 13 | ||||
-rw-r--r-- | tests_new/integration/all.yml | 6 | ||||
-rw-r--r-- | tests_new/integration/amazon.yml | 4 | ||||
-rw-r--r-- | tests_new/integration/destructive.yml | 4 | ||||
-rw-r--r-- | tests_new/integration/inventory | 2 | ||||
-rw-r--r-- | tests_new/integration/non_destructive.yml | 5 | ||||
-rw-r--r-- | tests_new/integration/rackspace.yml | 4 | ||||
-rw-r--r-- | tests_new/integration/roles/prepare_tests/tasks/main.yml | 26 | ||||
-rw-r--r-- | tests_new/integration/roles/test_copy/files/foo.txt | 1 | ||||
-rw-r--r-- | tests_new/integration/roles/test_copy/foo.txt | 1 | ||||
-rw-r--r-- | tests_new/integration/roles/test_copy/meta/main.yml | 3 | ||||
-rw-r--r-- | tests_new/integration/roles/test_copy/tasks/main.yml | 84 | ||||
-rw-r--r-- | tests_new/integration/test.sh | 1 | ||||
-rw-r--r-- | tests_new/integration/test_setup.yml | 5 |
14 files changed, 159 insertions, 0 deletions
diff --git a/tests_new/integration/README.md b/tests_new/integration/README.md new file mode 100644 index 0000000000..8ea3fd6262 --- /dev/null +++ b/tests_new/integration/README.md @@ -0,0 +1,13 @@ +Integration tests +================= + +The ansible integration system. + +Tests for playbooks, by playbooks. + +Some tests may require cloud credentials. + +Instructions +============ + +Pending diff --git a/tests_new/integration/all.yml b/tests_new/integration/all.yml new file mode 100644 index 0000000000..7195dba161 --- /dev/null +++ b/tests_new/integration/all.yml @@ -0,0 +1,6 @@ +- include: test_setup.yml +- include: non_destructive.yml +- include: destructive.yml +- include: rackspace.yml +- include: amazon.yml + diff --git a/tests_new/integration/amazon.yml b/tests_new/integration/amazon.yml new file mode 100644 index 0000000000..a6ba60c13e --- /dev/null +++ b/tests_new/integration/amazon.yml @@ -0,0 +1,4 @@ +- hosts: testhost + gather_facts: True + roles: [] + diff --git a/tests_new/integration/destructive.yml b/tests_new/integration/destructive.yml new file mode 100644 index 0000000000..a6ba60c13e --- /dev/null +++ b/tests_new/integration/destructive.yml @@ -0,0 +1,4 @@ +- hosts: testhost + gather_facts: True + roles: [] + diff --git a/tests_new/integration/inventory b/tests_new/integration/inventory new file mode 100644 index 0000000000..0cadcbeb92 --- /dev/null +++ b/tests_new/integration/inventory @@ -0,0 +1,2 @@ +[local] +testhost ansible_ssh_host=127.0.0.1 ansible_connection=local diff --git a/tests_new/integration/non_destructive.yml b/tests_new/integration/non_destructive.yml new file mode 100644 index 0000000000..bd7c5ceafd --- /dev/null +++ b/tests_new/integration/non_destructive.yml @@ -0,0 +1,5 @@ +- hosts: testhost + gather_facts: True + roles: + - { role: test_copy, tags: test_copy } + diff --git a/tests_new/integration/rackspace.yml b/tests_new/integration/rackspace.yml new file mode 100644 index 0000000000..a6ba60c13e --- /dev/null +++ b/tests_new/integration/rackspace.yml @@ -0,0 +1,4 @@ +- hosts: testhost + gather_facts: True + roles: [] + diff --git a/tests_new/integration/roles/prepare_tests/tasks/main.yml b/tests_new/integration/roles/prepare_tests/tasks/main.yml new file mode 100644 index 0000000000..7847a7ce6c --- /dev/null +++ b/tests_new/integration/roles/prepare_tests/tasks/main.yml @@ -0,0 +1,26 @@ +# test code for the copy module and action plugin +# (c) 2014, Michael DeHaan <michael.dehaan@gmail.com> + +# This file is part of Ansible +# +# Ansible is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Ansible is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Ansible. If not, see <http://www.gnu.org/licenses/>. + + +- name: clean out the test directory + file: name={{output_dir|mandatory}} state=absent + +- name: create the test directory + file: name={{output_dir}} state=directory + + diff --git a/tests_new/integration/roles/test_copy/files/foo.txt b/tests_new/integration/roles/test_copy/files/foo.txt new file mode 100644 index 0000000000..7c6ded14ec --- /dev/null +++ b/tests_new/integration/roles/test_copy/files/foo.txt @@ -0,0 +1 @@ +foo.txt diff --git a/tests_new/integration/roles/test_copy/foo.txt b/tests_new/integration/roles/test_copy/foo.txt new file mode 100644 index 0000000000..7c6ded14ec --- /dev/null +++ b/tests_new/integration/roles/test_copy/foo.txt @@ -0,0 +1 @@ +foo.txt diff --git a/tests_new/integration/roles/test_copy/meta/main.yml b/tests_new/integration/roles/test_copy/meta/main.yml new file mode 100644 index 0000000000..1050c23ce3 --- /dev/null +++ b/tests_new/integration/roles/test_copy/meta/main.yml @@ -0,0 +1,3 @@ +dependencies: + - prepare_tests + diff --git a/tests_new/integration/roles/test_copy/tasks/main.yml b/tests_new/integration/roles/test_copy/tasks/main.yml new file mode 100644 index 0000000000..756e048812 --- /dev/null +++ b/tests_new/integration/roles/test_copy/tasks/main.yml @@ -0,0 +1,84 @@ +# test code for the copy module and action plugin +# (c) 2014, Michael DeHaan <michael.dehaan@gmail.com> + +# This file is part of Ansible +# +# Ansible is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Ansible is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Ansible. If not, see <http://www.gnu.org/licenses/>. + +# FIXME: replace all fail_when's with asserts + +- set_fact: output_file={{output_dir}}/foo.txt + +- name: initiate a basic copy + copy: src=foo.txt dest={{output_file}} + register: copy_result + +- assert: { that: "'changed' in copy_result" } +- assert: { that: "'dest' in copy_result" } +- assert: { that: "'group' in copy_result" } +- assert: { that: "'gid' in copy_result" } +- assert: { that: "'md5sum' in copy_result" } +- assert: { that: "'owner' in copy_result" } +- assert: { that: "'size' in copy_result" } +- assert: { that: "'src' in copy_result" } +- assert: { that: "'state' in copy_result" } +- assert: { that: "'uid' in copy_result" } + + +- name: verify that the file was marked as changed + assert: { that: "copy_result.changed == true" } + +- name: verify that the file md5sum is correct + assert: { that: "copy_result.md5sum == 'c47397529fe81ab62ba3f85e9f4c71f2'" } + +- name: check the stat results of the file + stat: path={{output_file}} + register: stat_results + +- debug: var=stat_results + +- assert: { that: "stat_results.stat.exists == true" } +- assert: { that: "stat_results.stat.isblk == false" } +- assert: { that: "stat_results.stat.isfifo == false" } +- assert: { that: "stat_results.stat.isreg == true" } +- assert: { that: "stat_results.stat.issock == false" } +- assert: { that: "stat_results.stat.md5 == 'c47397529fe81ab62ba3f85e9f4c71f2'" } + +- name: overwrite the file via same means + copy: src=foo.txt dest={{output_file}} + register: copy_result2 + +- name: verify the copy was marked unchanged + assert: { that: "not copy_result2|changed" } + +- name: overwrite the file using the content system + copy: content="modified" dest={{output_file}} + register: copy_result3 + +- name: verify the copy result was marked changed + assert: { that: "copy_result3|changed" } + +- name: overwrite the file again using the content system + copy: content="modified" dest={{output_file}} + register: copy_result4 + +- name: verify the copy result was marked unchanged + assert: { that: "not copy_result4|changed" } + +# TODO: test recursive copy +# TODO: test copy where destination is a directory like {{output_dir}}/ +# TODO: test that copy fails if the path does not exist +# TODO: ... + + diff --git a/tests_new/integration/test.sh b/tests_new/integration/test.sh new file mode 100644 index 0000000000..dae0cdeae2 --- /dev/null +++ b/tests_new/integration/test.sh @@ -0,0 +1 @@ +ansible-playbook non_destructive.yml -i inventory -e output_dir=~/ansible_testing -v diff --git a/tests_new/integration/test_setup.yml b/tests_new/integration/test_setup.yml new file mode 100644 index 0000000000..a96abed99a --- /dev/null +++ b/tests_new/integration/test_setup.yml @@ -0,0 +1,5 @@ +- hosts: testhost + gather_facts: False + roles: + - test_setup + |