summaryrefslogtreecommitdiff
path: root/test/integration/targets/tower_group/tasks/main.yml
blob: cdbef32535cc93249d6495aab54513ca9f89ec01 (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
- name: create a tempdir for hostvars
  shell: mktemp -d
  register: tempdir

- name: write a file w/ hostvars
  lineinfile:
    dest: "{{ tempdir.stdout }}/vars"
    line: '{"foo": "bar"}'
    create: true

- name: Create a Group
  tower_group:
    name: Some Group
    inventory: Demo Inventory
    state: present
    source: ec2
    variables: "@{{ tempdir.stdout }}/vars"
  register: result

- assert:
    that:
      - "result is changed"

- name: Delete a Group
  tower_group:
    name: Some Group
    inventory: Demo Inventory
    state: absent
  register: result

- assert:
    that:
      - "result is changed"

- name: Check module fails with correct msg
  tower_group:
    name: test-group
    description: Group Description
    inventory: test-non-existing-inventory
    state: present
  register: result
  ignore_errors: true

- assert:
    that:
      - "result.msg =='Failed to update the group, inventory not found: The requested object could not be found.'"