summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/incidental_xml/tasks/test-set-element-value-empty.yml
blob: 5814803cb74d216dc83a7cf8525d0f113ce40ad1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
  - name: Setup test fixture
    copy:
      src: fixtures/ansible-xml-beers.xml
      dest: /tmp/ansible-xml-beers.xml


  - name: Set '/business/website/address' to empty string.
    xml:
      path: /tmp/ansible-xml-beers.xml
      xpath: /business/website/address
      value: ''
    register: set_element_value_empty

  - name: Compare to expected result
    copy:
      src: results/test-set-element-value-empty.xml
      dest: /tmp/ansible-xml-beers.xml
    check_mode: yes
    diff: yes
    register: comparison

  - name: Test expected result
    assert:
      that:
      - set_element_value_empty.changed == true
      - comparison.changed == false  # identical
    #command: diff -u {{ role_path }}/results/test-set-element-value-empty.xml /tmp/ansible-xml-beers.xml