summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/tags/ansible_run_tags.yml
blob: 0e965ad2533b15c77af526090d3fdb3f8e8b8bf3 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
- name: verify ansible_run_tags work as expected
  hosts: testhost
  gather_facts: False
  tasks:
    - debug:
        var: ansible_run_tags
      tags:
        - always

    - debug:
        var: expect
      tags:
        - always

    - assert:
        that:
          - ansible_run_tags == ['all']
      when: expect == 'all'
      tags:
        - always

    - assert:
        that:
          - ansible_run_tags|sort == ['tag1', 'tag3']
      when: expect == 'list'
      tags:
        - always

    - assert:
        that:
          - ansible_run_tags == ['untagged']
      when: expect == 'untagged'
      tags:
        - always

    - assert:
        that:
          - ansible_run_tags|sort == ['tag3', 'untagged']
      when: expect == 'untagged_list'
      tags:
        - always

    - assert:
        that:
          - ansible_run_tags == ['tagged']
      when: expect == 'tagged'
      tags:
        - always