2017-08-09 05:21:03 +02:00
|
|
|
---
|
|
|
|
- name: Setup test fixture
|
|
|
|
copy:
|
2017-08-25 02:07:58 +02:00
|
|
|
src: fixtures/ansible-xml-beers.xml
|
2017-08-09 05:21:03 +02:00
|
|
|
dest: /tmp/ansible-xml-beers.xml
|
|
|
|
|
2017-08-25 02:07:58 +02:00
|
|
|
|
2017-08-09 05:21:03 +02:00
|
|
|
- name: Remove '/business/rating/@subjective'
|
|
|
|
xml:
|
|
|
|
path: /tmp/ansible-xml-beers.xml
|
|
|
|
xpath: /business/rating/@subjective
|
2017-08-25 02:07:58 +02:00
|
|
|
state: absent
|
|
|
|
register: remove_attribute
|
|
|
|
|
|
|
|
- name: Compare to expected result
|
|
|
|
copy:
|
|
|
|
src: results/test-remove-attribute.xml
|
|
|
|
dest: /tmp/ansible-xml-beers.xml
|
|
|
|
check_mode: yes
|
|
|
|
diff: yes
|
|
|
|
register: comparison
|
2017-08-09 05:21:03 +02:00
|
|
|
|
|
|
|
- name: Test expected result
|
2017-08-25 02:07:58 +02:00
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- remove_attribute.changed == true
|
|
|
|
- comparison.changed == false # identical
|
|
|
|
#command: diff -u {{ role_path }}/results/test-remove-attribute.xml /tmp/ansible-xml-beers.xml
|