summaryrefslogtreecommitdiff
path: root/test/integration/targets/vmware_guest/tasks/clone_d1_c1_f0.yml
blob: 3b3d2ad543f1dcdf2c116be529c1b70aeb612f00 (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
# Test code for the vmware_guest module.
# Copyright: (c) 2017, James Tanner <tanner.jc@gmail.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

- name: create new linked clone without specifying snapshot_src
  vmware_guest:
    validate_certs: False
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    name: test_vm1
    template: "{{ virtual_machines[0].name }}"
    guest_id: centos64Guest
    datacenter: "{{ dc1 }}"
    folder: "{{ f0 }}"
    linked_clone: True
  register: linked_clone_d1_c1_f0
  ignore_errors: True

- debug:
    var: linked_clone_d1_c1_f0

- name: assert that changes were not made
  assert:
    that:
        - not (linked_clone_d1_c1_f0 is changed)

- name: create new linked clone without specifying linked_clone
  vmware_guest:
    validate_certs: False
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    name: test_vm2
    template: "{{ virtual_machines[0].name }}"
    guest_id: centos64Guest
    datacenter: "{{ dc1 }}"
    folder: "{{ f0 }}"
    snapshot_src: "snap_shot1"
  register: linked_clone_d1_c1_f0
  ignore_errors: True

- debug:
    var: linked_clone_d1_c1_f0

- name: assert that changes were not made
  assert:
    that:
        - not (linked_clone_d1_c1_f0 is changed)

# TODO: VCSIM: snapshot is not supported in current vcsim
#
#- name: create new linked clone with linked_clone and snapshot_src
#  vmware_guest:
#    validate_certs: False
#    hostname: "{{ vcenter_hostname }}"
#    username: "{{ vcenter_username }}"
#    password: "{{ vcenter_password }}"
#    name: "{{ 'new_vm_' + item|basename }}"
#    template: "{{ item|basename }}"
#    guest_id: centos64Guest
#    datacenter: "{{ (item|basename).split('_')[0] }}"
#    folder: "{{ item|dirname }}"
#    snapshot_src: "snap_shot1"
#    linked_clone: True
#  with_items: "{{ vmlist['json'] }}"
#  register: linked_clone_d1_c1_f0
#  ignore_errors: True

#- debug: var=linked_clone_d1_c1_f0

#- name: assert that changes were made
#  assert:
#    that:
#        - "linked_clone_d1_c1_f0.results|map(attribute='changed')|unique|list == [true]"

# TODO: VCSIM: snapshot is not supported in current vcsim
#
#- name: create new linked clone with linked_clone and snapshot_src again
#  vmware_guest:
#    validate_certs: False
#    hostname: "{{ vcenter_hostname }}"
#    username: "{{ vcenter_username }}"
#    password: "{{ vcenter_password }}"
#    name: "{{ 'new_vm_' + item|basename }}"
#    template: "{{ item|basename }}"
#    guest_id: centos64Guest
#    datacenter: "{{ (item|basename).split('_')[0] }}"
#    folder: "{{ item|dirname }}"
#    snapshot_src: "snap_shot1"
#    linked_clone: True
#  with_items: "{{ vmlist['json'] }}"
#  register: linked_clone_d1_c1_f0
#  ignore_errors: True

#- debug: var=linked_clone_d1_c1_f0

#- name: assert that changes were not made
#  assert:
#    that:
#        - "linked_clone_d1_c1_f0.results|map(attribute='changed')|unique|list == [false]"