summaryrefslogtreecommitdiff
path: root/test/integration/targets/cs_vmsnapshot/tasks/main.yml
blob: 5d80bf0214b4a48040c63da5652f80392f6f9870 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
- name: setup instance
  cs_instance:
    name: "{{ cs_resource_prefix }}-vm-snapshot"
    template: "{{ test_cs_instance_template }}"
    service_offering: "{{ test_cs_instance_offering_1 }}"
  register: instance
- name: verify create instance
  assert:
    that:
    - instance|success

- name: ensure no snapshot exists
  cs_vmsnapshot:
    name: "{{ cs_resource_prefix }}_snapshot"
    vm: "{{ cs_resource_prefix }}-vm-snapshot"
    state: absent
  register: snap
- name: verify setup
  assert:
    that:
    - snap|success

- name: test fail if missing name
  action: cs_vmsnapshot
  register: snap
  ignore_errors: true
- name: verify results of fail if missing params
  assert:
    that:
    - snap|failed
    - 'snap.msg == "missing required arguments: vm,name"'

- name: test create snapshot
  cs_vmsnapshot:
    name: "{{ cs_resource_prefix }}_snapshot"
    vm: "{{ cs_resource_prefix }}-vm-snapshot"
    snapshot_memory: yes
  register: snap
- name: verify test create snapshot
  assert:
    that:
    - snap|changed
    - snap.display_name == "{{ cs_resource_prefix }}_snapshot"

- name: test create snapshot idempotence
  cs_vmsnapshot:
    name: "{{ cs_resource_prefix }}_snapshot"
    vm: "{{ cs_resource_prefix }}-vm-snapshot"
    snapshot_memory: yes
  register: snap
- name: verify test create snapshot idempotence
  assert:
    that:
    - not snap|changed
    - snap.display_name == "{{ cs_resource_prefix }}_snapshot"

- name: test revert snapshot
  cs_vmsnapshot:
    name: "{{ cs_resource_prefix }}_snapshot"
    vm: "{{ cs_resource_prefix }}-vm-snapshot"
    state: revert
  register: snap
- name: verify test revert snapshot
  assert:
    that:
    - snap|changed
    - snap.display_name == "{{ cs_resource_prefix }}_snapshot"

- name: test remove snapshot
  cs_vmsnapshot:
    name: "{{ cs_resource_prefix }}_snapshot"
    vm: "{{ cs_resource_prefix }}-vm-snapshot"
    state: absent
  register: snap
- name: verify test remove snapshot
  assert:
    that:
    - snap|changed
    - snap.display_name == "{{ cs_resource_prefix }}_snapshot"

- name: test remove snapshot idempotence
  cs_vmsnapshot:
    name: "{{ cs_resource_prefix }}_snapshot"
    vm: "{{ cs_resource_prefix }}-vm-snapshot"
    state: absent
  register: snap
- name: verify test remove snapshot idempotence
  assert:
    that:
    - not snap|changed

- name: cleanup instance
  cs_instance:
    name: "{{ cs_resource_prefix }}-vm-snapshot"
    state: expunged
  register: instance
- name: verify destroy instance
  assert:
    that:
    - instance|success