summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/incidental_synchronize/tasks/main.yml
blob: 80e052a6a30bd5ac12edf0e2a5f9b2af1d3a79b5 (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# test code for the synchronize module
# (c) 2014, James Tanner <tanner.jc@gmail.com>

# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible.  If not, see <http://www.gnu.org/licenses/>.

- name: install rsync
  package:
    name: rsync
  when: ansible_distribution != "MacOSX"

- name: cleanup old files
  shell: rm -rf {{output_dir}}/*

- name: create test new files
  copy: dest={{output_dir}}/{{item}} mode=0644 content="hello world"
  with_items:
    - foo.txt
    - bar.txt

- name: synchronize file to new filename
  synchronize: src={{output_dir}}/foo.txt dest={{output_dir}}/foo.result
  register: sync_result

- assert:
    that:
        - "'changed' in sync_result"
        - "sync_result.changed == true"
        - "'cmd' in sync_result"
        - "'rsync' in sync_result.cmd"
        - "'msg' in sync_result"
        - "sync_result.msg.startswith('>f+')"
        - "sync_result.msg.endswith('+ foo.txt\n')"

- name: test that the file was really copied over
  stat:
    path: "{{ output_dir }}/foo.result"
  register: stat_result

- assert:
    that:
      - "stat_result.stat.exists == True"
      - "stat_result.stat.checksum == '2aae6c35c94fcfb415dbe95f408b9ce91ee846ed'"

- name: test that the file is not copied a second time
  synchronize: src={{output_dir}}/foo.txt dest={{output_dir}}/foo.result
  register: sync_result

- assert:
    that:
     - "sync_result.changed == False"

- name: Cleanup
  file:
    state: absent
    path: "{{output_dir}}/{{item}}"
  with_items:
    - foo.result
    - bar.result

- name: Synchronize using the mode=push param
  synchronize:
    src: "{{output_dir}}/foo.txt"
    dest: "{{output_dir}}/foo.result"
    mode: push
  register: sync_result

- assert:
    that:
        - "'changed' in sync_result"
        - "sync_result.changed == true"
        - "'cmd' in sync_result"
        - "'rsync' in sync_result.cmd"
        - "'msg' in sync_result"
        - "sync_result.msg.startswith('>f+')"
        - "sync_result.msg.endswith('+ foo.txt\n')"

- name: test that the file was really copied over
  stat:
    path: "{{ output_dir }}/foo.result"
  register: stat_result

- assert:
    that:
      - "stat_result.stat.exists == True"
      - "stat_result.stat.checksum == '2aae6c35c94fcfb415dbe95f408b9ce91ee846ed'"

- name: test that the file is not copied a second time
  synchronize:
    src: "{{output_dir}}/foo.txt"
    dest: "{{output_dir}}/foo.result"
    mode: push
  register: sync_result

- assert:
    that:
     - "sync_result.changed == False"

- name: Cleanup
  file:
    state: absent
    path: "{{output_dir}}/{{item}}"
  with_items:
    - foo.result
    - bar.result

- name: Synchronize using the mode=pull param
  synchronize:
    src: "{{output_dir}}/foo.txt"
    dest: "{{output_dir}}/foo.result"
    mode: pull
  register: sync_result

- assert:
    that:
        - "'changed' in sync_result"
        - "sync_result.changed == true"
        - "'cmd' in sync_result"
        - "'rsync' in sync_result.cmd"
        - "'msg' in sync_result"
        - "sync_result.msg.startswith('>f+')"
        - "sync_result.msg.endswith('+ foo.txt\n')"

- name: test that the file was really copied over
  stat:
    path: "{{ output_dir }}/foo.result"
  register: stat_result

- assert:
    that:
      - "stat_result.stat.exists == True"
      - "stat_result.stat.checksum == '2aae6c35c94fcfb415dbe95f408b9ce91ee846ed'"

- name: test that the file is not copied a second time
  synchronize:
    src: "{{output_dir}}/foo.txt"
    dest: "{{output_dir}}/foo.result"
    mode: pull
  register: sync_result

- assert:
    that:
     - "sync_result.changed == False"

- name: Cleanup
  file:
    state: absent
    path: "{{output_dir}}/{{item}}"
  with_items:
    - foo.result
    - bar.result

- name: synchronize files using with_items (issue#5965)
  synchronize: src={{output_dir}}/{{item}} dest={{output_dir}}/{{item}}.result
  with_items:
    - foo.txt
    - bar.txt
  register: sync_result

- assert:
    that:
        - "sync_result.changed"
        - "sync_result.msg == 'All items completed'"
        - "'results' in sync_result"
        - "sync_result.results|length == 2"
        - "sync_result.results[0].msg.endswith('+ foo.txt\n')"
        - "sync_result.results[1].msg.endswith('+ bar.txt\n')"

- name: Cleanup
  file:
    state: absent
    path: "{{output_dir}}/{{item}}.result"
  with_items:
    - foo.txt
    - bar.txt

- name: synchronize files using rsync_path (issue#7182)
  synchronize: src={{output_dir}}/foo.txt dest={{output_dir}}/foo.rsync_path rsync_path="sudo rsync"
  register: sync_result

- assert:
    that:
        - "'changed' in sync_result"
        - "sync_result.changed == true"
        - "'cmd' in sync_result"
        - "'rsync' in sync_result.cmd"
        - "'rsync_path' in sync_result.cmd"
        - "'msg' in sync_result"
        - "sync_result.msg.startswith('>f+')"
        - "sync_result.msg.endswith('+ foo.txt\n')"

- name: Cleanup
  file:
    state: absent
    path: "{{output_dir}}/{{item}}"
  with_items:
    - foo.rsync_path

- name: add subdirectories for link-dest test
  file:
    path: "{{output_dir}}/{{item}}/"
    state: directory
    mode: 0755
  with_items:
    - directory_a
    - directory_b

- name: copy foo.txt into the first directory
  synchronize:
    src: "{{output_dir}}/foo.txt"
    dest: "{{output_dir}}/{{item}}/foo.txt"
  with_items:
    - directory_a

- name: synchronize files using link_dest
  synchronize:
    src: "{{output_dir}}/directory_a/foo.txt"
    dest: "{{output_dir}}/directory_b/foo.txt"
    link_dest:
      - "{{output_dir}}/directory_a"
  register: sync_result

- name: get stat information for directory_a
  stat:
    path: "{{ output_dir }}/directory_a/foo.txt"
  register: stat_result_a

- name: get stat information for directory_b
  stat:
    path: "{{ output_dir }}/directory_b/foo.txt"
  register: stat_result_b

- assert:
    that:
        - "'changed' in sync_result"
        - "sync_result.changed == true"
        - "stat_result_a.stat.inode == stat_result_b.stat.inode"

- name: synchronize files using link_dest that would be recursive
  synchronize:
    src: "{{output_dir}}/foo.txt"
    dest: "{{output_dir}}/foo.result"
    link_dest:
      - "{{output_dir}}"
  register: sync_result
  ignore_errors: yes

- assert:
    that:
      - sync_result is not changed
      - sync_result is failed

- name: Cleanup
  file:
    state: absent
    path: "{{output_dir}}/{{item}}"
  with_items:
    - "directory_b/foo.txt"
    - "directory_a/foo.txt"
    - "directory_a"
    - "directory_b"