2012-03-18 23:29:11 +01:00
|
|
|
# extremely simple test of the most basic of playbook engine/functions
|
|
|
|
---
|
|
|
|
- hosts: all
|
2012-11-19 16:30:30 +01:00
|
|
|
connection: local
|
2012-03-24 01:51:15 +01:00
|
|
|
|
2012-08-07 03:00:21 +02:00
|
|
|
# the 'weasels' string should show up in the output
|
2012-03-24 01:51:15 +01:00
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
vars:
|
2012-03-19 00:50:22 +01:00
|
|
|
answer: "Wuh, I think so, Brain, but if we didn't have ears, we'd look like weasels."
|
2012-03-18 23:29:11 +01:00
|
|
|
port: 5150
|
2012-03-24 01:51:15 +01:00
|
|
|
|
|
|
|
# we should have import events for common_vars and CentOS.yml (if run on CentOS)
|
|
|
|
# sorry, tests are a bit platform specific just for now
|
|
|
|
|
2012-03-20 03:42:31 +01:00
|
|
|
vars_files:
|
|
|
|
- common_vars.yml
|
2013-10-12 01:12:25 +02:00
|
|
|
- [ '{{facter_operatingsystem.yml}}', 'default_os.yml' ]
|
2012-08-07 03:00:21 +02:00
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
tasks:
|
|
|
|
|
|
|
|
- name: test basic success command
|
2012-07-30 03:59:29 +02:00
|
|
|
action: command true
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
- name: test basic success command 2
|
2012-07-30 03:59:29 +02:00
|
|
|
action: command true
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-03-20 00:32:38 +01:00
|
|
|
- name: test basic shell, plus two ways to dereference a variable
|
2013-10-12 01:28:53 +02:00
|
|
|
action: shell echo {{port}}
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-03-20 03:42:31 +01:00
|
|
|
- name: test vars_files imports
|
2013-10-12 01:12:25 +02:00
|
|
|
action: shell echo {{duck}} {{cow}} {{testing}}
|
2012-03-20 03:42:31 +01:00
|
|
|
|
2012-03-19 00:25:56 +01:00
|
|
|
# in the command below, the test file should contain a valid template
|
|
|
|
# and trigger the change handler
|
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
- name: test copy
|
2012-03-18 23:50:25 +01:00
|
|
|
action: copy src=sample.j2 dest=/tmp/ansible_test_data_copy.out
|
2012-08-07 03:00:21 +02:00
|
|
|
notify:
|
2012-03-19 00:25:56 +01:00
|
|
|
- on change 1
|
|
|
|
|
|
|
|
# there should be various poll events within the range
|
|
|
|
|
|
|
|
- name: async poll test
|
|
|
|
action: shell sleep 5
|
|
|
|
async: 10
|
|
|
|
poll: 3
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-03-24 01:51:15 +01:00
|
|
|
# the following command should be skipped
|
|
|
|
|
|
|
|
- name: this should be skipped
|
2013-10-12 01:12:25 +02:00
|
|
|
action: shell echo 'if you see this, this is wrong'
|
2013-10-12 01:08:53 +02:00
|
|
|
when: 2 == 3
|
2012-03-24 01:51:15 +01:00
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
handlers:
|
|
|
|
|
2012-03-19 00:25:56 +01:00
|
|
|
# in the above test example, this should fire ONCE (at the end)
|
2012-03-18 23:29:11 +01:00
|
|
|
- name: on change 1
|
2012-03-24 01:51:15 +01:00
|
|
|
action: shell echo 'this should fire once'
|
2012-03-19 00:25:56 +01:00
|
|
|
|
|
|
|
# in the above test example, this should fire ONCE (at the end)
|
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
- name: on change 2
|
2012-03-24 01:51:15 +01:00
|
|
|
action: shell echo 'this should fire once also'
|
2012-03-19 00:25:56 +01:00
|
|
|
|
|
|
|
# in the above test example, this should NOT FIRE
|
|
|
|
|
|
|
|
- name: on change 3
|
2012-03-24 01:51:15 +01:00
|
|
|
action: shell echo 'if you see this, this is wrong'
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
|