summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/include_import/tasks/test_include_tasks.yml
blob: ebe2273e896200b990dd1bb9083fe4ca724d4aca (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
- name: Test include_tasks
  hosts: testhost

  tasks:
    - name: Test basic task include
      include_tasks: tasks1.yml

    - name: Assert that fact was set in include
      assert:
        that:
          - set_in_tasks1

    - name: Test conditional task include
      include_tasks: tasks2.yml
      when: no

    - name: Assert that tasks were skipped
      assert:
        that:
          - set_in_tasks2 is not defined

    - block:
        - name: Include tasks inside a block
          include_tasks: tasks3.yml

        - name: Assert that task3 was included
          assert:
            that:
              - set_in_tasks3

      always:
        - name: Include task inside always
          include_tasks: tasks4.yml

        - name: Validate that variables set in previously improted tasks are passed down
          include_tasks: validate3.yml

        - name: Assert that tasks4 was included
          assert:
            that:
              - set_in_tasks4

    - name: include_tasks + action
      action: include_tasks tasks1.yml