summaryrefslogtreecommitdiff
path: root/test/integration/targets/copy/tasks/tests.yml
blob: d6c8e63c9ac535dcf18279260218e457fc3fefcf (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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
# test code for the copy module and action plugin
# (c) 2014, Michael DeHaan <michael.dehaan@gmail.com>
# (c) 2017, Ansible Project
#
# GNU General Public License v3 or later (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt )
#

- name: Record the output directory
  set_fact:
    remote_file: "{{ remote_dir }}/foo.txt"

- name: Initiate a basic copy, and also test the mode
  copy:
    src: foo.txt
    dest: "{{ remote_file }}"
    mode: 0444
  register: copy_result

- name: Record the sha of the test file for later tests
  set_fact:
    remote_file_hash: "{{ copy_result['checksum'] }}"

- name: Check the mode of the output file
  file:
    name: "{{ remote_file }}"
    state: file
  register: file_result_check

- name: Assert the mode is correct
  assert:
    that:
      - "file_result_check.mode == '0444'"

# same as expanduser & expandvars
- command: 'echo {{ remote_dir }}'
  register: echo

- set_fact:
    remote_dir_expanded: '{{ echo.stdout }}'
    remote_file_expanded: '{{ echo.stdout }}/foo.txt'

- debug:
    var: copy_result
    verbosity: 1

- name: Assert basic copy worked
  assert:
    that:
      - "'changed' in copy_result"
      - copy_result.dest == remote_file_expanded
      - "'group' in copy_result"
      - "'gid' in copy_result"
      - "'checksum' in copy_result"
      - "'owner' in copy_result"
      - "'size' in copy_result"
      - "'src' in copy_result"
      - "'state' in copy_result"
      - "'uid' in copy_result"

- name: Verify that the file was marked as changed
  assert:
    that:
      - "copy_result.changed == true"

- name: Verify that the file checksums are correct
  assert:
    that:
      - "copy_result.checksum == ('foo.txt\n'|hash('sha1'))"

- name: Verify that the legacy md5sum is correct
  assert:
    that:
      - "copy_result.md5sum == ('foo.txt\n'|hash('md5'))"
  when: ansible_fips|bool != True

- name: Check the stat results of the file
  stat:
    path: "{{ remote_file }}"
  register: stat_results

- debug:
    var: stat_results
    verbosity: 1

- name: Assert the stat results are correct
  assert:
    that:
      - "stat_results.stat.exists == true"
      - "stat_results.stat.isblk == false"
      - "stat_results.stat.isfifo == false"
      - "stat_results.stat.isreg == true"
      - "stat_results.stat.issock == false"
      - "stat_results.stat.checksum == ('foo.txt\n'|hash('sha1'))"

- name: Overwrite the file via same means
  copy:
    src: foo.txt
    dest: "{{ remote_file }}"
    decrypt: no
  register: copy_result2

- name: Assert that the file was not changed
  assert:
    that:
      - "copy_result2 is not changed"

- name: Assert basic copy worked
  assert:
    that:
      - "'changed' in copy_result2"
      - copy_result2.dest == remote_file_expanded
      - "'group' in copy_result2"
      - "'gid' in copy_result2"
      - "'checksum' in copy_result2"
      - "'owner' in copy_result2"
      - "'size' in copy_result2"
      - "'state' in copy_result2"
      - "'uid' in copy_result2"

- name: Overwrite the file using the content system
  copy:
    content: "modified"
    dest: "{{ remote_file }}"
    decrypt: no
  register: copy_result3

- name: Check the stat results of the file
  stat:
    path: "{{ remote_file }}"
  register: stat_results

- debug:
    var: stat_results
    verbosity: 1

- name: Assert that the file has changed
  assert:
     that:
       - "copy_result3 is changed"
       - "'content' not in copy_result3"
       - "stat_results.stat.checksum == ('modified'|hash('sha1'))"
       - "stat_results.stat.mode != '0700'"

- name: Overwrite the file again using the content system, also passing along file params
  copy:
    content: "modified"
    dest: "{{ remote_file }}"
    mode: 0700
    decrypt: no
  register: copy_result4

- name: Check the stat results of the file
  stat:
    path: "{{ remote_file }}"
  register: stat_results

- debug:
    var: stat_results
    verbosity: 1

- name: Assert that the file has changed
  assert:
     that:
       - "copy_result3 is changed"
       - "'content' not in copy_result3"
       - "stat_results.stat.checksum == ('modified'|hash('sha1'))"
       - "stat_results.stat.mode == '0700'"

- name: Create a hardlink to the file
  file:
    src: '{{ remote_file }}'
    dest: '{{ remote_dir }}/hard.lnk'
    state: hard

- name: copy the same contents into place
  copy:
    content: 'modified'
    dest: '{{ remote_file }}'
    mode: 0700
    decrypt: no
  register: copy_results

- name: Check the stat results of the file
  stat:
    path: "{{ remote_file }}"
  register: stat_results

- name: Check the stat results of the hard link
  stat:
    path: "{{ remote_dir }}/hard.lnk"
  register: hlink_results

- name: Check that the file did not change
  assert:
    that:
      - 'stat_results.stat.inode == hlink_results.stat.inode'
      - 'copy_results.changed == False'
      - "stat_results.stat.checksum == ('modified'|hash('sha1'))"

- name: copy the same contents into place but change mode
  copy:
    content: 'modified'
    dest: '{{ remote_file }}'
    mode: 0404
    decrypt: no
  register: copy_results

- name: Check the stat results of the file
  stat:
    path: "{{ remote_file }}"
  register: stat_results

- name: Check the stat results of the hard link
  stat:
    path: "{{ remote_dir }}/hard.lnk"
  register: hlink_results

- name: Check that the file changed permissions but is still the same
  assert:
    that:
      - 'stat_results.stat.inode == hlink_results.stat.inode'
      - 'copy_results.changed == True'
      - 'stat_results.stat.mode == hlink_results.stat.mode'
      - 'stat_results.stat.mode == "0404"'
      - "stat_results.stat.checksum == ('modified'|hash('sha1'))"

- name: copy the different contents into place
  copy:
    content: 'adjusted'
    dest: '{{ remote_file }}'
    mode: 0404
  register: copy_results

- name: Check the stat results of the file
  stat:
    path: "{{ remote_file }}"
  register: stat_results

- name: Check the stat results of the hard link
  stat:
    path: "{{ remote_dir }}/hard.lnk"
  register: hlink_results

- name: Check that the file changed and hardlink was broken
  assert:
    that:
      - 'stat_results.stat.inode != hlink_results.stat.inode'
      - 'copy_results.changed == True'
      - "stat_results.stat.checksum == ('adjusted'|hash('sha1'))"
      - "hlink_results.stat.checksum == ('modified'|hash('sha1'))"

- name: Try invalid copy input location fails
  copy:
    src: invalid_file_location_does_not_exist
    dest: "{{ remote_dir }}/file.txt"
  ignore_errors: True
  register: failed_copy

- name: Assert that invalid source failed
  assert:
    that:
      - "failed_copy.failed"
      - "'invalid_file_location_does_not_exist' in failed_copy.msg"

- name: Try empty source to ensure it fails
  copy:
    src: ''
    dest: "{{ remote_dir }}"
  ignore_errors: True
  register: failed_copy

- debug:
    var: failed_copy
    verbosity: 1

- name: Assert that empty source failed
  assert:
    that:
      - failed_copy is failed
      - "'src (or content) is required' in failed_copy.msg"

- name: Try without destination to ensure it fails
  copy:
    src: foo.txt
  ignore_errors: True
  register: failed_copy

- debug:
    var: failed_copy
    verbosity: 1

- name: Assert that missing destination failed
  assert:
    that:
      - failed_copy is failed
      - "'dest is required' in failed_copy.msg"

- name: Try without source to ensure it fails
  copy:
    dest: "{{ remote_file }}"
  ignore_errors: True
  register: failed_copy

- debug:
    var: failed_copy
    verbosity: 1

- name: Assert that missing source failed
  assert:
    that:
      - failed_copy is failed
      - "'src (or content) is required' in failed_copy.msg"

- name: Try with both src and content to ensure it fails
  copy:
    src: foo.txt
    content: testing
    dest: "{{ remote_file }}"
  ignore_errors: True
  register: failed_copy

- name: Assert that mutually exclusive parameters failed
  assert:
    that:
      - failed_copy is failed
      - "'mutually exclusive' in failed_copy.msg"

- name: Try with content and directory as destination to ensure it fails
  copy:
    content: testing
    dest: "{{ remote_dir }}"
  ignore_errors: True
  register: failed_copy

- debug:
    var: failed_copy
    verbosity: 1

- name: Assert that content and directory as destination failed
  assert:
    that:
      - failed_copy is failed
      - "'can not use content with a dir as dest' in failed_copy.msg"

- name: Clean up
  file:
    path: "{{ remote_file }}"
    state: absent

- name: Copy source file to destination directory with mode
  copy:
    src: foo.txt
    dest: "{{ remote_dir }}"
    mode: 0500
  register: copy_results

- name: Check the stat results of the file
  stat:
    path: '{{ remote_file }}'
  register: stat_results

- debug:
    var: stat_results
    verbosity: 1

- name: Assert that the file has changed
  assert:
     that:
       - "copy_results is changed"
       - "stat_results.stat.checksum == ('foo.txt\n'|hash('sha1'))"
       - "stat_results.stat.mode == '0500'"

# Test copy with mode=preserve
- name: Create file and set perms to an odd value
  copy:
    content: "foo.txt\n"
    dest: '{{ local_temp_dir }}/foo.txt'
    mode: 0547
  delegate_to: localhost

- name: Copy with mode=preserve
  copy:
    src: '{{ local_temp_dir }}/foo.txt'
    dest: '{{ remote_dir }}/copy-foo.txt'
    mode: preserve
  register: copy_results

- name: Check the stat results of the file
  stat:
    path: '{{ remote_dir }}/copy-foo.txt'
  register: stat_results

- name: Assert that the file has changed and has correct mode
  assert:
     that:
       - "copy_results is changed"
       - "copy_results.mode == '0547'"
       - "stat_results.stat.checksum == ('foo.txt\n'|hash('sha1'))"
       - "stat_results.stat.mode == '0547'"

- name: Test copy with mode=preserve and remote_src=True
  copy:
    src: '{{ remote_dir }}/copy-foo.txt'
    dest: '{{ remote_dir }}/copy-foo2.txt'
    mode: 'preserve'
    remote_src: True
  register: copy_results2

- name: Check the stat results of the file
  stat:
    path: '{{ remote_dir }}/copy-foo2.txt'
  register: stat_results2

- name: Assert that the file has changed and has correct mode
  assert:
     that:
       - "copy_results2 is changed"
       - "copy_results2.mode == '0547'"
       - "stat_results2.stat.checksum == ('foo.txt\n'|hash('sha1'))"
       - "stat_results2.stat.mode == '0547'"

#
# test recursive copy local_follow=False, no trailing slash
#

- name: Create empty directory in the role we're copying from (git can't store empty dirs)
  file:
    path: '{{ role_path }}/files/subdir/subdira'
    state: directory
  delegate_to: localhost

- name: Set the output subdirectory
  set_fact:
    remote_subdir: "{{ remote_dir }}/sub"

- name: Make an output subdirectory
  file:
    name: "{{ remote_subdir }}"
    state: directory

- name: Setup link target for absolute link
  copy:
    dest: /tmp/ansible-test-abs-link
    content: target
  delegate_to: localhost

- name: Setup link target dir for absolute link
  file:
    dest: /tmp/ansible-test-abs-link-dir
    state: directory
  delegate_to: localhost

- name: Test recursive copy to directory no trailing slash, local_follow=False
  copy:
    src: subdir
    dest: "{{ remote_subdir }}"
    directory_mode: 0700
    local_follow: False
  register: recursive_copy_result

- debug:
    var: recursive_copy_result
    verbosity: 1

- name: Assert that the recursive copy did something
  assert:
    that:
      - "recursive_copy_result is changed"

- name: Check that a file in a directory was transferred
  stat:
    path: "{{ remote_dir }}/sub/subdir/bar.txt"
  register: stat_bar

- name: Check that a file in a deeper directory was transferred
  stat:
    path: "{{ remote_dir }}/sub/subdir/subdir2/baz.txt"
  register: stat_bar2

- name: Check that a file in a directory whose parent contains a directory alone was transferred
  stat:
    path: "{{ remote_dir }}/sub/subdir/subdir2/subdir3/subdir4/qux.txt"
  register: stat_bar3

- name: Assert recursive copy files
  assert:
    that:
      - "stat_bar.stat.exists"
      - "stat_bar2.stat.exists"
      - "stat_bar3.stat.exists"

- name: Check symlink to absolute path
  stat:
    path: '{{ remote_dir }}/sub/subdir/subdir1/ansible-test-abs-link'
  register: stat_abs_link

- name: Check symlink to relative path
  stat:
    path: '{{ remote_dir }}/sub/subdir/subdir1/bar.txt'
  register: stat_relative_link

- name: Check symlink to self
  stat:
    path: '{{ remote_dir }}/sub/subdir/subdir1/invalid'
  register: stat_self_link

- name: Check symlink to nonexistent file
  stat:
    path: '{{ remote_dir }}/sub/subdir/subdir1/invalid2'
  register: stat_invalid_link

- name: Check symlink to directory in copy
  stat:
   path: '{{ remote_dir }}/sub/subdir/subdir1/subdir3'
  register: stat_dir_in_copy_link

- name: Check symlink to directory outside of copy
  stat:
    path: '{{ remote_dir }}/sub/subdir/subdir1/ansible-test-abs-link-dir'
  register: stat_dir_outside_copy_link

- name: Assert recursive copy symlinks local_follow=False
  assert:
    that:
      - "stat_abs_link.stat.exists"
      - "stat_abs_link.stat.islnk"
      - "'/tmp/ansible-test-abs-link' == stat_abs_link.stat.lnk_target"
      - "stat_relative_link.stat.exists"
      - "stat_relative_link.stat.islnk"
      - "'../bar.txt' == stat_relative_link.stat.lnk_target"
      - "stat_self_link.stat.exists"
      - "stat_self_link.stat.islnk"
      - "'invalid' in stat_self_link.stat.lnk_target"
      - "stat_invalid_link.stat.exists"
      - "stat_invalid_link.stat.islnk"
      - "'../invalid' in stat_invalid_link.stat.lnk_target"
      - "stat_dir_in_copy_link.stat.exists"
      - "stat_dir_in_copy_link.stat.islnk"
      - "'../subdir2/subdir3' in stat_dir_in_copy_link.stat.lnk_target"
      - "stat_dir_outside_copy_link.stat.exists"
      - "stat_dir_outside_copy_link.stat.islnk"
      - "'/tmp/ansible-test-abs-link-dir' == stat_dir_outside_copy_link.stat.lnk_target"

- name: Stat the recursively copied directories
  stat:
    path: "{{ remote_dir }}/sub/{{ item }}"
  register: dir_stats
  with_items:
    - "subdir"
    - "subdir/subdira"
    - "subdir/subdir1"
    - "subdir/subdir2"
    - "subdir/subdir2/subdir3"
    - "subdir/subdir2/subdir3/subdir4"

- debug:
    var: stat_results
    verbosity: 1

- name: Assert recursive copied directories mode (1)
  assert:
    that:
      - "item.stat.exists"
      - "item.stat.mode == '0700'"
  with_items: "{{dir_stats.results}}"

- name: Test recursive copy to directory no trailing slash, local_follow=False second time
  copy:
    src: subdir
    dest: "{{ remote_subdir }}"
    directory_mode: 0700
    local_follow: False
  register: recursive_copy_result

- name: Assert that the second copy did not change anything
  assert:
    that:
      - "recursive_copy_result is not changed"

- name: Cleanup the recursive copy subdir
  file:
    name: "{{ remote_subdir }}"
    state: absent

#
# Recursive copy with local_follow=False, trailing slash
#

- name: Set the output subdirectory
  set_fact:
    remote_subdir: "{{ remote_dir }}/sub"

- name: Make an output subdirectory
  file:
    name: "{{ remote_subdir }}"
    state: directory

- name: Setup link target for absolute link
  copy:
    dest: /tmp/ansible-test-abs-link
    content: target
  delegate_to: localhost

- name: Setup link target dir for absolute link
  file:
    dest: /tmp/ansible-test-abs-link-dir
    state: directory
  delegate_to: localhost

- name: Test recursive copy to directory trailing slash, local_follow=False
  copy:
    src: subdir/
    dest: "{{ remote_subdir }}"
    directory_mode: 0700
    local_follow: False
  register: recursive_copy_result

- debug:
    var: recursive_copy_result
    verbosity: 1

- name: Assert that the recursive copy did something
  assert:
    that:
      - "recursive_copy_result is changed"

- name: Check that a file in a directory was transferred
  stat:
    path: "{{ remote_dir }}/sub/bar.txt"
  register: stat_bar

- name: Check that a file in a deeper directory was transferred
  stat:
    path: "{{ remote_dir }}/sub/subdir2/baz.txt"
  register: stat_bar2

- name: Check that a file in a directory whose parent contains a directory alone was transferred
  stat:
    path: "{{ remote_dir }}/sub/subdir2/subdir3/subdir4/qux.txt"
  register: stat_bar3

- name: Assert recursive copy files
  assert:
    that:
      - "stat_bar.stat.exists"
      - "stat_bar2.stat.exists"
      - "stat_bar3.stat.exists"

- name: Check symlink to absolute path
  stat:
    path: '{{ remote_dir }}/sub/subdir1/ansible-test-abs-link'
  register: stat_abs_link

- name: Check symlink to relative path
  stat:
    path: '{{ remote_dir }}/sub/subdir1/bar.txt'
  register: stat_relative_link

- name: Check symlink to self
  stat:
    path: '{{ remote_dir }}/sub/subdir1/invalid'
  register: stat_self_link

- name: Check symlink to nonexistent file
  stat:
    path: '{{ remote_dir }}/sub/subdir1/invalid2'
  register: stat_invalid_link

- name: Check symlink to directory in copy
  stat:
    path: '{{ remote_dir }}/sub/subdir1/subdir3'
  register: stat_dir_in_copy_link

- name: Check symlink to directory outside of copy
  stat:
    path: '{{ remote_dir }}/sub/subdir1/ansible-test-abs-link-dir'
  register: stat_dir_outside_copy_link

- name: Assert recursive copy symlinks local_follow=False trailing slash
  assert:
    that:
      - "stat_abs_link.stat.exists"
      - "stat_abs_link.stat.islnk"
      - "'/tmp/ansible-test-abs-link' == stat_abs_link.stat.lnk_target"
      - "stat_relative_link.stat.exists"
      - "stat_relative_link.stat.islnk"
      - "'../bar.txt' == stat_relative_link.stat.lnk_target"
      - "stat_self_link.stat.exists"
      - "stat_self_link.stat.islnk"
      - "'invalid' in stat_self_link.stat.lnk_target"
      - "stat_invalid_link.stat.exists"
      - "stat_invalid_link.stat.islnk"
      - "'../invalid' in stat_invalid_link.stat.lnk_target"
      - "stat_dir_in_copy_link.stat.exists"
      - "stat_dir_in_copy_link.stat.islnk"
      - "'../subdir2/subdir3' in stat_dir_in_copy_link.stat.lnk_target"
      - "stat_dir_outside_copy_link.stat.exists"
      - "stat_dir_outside_copy_link.stat.islnk"
      - "'/tmp/ansible-test-abs-link-dir' == stat_dir_outside_copy_link.stat.lnk_target"

- name: Stat the recursively copied directories
  stat:
    path: "{{ remote_dir }}/sub/{{ item }}"
  register: dir_stats
  with_items:
    - "subdira"
    - "subdir1"
    - "subdir2"
    - "subdir2/subdir3"
    - "subdir2/subdir3/subdir4"

- debug:
    var: dir_stats
    verbosity: 1

- name: Assert recursive copied directories mode (2)
  assert:
    that:
      - "item.stat.mode == '0700'"
  with_items: "{{dir_stats.results}}"

- name: Test recursive copy to directory trailing slash, local_follow=False second time
  copy:
    src: subdir/
    dest: "{{ remote_subdir }}"
    directory_mode: 0700
    local_follow: False
  register: recursive_copy_result

- name: Assert that the second copy did not change anything
  assert:
    that:
      - "recursive_copy_result is not changed"

- name: Cleanup the recursive copy subdir
  file:
    name: "{{ remote_subdir }}"
    state: absent

#
# test recursive copy local_follow=True, no trailing slash
#

- name: Set the output subdirectory
  set_fact:
    remote_subdir: "{{ remote_dir }}/sub"

- name: Make an output subdirectory
  file:
    name: "{{ remote_subdir }}"
    state: directory

- name: Setup link target for absolute link
  copy:
    dest: /tmp/ansible-test-abs-link
    content: target
  delegate_to: localhost

- name: Setup link target dir for absolute link
  file:
    dest: /tmp/ansible-test-abs-link-dir
    state: directory
  delegate_to: localhost

- name: Test recursive copy to directory no trailing slash, local_follow=True
  copy:
    src: subdir
    dest: "{{ remote_subdir }}"
    directory_mode: 0700
    local_follow: True
  register: recursive_copy_result

- debug:
    var: recursive_copy_result
    verbosity: 1

- name: Assert that the recursive copy did something
  assert:
    that:
      - "recursive_copy_result is changed"

- name: Check that a file in a directory was transferred
  stat:
    path: "{{ remote_dir }}/sub/subdir/bar.txt"
  register: stat_bar

- name: Check that a file in a deeper directory was transferred
  stat:
    path: "{{ remote_dir }}/sub/subdir/subdir2/baz.txt"
  register: stat_bar2

- name: Check that a file in a directory whose parent contains a directory alone was transferred
  stat:
    path: "{{ remote_dir }}/sub/subdir/subdir2/subdir3/subdir4/qux.txt"
  register: stat_bar3

- name: Check that a file in a directory whose parent is a symlink was transferred
  stat:
    path: "{{ remote_dir }}/sub/subdir/subdir1/subdir3/subdir4/qux.txt"
  register: stat_bar4

- name: Assert recursive copy files
  assert:
    that:
      - "stat_bar.stat.exists"
      - "stat_bar2.stat.exists"
      - "stat_bar3.stat.exists"
      - "stat_bar4.stat.exists"

- name: Check symlink to absolute path
  stat:
    path: '{{ remote_dir }}/sub/subdir/subdir1/ansible-test-abs-link'
  register: stat_abs_link

- name: Check symlink to relative path
  stat:
    path: '{{ remote_dir }}/sub/subdir/subdir1/bar.txt'
  register: stat_relative_link

- name: Check symlink to self
  stat:
    path: '{{ remote_dir }}/sub/subdir/subdir1/invalid'
  register: stat_self_link

- name: Check symlink to nonexistent file
  stat:
    path: '{{ remote_dir }}/sub/subdir/subdir1/invalid2'
  register: stat_invalid_link

- name: Check symlink to directory in copy
  stat:
    path: '{{ remote_dir }}/sub/subdir/subdir1/subdir3'
  register: stat_dir_in_copy_link

- name: Check symlink to directory outside of copy
  stat:
    path: '{{ remote_dir }}/sub/subdir/subdir1/ansible-test-abs-link-dir'
  register: stat_dir_outside_copy_link

- name: Assert recursive copy symlinks local_follow=True
  assert:
    that:
      - "stat_abs_link.stat.exists"
      - "not stat_abs_link.stat.islnk"
      - "stat_abs_link.stat.checksum == ('target'|hash('sha1'))"
      - "stat_relative_link.stat.exists"
      - "not stat_relative_link.stat.islnk"
      - "stat_relative_link.stat.checksum == ('baz\n'|hash('sha1'))"
      - "stat_self_link.stat.exists"
      - "stat_self_link.stat.islnk"
      - "'invalid' in stat_self_link.stat.lnk_target"
      - "stat_invalid_link.stat.exists"
      - "stat_invalid_link.stat.islnk"
      - "'../invalid' in stat_invalid_link.stat.lnk_target"
      - "stat_dir_in_copy_link.stat.exists"
      - "not stat_dir_in_copy_link.stat.islnk"
      - "stat_dir_in_copy_link.stat.isdir"
      -
      - "stat_dir_outside_copy_link.stat.exists"
      - "not stat_dir_outside_copy_link.stat.islnk"
      - "stat_dir_outside_copy_link.stat.isdir"

- name: Stat the recursively copied directories
  stat:
    path: "{{ remote_dir }}/sub/{{ item }}"
  register: dir_stats
  with_items:
    - "subdir"
    - "subdir/subdira"
    - "subdir/subdir1"
    - "subdir/subdir1/subdir3"
    - "subdir/subdir1/subdir3/subdir4"
    - "subdir/subdir2"
    - "subdir/subdir2/subdir3"
    - "subdir/subdir2/subdir3/subdir4"

- debug:
    var: dir_stats
    verbosity: 1

- name: Assert recursive copied directories mode (3)
  assert:
    that:
      - "item.stat.mode == '0700'"
  with_items: "{{dir_stats.results}}"

- name: Test recursive copy to directory no trailing slash, local_follow=True second time
  copy:
    src: subdir
    dest: "{{ remote_subdir }}"
    directory_mode: 0700
    local_follow: True
  register: recursive_copy_result

- name: Assert that the second copy did not change anything
  assert:
    that:
      - "recursive_copy_result is not changed"

- name: Cleanup the recursive copy subdir
  file:
    name: "{{ remote_subdir }}"
    state: absent

#
# Recursive copy of tricky symlinks
#
- block:
  - name: Create a directory to copy from
    file:
      path: '{{ local_temp_dir }}/source1'
      state: directory

  - name: Create a directory outside of the tree
    file:
      path: '{{ local_temp_dir }}/source2'
      state: directory

  - name: Create a symlink to a directory outside of the tree
    file:
      path: '{{ local_temp_dir }}/source1/link'
      src: '{{ local_temp_dir }}/source2'
      state: link

  - name: Create a circular link back to the tree
    file:
      path: '{{ local_temp_dir }}/source2/circle'
      src: '../source1'
      state: link

  - name: Create output directory
    file:
      path: '{{ local_temp_dir }}/dest1'
      state: directory
  delegate_to: localhost

- name: Recursive copy the source
  copy:
    src: '{{ local_temp_dir }}/source1'
    dest: '{{ remote_dir }}/dest1'
    local_follow: True
  register: copy_result

- name: Check that the tree link is now a directory
  stat:
    path: '{{ remote_dir }}/dest1/source1/link'
  register: link_result

- name: Check that the out of tree link is still a link
  stat:
    path: '{{ remote_dir }}/dest1/source1/link/circle'
  register: circle_result

- name: Verify that the recursive copy worked
  assert:
    that:
      - 'copy_result.changed'
      - 'link_result.stat.isdir'
      - 'not link_result.stat.islnk'
      - 'circle_result.stat.islnk'
      - '"../source1" == circle_result.stat.lnk_target'

- name: Recursive copy the source a second time
  copy:
    src: '{{ local_temp_dir }}/source1'
    dest: '{{ remote_dir }}/dest1'
    local_follow: True
  register: copy_result

- name: Verify that the recursive copy made no changes
  assert:
    that:
      - 'not copy_result.changed'

#
# Recursive copy with absolute paths (#27439)
#
- name: Test that remote_dir is appropriate for this test (absolute path)
  assert:
    that:
      - '{{ remote_dir_expanded[0] == "/" }}'

- block:
  - name: Create a directory to copy
    file:
      path: '{{ local_temp_dir }}/source_recursive'
      state: directory

  - name: Create a file inside of the directory
    copy:
      content: "testing"
      dest: '{{ local_temp_dir }}/source_recursive/file'

  - name: Create a directory to place the test output in
    file:
      path: '{{ local_temp_dir }}/destination'
      state: directory
  delegate_to: localhost

- name: Copy the directory and files within (no trailing slash)
  copy:
    src: '{{ local_temp_dir }}/source_recursive'
    dest: '{{ remote_dir }}/destination'

- name: Stat the recursively copied directory
  stat:
    path: "{{ remote_dir }}/destination/{{ item }}"
  register: copied_stat
  with_items:
    - "source_recursive"
    - "source_recursive/file"
    - "file"

- debug:
    var: copied_stat
    verbosity: 1

- name: Assert with no trailing slash, directory and file is copied
  assert:
    that:
      - "copied_stat.results[0].stat.exists"
      - "copied_stat.results[1].stat.exists"
      - "not copied_stat.results[2].stat.exists"

- name: Cleanup
  file:
    path: '{{ remote_dir }}/destination'
    state: absent

# Try again with no trailing slash

- name: Create a directory to place the test output in
  file:
    path: '{{ remote_dir }}/destination'
    state: directory

- name: Copy just the files inside of the directory
  copy:
    src: '{{ local_temp_dir }}/source_recursive/'
    dest: '{{ remote_dir }}/destination'

- name: Stat the recursively copied directory
  stat:
    path: "{{ remote_dir }}/destination/{{ item }}"
  register: copied_stat
  with_items:
    - "source_recursive"
    - "source_recursive/file"
    - "file"

- debug:
    var: copied_stat
    verbosity: 1

- name: Assert with trailing slash, only the file is copied
  assert:
    that:
      - "not copied_stat.results[0].stat.exists"
      - "not copied_stat.results[1].stat.exists"
      - "copied_stat.results[2].stat.exists"

#
# Recursive copy with relative paths (#34893)
#

- name: Create a directory to copy
  file:
    path: 'source_recursive'
    state: directory
  delegate_to: localhost

- name: Create a file inside of the directory
  copy:
    content: "testing"
    dest: 'source_recursive/file'
  delegate_to: localhost

- name: Create a directory to place the test output in
  file:
    path: 'destination'
    state: directory
  delegate_to: localhost

- name: Copy the directory and files within (no trailing slash)
  copy:
    src: 'source_recursive'
    dest: 'destination'

- name: Stat the recursively copied directory
  stat:
    path: "destination/{{ item }}"
  register: copied_stat
  with_items:
    - "source_recursive"
    - "source_recursive/file"
    - "file"

- debug:
    var: copied_stat
    verbosity: 1

- name: Assert with no trailing slash, directory and file is copied
  assert:
    that:
      - "copied_stat.results[0].stat.exists"
      - "copied_stat.results[1].stat.exists"
      - "not copied_stat.results[2].stat.exists"

- name: Cleanup
  file:
    path: 'destination'
    state: absent

# Try again with no trailing slash

- name: Create a directory to place the test output in
  file:
    path: 'destination'
    state: directory

- name: Copy just the files inside of the directory
  copy:
    src: 'source_recursive/'
    dest: 'destination'

- name: Stat the recursively copied directory
  stat:
    path: "destination/{{ item }}"
  register: copied_stat
  with_items:
    - "source_recursive"
    - "source_recursive/file"
    - "file"

- debug:
    var: copied_stat
    verbosity: 1

- name: Assert with trailing slash, only the file is copied
  assert:
    that:
      - "not copied_stat.results[0].stat.exists"
      - "not copied_stat.results[1].stat.exists"
      - "copied_stat.results[2].stat.exists"

- name: Cleanup
  file:
    path: 'destination'
    state: absent

- name: Cleanup
  file:
    path: 'source_recursive'
    state: absent

#
# issue 8394
#

- name: Create a file with content and a literal multiline block
  copy:
    content: |
      this is the first line
      this is the second line

      this line is after an empty line
      this line is the last line
    dest: "{{ remote_dir }}/multiline.txt"
  register: copy_result6

- debug:
    var: copy_result6
    verbosity: 1

- name: Assert the multiline file was created correctly
  assert:
    that:
      - "copy_result6.changed"
      - "copy_result6.dest == remote_dir_expanded ~ '/multiline.txt'"
      - "copy_result6.checksum == '9cd0697c6a9ff6689f0afb9136fa62e0b3fee903'"

# test overwriting a file as an unprivileged user (pull request #8624)
# this can't be relative to {{remote_dir}} as ~root usually has mode 700
- block:
  - name: Create world writable directory
    file:
      dest: /tmp/worldwritable
      state: directory
      mode: 0777

  - name: Create world writable file
    copy:
      dest: /tmp/worldwritable/file.txt
      content: "bar"
      mode: 0666

  - name: Overwrite the file as user nobody
    copy:
      dest: /tmp/worldwritable/file.txt
      content: "baz"
    become: yes
    become_user: nobody
    register: copy_result7

  - name: Assert the file was overwritten
    assert:
      that:
        - "copy_result7.changed"
        - "copy_result7.dest == '/tmp/worldwritable/file.txt'"
        - "copy_result7.checksum == ('baz'|hash('sha1'))"

  - name: Clean up
    file:
      dest: /tmp/worldwritable
      state: absent

  remote_user: root

#
# Follow=True tests
#

# test overwriting a link using "follow=yes" so that the link
# is preserved and the link target is updated

- name: Create a test file to symlink to
  copy:
    dest: "{{ remote_dir }}/follow_test"
    content: "this is the follow test file\n"

- name: Create a symlink to the test file
  file:
    path: "{{ remote_dir }}/follow_link"
    src: './follow_test'
    state: link

- name: Update the test file using follow=True to preserve the link
  copy:
    dest: "{{ remote_dir }}/follow_link"
    src: foo.txt
    follow: yes
  register: replace_follow_result

- name: Stat the link path
  stat:
    path: "{{ remote_dir }}/follow_link"
  register: stat_link_result

- name: Assert that the link is still a link and contents were changed
  assert:
    that:
    - stat_link_result['stat']['islnk']
    - stat_link_result['stat']['lnk_target'] == './follow_test'
    - replace_follow_result['changed']
    - "replace_follow_result['checksum'] == remote_file_hash"

# Symlink handling when the dest is already there
# https://github.com/ansible/ansible-modules-core/issues/1568

- name: test idempotency by trying to copy to the symlink with the same contents
  copy:
    dest: "{{ remote_dir }}/follow_link"
    src: foo.txt
    follow: yes
  register: replace_follow_result

- name: Stat the link path
  stat:
    path: "{{ remote_dir }}/follow_link"
  register: stat_link_result

- name: Assert that the link is still a link and contents were changed
  assert:
    that:
    - stat_link_result['stat']['islnk']
    - stat_link_result['stat']['lnk_target'] == './follow_test'
    - not replace_follow_result['changed']
    - replace_follow_result['checksum'] == remote_file_hash


- name: Update the test file using follow=False to overwrite the link
  copy:
    dest: '{{ remote_dir }}/follow_link'
    content: 'modified'
    follow: False
  register: copy_results

- name: Check the stat results of the file
  stat:
    path: '{{remote_dir}}/follow_link'
  register: stat_results

- debug:
    var: stat_results
    verbosity: 1

- name: Assert that the file has changed and is not a link
  assert:
     that:
       - "copy_results is changed"
       - "'content' not in copy_results"
       - "stat_results.stat.checksum == ('modified'|hash('sha1'))"
       - "not stat_results.stat.islnk"

# test overwriting a link using "follow=yes" so that the link
# is preserved and the link target is updated when the thing being copied is a link

#
# File mode tests
#

- name: setup directory for test
  file: state=directory dest={{remote_dir }}/directory mode=0755

- name: set file mode when the destination is a directory
  copy: src=foo.txt dest={{remote_dir}}/directory/ mode=0705

- name: set file mode when the destination is a directory
  copy: src=foo.txt dest={{remote_dir}}/directory/ mode=0604
  register: file_result

- name: check that the file has the correct attributes
  stat: path={{ remote_dir }}/directory/foo.txt
  register: file_attrs

- assert:
    that:
      - "file_attrs.stat.mode == '0604'"
      # The below assertions make an invalid assumption, these were not explicitly set
      # - "file_attrs.stat.uid == 0"
      # - "file_attrs.stat.pw_name == 'root'"

- name: check that the containing directory did not change attributes
  stat: path={{ remote_dir }}/directory/
  register: dir_attrs

- assert:
    that:
      - "dir_attrs.stat.mode == '0755'"

# Test that recursive copy of a directory containing a symlink to another
# directory, with mode=preserve and local_follow=no works.
# See: https://github.com/ansible/ansible/issues/68471

- name: Test recursive copy of dir with symlinks, mode=preserve, local_follow=False
  copy:
    src: '{{ role_path }}/files/subdir/'
    dest: '{{ local_temp_dir }}/preserve_symlink/'
    mode: preserve
    local_follow: no

- name: check that we actually used and still have a symlink
  stat: path={{ local_temp_dir }}/preserve_symlink/subdir1/bar.txt
  register: symlink_path

- assert:
    that:
      - symlink_path.stat.exists
      - symlink_path.stat.islnk

#
# I believe the below section is now covered in the recursive copying section.
# Hold on for now as an original test case but delete once confirmed that
# everything is passing

#
# Recursive copying with symlinks tests
#
- delegate_to: localhost
  block:
  - name: Create a test dir to copy
    file:
      path: '{{ local_temp_dir }}/top_dir'
      state: directory

  - name: Create a test dir to symlink to
    file:
      path: '{{ local_temp_dir }}/linked_dir'
      state: directory

  - name: Create a file in the test dir
    copy:
      dest: '{{ local_temp_dir }}/linked_dir/file1'
      content: 'hello world'

  - name: Create a link to the test dir
    file:
      path: '{{ local_temp_dir }}/top_dir/follow_link_dir'
      src: '{{ local_temp_dir }}/linked_dir'
      state: link

  - name: Create a circular subdir
    file:
      path: '{{ local_temp_dir }}/top_dir/subdir'
      state: directory

  ### FIXME:  Also add a test for a relative symlink
  - name: Create a circular symlink
    file:
      path: '{{ local_temp_dir }}/top_dir/subdir/circle'
      src: '{{ local_temp_dir }}/top_dir/'
      state: link

- name: Copy the directory's link
  copy:
    src: '{{ local_temp_dir }}/top_dir'
    dest: '{{ remote_dir }}/new_dir'
    local_follow: True

- name: Stat the copied path
  stat:
    path: '{{ remote_dir }}/new_dir/top_dir/follow_link_dir'
  register: stat_dir_result

- name: Stat the copied file
  stat:
    path: '{{ remote_dir }}/new_dir/top_dir/follow_link_dir/file1'
  register: stat_file_in_dir_result

- name: Stat the circular symlink
  stat:
    path: '{{ remote_dir }}/new_dir/top_dir/subdir/circle'
  register: stat_circular_symlink_result

- name: Assert that the directory exists
  assert:
    that:
    - stat_dir_result.stat.exists
    - stat_dir_result.stat.isdir
    - stat_file_in_dir_result.stat.exists
    - stat_file_in_dir_result.stat.isreg
    - stat_circular_symlink_result.stat.exists
    - stat_circular_symlink_result.stat.islnk

# Relative paths in dest:
- name: Smoketest that copying content to an implicit relative path works
  copy:
    content: 'testing'
    dest: 'ansible-testing.txt'
  register: relative_results

- name: Assert that copying to an implicit relative path reported changed
  assert:
    that:
      - 'relative_results["changed"]'
      - 'relative_results["checksum"] == "dc724af18fbdd4e59189f5fe768a5f8311527050"'

- name: Test that copying the same content with an implicit relative path reports no change
  copy:
    content: 'testing'
    dest: 'ansible-testing.txt'
  register: relative_results

- name: Assert that copying the same content with an implicit relative path reports no change
  assert:
    that:
      - 'not relative_results["changed"]'
      - 'relative_results["checksum"] == "dc724af18fbdd4e59189f5fe768a5f8311527050"'

- name: Test that copying different content with an implicit relative path reports change
  copy:
    content: 'testing2'
    dest: 'ansible-testing.txt'
  register: relative_results

- name: Assert that copying different content with an implicit relative path reports changed
  assert:
    that:
      - 'relative_results["changed"]'
      - 'relative_results["checksum"] == "596b29ec9afea9e461a20610d150939b9c399d93"'

- name: Smoketest that explicit relative path works
  copy:
    content: 'testing'
    dest: './ansible-testing.txt'
  register: relative_results

- name: Assert that explicit relative paths reports change
  assert:
    that:
      - 'relative_results["changed"]'
      - 'relative_results["checksum"] == "dc724af18fbdd4e59189f5fe768a5f8311527050"'

- name: Cleanup relative path tests
  file:
    path: 'ansible-testing.txt'
    state: absent

# src is a file, dest is a non-existent directory (2 levels of directories):
# using remote_src
# checks that dest is created
- include_tasks: file=dest_in_non_existent_directories_remote_src.yml
  with_items:
    - { src: 'foo.txt', dest: 'new_sub_dir1/sub_dir2/', check: 'new_sub_dir1/sub_dir2/foo.txt' }

# src is a file, dest is file in a non-existent directory: checks that a failure occurs
# using remote_src
- include_tasks: file=src_file_dest_file_in_non_existent_dir_remote_src.yml
  with_items:
    - 'new_sub_dir1/sub_dir2/foo.txt'
    - 'new_sub_dir1/foo.txt'
  loop_control:
    loop_var: 'dest'

# src is a file, dest is a non-existent directory (2 levels of directories):
# checks that dest is created
- include_tasks: file=dest_in_non_existent_directories.yml
  with_items:
    - { src: 'foo.txt', dest: 'new_sub_dir1/sub_dir2/', check: 'new_sub_dir1/sub_dir2/foo.txt' }
    - { src: 'subdir', dest: 'new_sub_dir1/sub_dir2/', check: 'new_sub_dir1/sub_dir2/subdir/bar.txt' }
    - { src: 'subdir/', dest: 'new_sub_dir1/sub_dir2/', check: 'new_sub_dir1/sub_dir2/bar.txt' }
    - { src: 'subdir', dest: 'new_sub_dir1/sub_dir2', check: 'new_sub_dir1/sub_dir2/subdir/bar.txt' }
    - { src: 'subdir/', dest: 'new_sub_dir1/sub_dir2', check: 'new_sub_dir1/sub_dir2/bar.txt' }

# src is a file, dest is file in a non-existent directory: checks that a failure occurs
- include_tasks: file=src_file_dest_file_in_non_existent_dir.yml
  with_items:
    - 'new_sub_dir1/sub_dir2/foo.txt'
    - 'new_sub_dir1/foo.txt'
  loop_control:
    loop_var: 'dest'
#
# Recursive copying on remote host
#
## prepare for test
- block:

  - name: execute - Create a test src dir
    file:
      path: '{{ remote_dir }}/remote_dir_src'
      state: directory

  - name: gather - Stat the remote_dir_src
    stat:
      path: '{{ remote_dir }}/remote_dir_src'
    register: stat_remote_dir_src_before

  - name: execute - Create a subdir
    file:
      path: '{{ remote_dir }}/remote_dir_src/subdir'
      state: directory

  - name: gather - Stat the remote_dir_src/subdir
    stat:
      path: '{{ remote_dir }}/remote_dir_src/subdir'
    register: stat_remote_dir_src_subdir_before

  - name: execute - Create a file in the top of src
    copy:
      dest: '{{ remote_dir }}/remote_dir_src/file1'
      content: 'hello world 1'

  - name: gather - Stat the remote_dir_src/file1
    stat:
      path: '{{ remote_dir }}/remote_dir_src/file1'
    register: stat_remote_dir_src_file1_before

  - name: execute - Create a file in the subdir
    copy:
      dest: '{{ remote_dir }}/remote_dir_src/subdir/file12'
      content: 'hello world 12'

  - name: gather - Stat the remote_dir_src/subdir/file12
    stat:
      path: '{{ remote_dir }}/remote_dir_src/subdir/file12'
    register: stat_remote_dir_src_subdir_file12_before

  - name: execute -  Create a link to the file12
    file:
      path: '{{ remote_dir }}/remote_dir_src/link_file12'
      src: '{{ remote_dir }}/remote_dir_src/subdir/file12'
      state: link

  - name: gather - Stat the remote_dir_src/link_file12
    stat:
      path: '{{ remote_dir }}/remote_dir_src/link_file12'
    register: stat_remote_dir_src_link_file12_before

### test when src endswith os.sep and dest isdir
- block:

### local_follow: True
  - name: execute - Create a test dest dir
    file:
      path: '{{ remote_dir }}/testcase1_local_follow_true'
      state: directory

  - name: execute - Copy the directory on remote with local_follow True
    copy:
      remote_src: True
      src: '{{ remote_dir }}/remote_dir_src/'
      dest: '{{ remote_dir }}/testcase1_local_follow_true'
      local_follow: True
    register: testcase1

  - name: gather - Stat the testcase1_local_follow_true
    stat:
      path: '{{ remote_dir }}/testcase1_local_follow_true'
    register: stat_testcase1_local_follow_true
  - name: gather - Stat the testcase1_local_follow_true/subdir
    stat:
      path: '{{ remote_dir }}/testcase1_local_follow_true/subdir'
    register: stat_testcase1_local_follow_true_subdir
  - name: gather - Stat the testcase1_local_follow_true/file1
    stat:
      path: '{{ remote_dir }}/testcase1_local_follow_true/file1'
    register: stat_testcase1_local_follow_true_file1
  - name: gather - Stat the testcase1_local_follow_true/subdir/file12
    stat:
      path: '{{ remote_dir }}/testcase1_local_follow_true/subdir/file12'
    register: stat_testcase1_local_follow_true_subdir_file12
  - name: gather - Stat the testcase1_local_follow_true/link_file12
    stat:
      path: '{{ remote_dir }}/testcase1_local_follow_true/link_file12'
    register: stat_testcase1_local_follow_true_link_file12

  - name: assert - remote_dir_src has copied with local_follow True.
    assert:
      that:
      - testcase1 is changed
      - "stat_testcase1_local_follow_true.stat.isdir"
      - "stat_testcase1_local_follow_true_subdir.stat.isdir"
      - "stat_testcase1_local_follow_true_file1.stat.exists"
      - "stat_remote_dir_src_file1_before.stat.checksum == stat_testcase1_local_follow_true_file1.stat.checksum"
      - "stat_testcase1_local_follow_true_subdir_file12.stat.exists"
      - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase1_local_follow_true_subdir_file12.stat.checksum"
      - "stat_testcase1_local_follow_true_link_file12.stat.exists"
      - "not stat_testcase1_local_follow_true_link_file12.stat.islnk"
      - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase1_local_follow_true_link_file12.stat.checksum"

### local_follow: False
  - name: execute - Create a test dest dir
    file:
      path: '{{ remote_dir }}/testcase1_local_follow_false'
      state: directory

  - name: execute - Copy the directory on remote with local_follow False
    copy:
      remote_src: True
      src: '{{ remote_dir }}/remote_dir_src/'
      dest: '{{ remote_dir }}/testcase1_local_follow_false'
      local_follow: False
    register: testcase1

  - name: gather - Stat the testcase1_local_follow_false
    stat:
      path: '{{ remote_dir }}/testcase1_local_follow_false'
    register: stat_testcase1_local_follow_false
  - name: gather - Stat the testcase1_local_follow_false/subdir
    stat:
      path: '{{ remote_dir }}/testcase1_local_follow_false/subdir'
    register: stat_testcase1_local_follow_false_subdir
  - name: gather - Stat the testcase1_local_follow_false/file1
    stat:
      path: '{{ remote_dir }}/testcase1_local_follow_false/file1'
    register: stat_testcase1_local_follow_false_file1
  - name: gather - Stat the testcase1_local_follow_false/subdir/file12
    stat:
      path: '{{ remote_dir }}/testcase1_local_follow_false/subdir/file12'
    register: stat_testcase1_local_follow_false_subdir_file12
  - name: gather - Stat the testcase1_local_follow_false/link_file12
    stat:
      path: '{{ remote_dir }}/testcase1_local_follow_false/link_file12'
    register: stat_testcase1_local_follow_false_link_file12

  - name: assert - remote_dir_src has copied with local_follow True.
    assert:
      that:
      - testcase1 is changed
      - "stat_testcase1_local_follow_false.stat.isdir"
      - "stat_testcase1_local_follow_false_subdir.stat.isdir"
      - "stat_testcase1_local_follow_false_file1.stat.exists"
      - "stat_remote_dir_src_file1_before.stat.checksum == stat_testcase1_local_follow_false_file1.stat.checksum"
      - "stat_testcase1_local_follow_false_subdir_file12.stat.exists"
      - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase1_local_follow_false_subdir_file12.stat.checksum"
      - "stat_testcase1_local_follow_false_link_file12.stat.exists"
      - "stat_testcase1_local_follow_false_link_file12.stat.islnk"

## test when src endswith os.sep and dest not exists

- block:
    - name: execute - Copy the directory on remote with local_follow True
      copy:
        remote_src: True
        src: '{{ remote_dir }}/remote_dir_src/'
        dest: '{{ remote_dir }}/testcase2_local_follow_true'
        local_follow: True
      register: testcase2

    - name: gather - Stat the testcase2_local_follow_true
      stat:
        path: '{{ remote_dir }}/testcase2_local_follow_true'
      register: stat_testcase2_local_follow_true
    - name: gather - Stat the testcase2_local_follow_true/subdir
      stat:
        path: '{{ remote_dir }}/testcase2_local_follow_true/subdir'
      register: stat_testcase2_local_follow_true_subdir
    - name: gather - Stat the testcase2_local_follow_true/file1
      stat:
        path: '{{ remote_dir }}/testcase2_local_follow_true/file1'
      register: stat_testcase2_local_follow_true_file1
    - name: gather - Stat the testcase2_local_follow_true/subdir/file12
      stat:
        path: '{{ remote_dir }}/testcase2_local_follow_true/subdir/file12'
      register: stat_testcase2_local_follow_true_subdir_file12
    - name: gather - Stat the testcase2_local_follow_true/link_file12
      stat:
        path: '{{ remote_dir }}/testcase2_local_follow_true/link_file12'
      register: stat_testcase2_local_follow_true_link_file12

    - name: assert - remote_dir_src has copied with local_follow True.
      assert:
        that:
        - testcase2 is changed
        - "stat_testcase2_local_follow_true.stat.isdir"
        - "stat_testcase2_local_follow_true_subdir.stat.isdir"
        - "stat_testcase2_local_follow_true_file1.stat.exists"
        - "stat_remote_dir_src_file1_before.stat.checksum == stat_testcase2_local_follow_true_file1.stat.checksum"
        - "stat_testcase2_local_follow_true_subdir_file12.stat.exists"
        - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase2_local_follow_true_subdir_file12.stat.checksum"
        - "stat_testcase2_local_follow_true_link_file12.stat.exists"
        - "not stat_testcase2_local_follow_true_link_file12.stat.islnk"
        - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase2_local_follow_true_link_file12.stat.checksum"

### local_follow: False
    - name: execute - Copy the directory on remote with local_follow False
      copy:
        remote_src: True
        src: '{{ remote_dir }}/remote_dir_src/'
        dest: '{{ remote_dir }}/testcase2_local_follow_false'
        local_follow: False
      register: testcase2

    - name: execute - Copy the directory on remote with local_follow False
      copy:
        remote_src: True
        src: '{{ remote_dir }}/remote_dir_src/'
        dest: '{{ remote_dir }}/testcase2_local_follow_false'
        local_follow: False
      register: testcase1

    - name: gather - Stat the testcase2_local_follow_false
      stat:
        path: '{{ remote_dir }}/testcase2_local_follow_false'
      register: stat_testcase2_local_follow_false
    - name: gather - Stat the testcase2_local_follow_false/subdir
      stat:
        path: '{{ remote_dir }}/testcase2_local_follow_false/subdir'
      register: stat_testcase2_local_follow_false_subdir
    - name: gather - Stat the testcase2_local_follow_false/file1
      stat:
        path: '{{ remote_dir }}/testcase2_local_follow_false/file1'
      register: stat_testcase2_local_follow_false_file1
    - name: gather - Stat the testcase2_local_follow_false/subdir/file12
      stat:
        path: '{{ remote_dir }}/testcase2_local_follow_false/subdir/file12'
      register: stat_testcase2_local_follow_false_subdir_file12
    - name: gather - Stat the testcase2_local_follow_false/link_file12
      stat:
        path: '{{ remote_dir }}/testcase2_local_follow_false/link_file12'
      register: stat_testcase2_local_follow_false_link_file12

    - name: assert - remote_dir_src has copied with local_follow True.
      assert:
        that:
        - testcase2 is changed
        - "stat_testcase2_local_follow_false.stat.isdir"
        - "stat_testcase2_local_follow_false_subdir.stat.isdir"
        - "stat_testcase2_local_follow_false_file1.stat.exists"
        - "stat_remote_dir_src_file1_before.stat.checksum == stat_testcase2_local_follow_false_file1.stat.checksum"
        - "stat_testcase2_local_follow_false_subdir_file12.stat.exists"
        - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase2_local_follow_false_subdir_file12.stat.checksum"
        - "stat_testcase2_local_follow_false_link_file12.stat.exists"
        - "stat_testcase2_local_follow_false_link_file12.stat.islnk"

## test when src not endswith os.sep and dest isdir
- block:

### local_follow: True
  - name: execute - Create a test dest dir
    file:
      path: '{{ remote_dir }}/testcase3_local_follow_true'
      state: directory

  - name: execute - Copy the directory on remote with local_follow True
    copy:
      remote_src: True
      src: '{{ remote_dir }}/remote_dir_src'
      dest: '{{ remote_dir }}/testcase3_local_follow_true'
      local_follow: True
    register: testcase3

  - name: gather - Stat the testcase3_local_follow_true
    stat:
      path: '{{ remote_dir }}/testcase3_local_follow_true/remote_dir_src'
    register: stat_testcase3_local_follow_true_remote_dir_src
  - name: gather - Stat the testcase3_local_follow_true/remote_dir_src/subdir
    stat:
      path: '{{ remote_dir }}/testcase3_local_follow_true/remote_dir_src/subdir'
    register: stat_testcase3_local_follow_true_remote_dir_src_subdir
  - name: gather - Stat the testcase3_local_follow_true/remote_dir_src/file1
    stat:
      path: '{{ remote_dir }}/testcase3_local_follow_true/remote_dir_src/file1'
    register: stat_testcase3_local_follow_true_remote_dir_src_file1
  - name: gather - Stat the testcase3_local_follow_true/remote_dir_src/subdir/file12
    stat:
      path: '{{ remote_dir }}/testcase3_local_follow_true/remote_dir_src/subdir/file12'
    register: stat_testcase3_local_follow_true_remote_dir_src_subdir_file12
  - name: gather - Stat the testcase3_local_follow_true/remote_dir_src/link_file12
    stat:
      path: '{{ remote_dir }}/testcase3_local_follow_true/remote_dir_src/link_file12'
    register: stat_testcase3_local_follow_true_remote_dir_src_link_file12

  - name: assert - remote_dir_src has copied with local_follow True.
    assert:
      that:
      - testcase3 is changed
      - "stat_testcase3_local_follow_true_remote_dir_src.stat.isdir"
      - "stat_testcase3_local_follow_true_remote_dir_src_subdir.stat.isdir"
      - "stat_testcase3_local_follow_true_remote_dir_src_file1.stat.exists"
      - "stat_remote_dir_src_file1_before.stat.checksum == stat_testcase3_local_follow_true_remote_dir_src_file1.stat.checksum"
      - "stat_testcase3_local_follow_true_remote_dir_src_subdir_file12.stat.exists"
      - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase3_local_follow_true_remote_dir_src_subdir_file12.stat.checksum"
      - "stat_testcase3_local_follow_true_remote_dir_src_link_file12.stat.exists"
      - "not stat_testcase3_local_follow_true_remote_dir_src_link_file12.stat.islnk"
      - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase3_local_follow_true_remote_dir_src_link_file12.stat.checksum"

### local_follow: False
  - name: execute - Create a test dest dir
    file:
      path: '{{ remote_dir }}/testcase3_local_follow_false'
      state: directory

  - name: execute - Copy the directory on remote with local_follow False
    copy:
      remote_src: True
      src: '{{ remote_dir }}/remote_dir_src'
      dest: '{{ remote_dir }}/testcase3_local_follow_false'
      local_follow: False
    register: testcase3

  - name: gather - Stat the testcase3_local_follow_false
    stat:
      path: '{{ remote_dir }}/testcase3_local_follow_false/remote_dir_src'
    register: stat_testcase3_local_follow_false_remote_dir_src
  - name: gather - Stat the testcase3_local_follow_false/remote_dir_src/subdir
    stat:
      path: '{{ remote_dir }}/testcase3_local_follow_false/remote_dir_src/subdir'
    register: stat_testcase3_local_follow_false_remote_dir_src_subdir
  - name: gather - Stat the testcase3_local_follow_false/remote_dir_src/file1
    stat:
      path: '{{ remote_dir }}/testcase3_local_follow_false/remote_dir_src/file1'
    register: stat_testcase3_local_follow_false_remote_dir_src_file1
  - name: gather - Stat the testcase3_local_follow_false/remote_dir_src/subdir/file12
    stat:
      path: '{{ remote_dir }}/testcase3_local_follow_false/remote_dir_src/subdir/file12'
    register: stat_testcase3_local_follow_false_remote_dir_src_subdir_file12
  - name: gather - Stat the testcase3_local_follow_false/remote_dir_src/link_file12
    stat:
      path: '{{ remote_dir }}/testcase3_local_follow_false/remote_dir_src/link_file12'
    register: stat_testcase3_local_follow_false_remote_dir_src_link_file12

  - name: assert - remote_dir_src has copied with local_follow False.
    assert:
      that:
      - testcase3 is changed
      - "stat_testcase3_local_follow_false_remote_dir_src.stat.isdir"
      - "stat_testcase3_local_follow_false_remote_dir_src_subdir.stat.isdir"
      - "stat_testcase3_local_follow_false_remote_dir_src_file1.stat.exists"
      - "stat_remote_dir_src_file1_before.stat.checksum == stat_testcase3_local_follow_false_remote_dir_src_file1.stat.checksum"
      - "stat_testcase3_local_follow_false_remote_dir_src_subdir_file12.stat.exists"
      - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase3_local_follow_false_remote_dir_src_subdir_file12.stat.checksum"
      - "stat_testcase3_local_follow_false_remote_dir_src_link_file12.stat.exists"
      - "stat_testcase3_local_follow_false_remote_dir_src_link_file12.stat.islnk"

## test when src not endswith os.sep and dest not exists
- block:
### local_follow: True
  - name: execute - Copy the directory on remote with local_follow True
    copy:
      remote_src: True
      src: '{{ remote_dir }}/remote_dir_src'
      dest: '{{ remote_dir }}/testcase4_local_follow_true'
      local_follow: True
    register: testcase4

  - name: gather - Stat the testcase4_local_follow_true
    stat:
      path: '{{ remote_dir }}/testcase4_local_follow_true/remote_dir_src'
    register: stat_testcase4_local_follow_true_remote_dir_src
  - name: gather - Stat the testcase4_local_follow_true/remote_dir_src/subdir
    stat:
      path: '{{ remote_dir }}/testcase4_local_follow_true/remote_dir_src/subdir'
    register: stat_testcase4_local_follow_true_remote_dir_src_subdir
  - name: gather - Stat the testcase4_local_follow_true/remote_dir_src/file1
    stat:
      path: '{{ remote_dir }}/testcase4_local_follow_true/remote_dir_src/file1'
    register: stat_testcase4_local_follow_true_remote_dir_src_file1
  - name: gather - Stat the testcase4_local_follow_true/remote_dir_src/subdir/file12
    stat:
      path: '{{ remote_dir }}/testcase4_local_follow_true/remote_dir_src/subdir/file12'
    register: stat_testcase4_local_follow_true_remote_dir_src_subdir_file12
  - name: gather - Stat the testcase4_local_follow_true/remote_dir_src/link_file12
    stat:
      path: '{{ remote_dir }}/testcase4_local_follow_true/remote_dir_src/link_file12'
    register: stat_testcase4_local_follow_true_remote_dir_src_link_file12

  - name: assert - remote_dir_src has copied with local_follow True.
    assert:
      that:
      - testcase4 is changed
      - "stat_testcase4_local_follow_true_remote_dir_src.stat.isdir"
      - "stat_testcase4_local_follow_true_remote_dir_src_subdir.stat.isdir"
      - "stat_testcase4_local_follow_true_remote_dir_src_file1.stat.exists"
      - "stat_remote_dir_src_file1_before.stat.checksum == stat_testcase4_local_follow_true_remote_dir_src_file1.stat.checksum"
      - "stat_testcase4_local_follow_true_remote_dir_src_subdir_file12.stat.exists"
      - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase4_local_follow_true_remote_dir_src_subdir_file12.stat.checksum"
      - "stat_testcase4_local_follow_true_remote_dir_src_link_file12.stat.exists"
      - "not stat_testcase4_local_follow_true_remote_dir_src_link_file12.stat.islnk"
      - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase4_local_follow_true_remote_dir_src_link_file12.stat.checksum"

### local_follow: False
  - name: execute - Copy the directory on remote with local_follow False
    copy:
      remote_src: True
      src: '{{ remote_dir }}/remote_dir_src'
      dest: '{{ remote_dir }}/testcase4_local_follow_false'
      local_follow: False
    register: testcase4

  - name: gather - Stat the testcase4_local_follow_false
    stat:
      path: '{{ remote_dir }}/testcase4_local_follow_false/remote_dir_src'
    register: stat_testcase4_local_follow_false_remote_dir_src
  - name: gather - Stat the testcase4_local_follow_false/remote_dir_src/subdir
    stat:
      path: '{{ remote_dir }}/testcase4_local_follow_false/remote_dir_src/subdir'
    register: stat_testcase4_local_follow_false_remote_dir_src_subdir
  - name: gather - Stat the testcase4_local_follow_false/remote_dir_src/file1
    stat:
      path: '{{ remote_dir }}/testcase4_local_follow_false/remote_dir_src/file1'
    register: stat_testcase4_local_follow_false_remote_dir_src_file1
  - name: gather - Stat the testcase4_local_follow_false/remote_dir_src/subdir/file12
    stat:
      path: '{{ remote_dir }}/testcase4_local_follow_false/remote_dir_src/subdir/file12'
    register: stat_testcase4_local_follow_false_remote_dir_src_subdir_file12
  - name: gather - Stat the testcase4_local_follow_false/remote_dir_src/link_file12
    stat:
      path: '{{ remote_dir }}/testcase4_local_follow_false/remote_dir_src/link_file12'
    register: stat_testcase4_local_follow_false_remote_dir_src_link_file12

  - name: assert - remote_dir_src has copied with local_follow False.
    assert:
      that:
      - testcase4 is changed
      - "stat_testcase4_local_follow_false_remote_dir_src.stat.isdir"
      - "stat_testcase4_local_follow_false_remote_dir_src_subdir.stat.isdir"
      - "stat_testcase4_local_follow_false_remote_dir_src_file1.stat.exists"
      - "stat_remote_dir_src_file1_before.stat.checksum == stat_testcase4_local_follow_false_remote_dir_src_file1.stat.checksum"
      - "stat_testcase4_local_follow_false_remote_dir_src_subdir_file12.stat.exists"
      - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_testcase4_local_follow_false_remote_dir_src_subdir_file12.stat.checksum"
      - "stat_testcase4_local_follow_false_remote_dir_src_link_file12.stat.exists"
      - "stat_testcase4_local_follow_false_remote_dir_src_link_file12.stat.islnk"

- block:
  - name: execute - Clone the source directory on remote
    copy:
      remote_src: True
      src: '{{ remote_dir }}/remote_dir_src/'
      dest: '{{ remote_dir }}/testcase5_remote_src_subdirs_src'
  - name: Create a 2nd level subdirectory
    file:
      path: '{{ remote_dir }}/testcase5_remote_src_subdirs_src/subdir/subdir2/'
      state: directory
  - name: execute - Copy the directory on remote
    copy:
      remote_src: True
      src: '{{ remote_dir }}/testcase5_remote_src_subdirs_src/'
      dest: '{{ remote_dir }}/testcase5_remote_src_subdirs_dest'
      local_follow: True
  - name: execute - Create a new file in the subdir
    copy:
      dest: '{{ remote_dir }}/testcase5_remote_src_subdirs_src/subdir/subdir2/file13'
      content: 'very new file'
  - name: gather - Stat the testcase5_remote_src_subdirs_src/subdir/subdir2/file13
    stat:
      path: '{{ remote_dir }}/testcase5_remote_src_subdirs_src/subdir/subdir2/file13'
  - name: execute - Copy the directory on remote
    copy:
      remote_src: True
      src: '{{ remote_dir }}/testcase5_remote_src_subdirs_src/'
      dest: '{{ remote_dir }}/testcase5_remote_src_subdirs_dest/'
    register: testcase5_new
  - name: execute - Edit a file in the subdir
    copy:
      dest: '{{ remote_dir }}/testcase5_remote_src_subdirs_src/subdir/subdir2/file13'
      content: 'NOT hello world 12'
  - name: gather - Stat the testcase5_remote_src_subdirs_src/subdir/subdir2/file13
    stat:
      path: '{{ remote_dir }}/testcase5_remote_src_subdirs_src/subdir/subdir2/file13'
    register: stat_testcase5_remote_src_subdirs_file13_before
  - name: execute - Copy the directory on remote
    copy:
      remote_src: True
      src: '{{ remote_dir }}/testcase5_remote_src_subdirs_src/'
      dest: '{{ remote_dir }}/testcase5_remote_src_subdirs_dest/'
    register: testcase5_edited
  - name: gather - Stat the testcase5_remote_src_subdirs_dest/subdir/subdir2/file13
    stat:
      path: '{{ remote_dir }}/testcase5_remote_src_subdirs_dest/subdir/subdir2/file13'
    register: stat_testcase5_remote_src_subdirs_file13
  - name: assert - remote_dir_src has copied with local_follow False.
    assert:
      that:
      - testcase5_new is changed
      - testcase5_edited is changed
      - "stat_testcase5_remote_src_subdirs_file13.stat.exists"
      - "stat_testcase5_remote_src_subdirs_file13_before.stat.checksum == stat_testcase5_remote_src_subdirs_file13.stat.checksum"


## test copying the directory on remote with chown
- name: setting 'ansible_copy_test_user_name' outside block since 'always' section depends on this also
  set_fact:
    ansible_copy_test_user_name: 'ansible_copy_test_{{ 100000 | random }}'

- block:

  - name: execute - create a user for test
    user:
      name: '{{ ansible_copy_test_user_name }}'
      state: present
    become: true
    register: ansible_copy_test_user

  - name: execute - create a group for test
    group:
      name: '{{ ansible_copy_test_user_name }}'
      state: present
    become: true
    register: ansible_copy_test_group

  - name: execute - Copy the directory on remote with chown
    copy:
      remote_src: True
      src: '{{ remote_dir_expanded }}/remote_dir_src/'
      dest: '{{ remote_dir_expanded }}/new_dir_with_chown'
      owner: '{{ ansible_copy_test_user_name }}'
      group: '{{ ansible_copy_test_user_name }}'
      follow: true
    register: testcase5
    become: true

  - name: gather - Stat the new_dir_with_chown
    stat:
      path: '{{ remote_dir }}/new_dir_with_chown'
    register: stat_new_dir_with_chown

  - name: gather - Stat the new_dir_with_chown/file1
    stat:
      path: '{{ remote_dir }}/new_dir_with_chown/file1'
    register: stat_new_dir_with_chown_file1

  - name: gather - Stat the new_dir_with_chown/subdir
    stat:
      path: '{{ remote_dir }}/new_dir_with_chown/subdir'
    register: stat_new_dir_with_chown_subdir

  - name: gather - Stat the new_dir_with_chown/subdir/file12
    stat:
      path: '{{ remote_dir }}/new_dir_with_chown/subdir/file12'
    register: stat_new_dir_with_chown_subdir_file12

  - name: gather - Stat the new_dir_with_chown/link_file12
    stat:
      path: '{{ remote_dir }}/new_dir_with_chown/link_file12'
    register: stat_new_dir_with_chown_link_file12

  - name: assert - owner and group have changed
    assert:
      that:
      - testcase5 is changed
      - "stat_new_dir_with_chown.stat.uid == ansible_copy_test_user.uid"
      - "stat_new_dir_with_chown.stat.gid == ansible_copy_test_group.gid"
      - "stat_new_dir_with_chown.stat.pw_name == ansible_copy_test_user_name"
      - "stat_new_dir_with_chown.stat.gr_name == ansible_copy_test_user_name"
      - "stat_new_dir_with_chown_file1.stat.uid == ansible_copy_test_user.uid"
      - "stat_new_dir_with_chown_file1.stat.gid == ansible_copy_test_group.gid"
      - "stat_new_dir_with_chown_file1.stat.pw_name == ansible_copy_test_user_name"
      - "stat_new_dir_with_chown_file1.stat.gr_name == ansible_copy_test_user_name"
      - "stat_new_dir_with_chown_subdir.stat.uid == ansible_copy_test_user.uid"
      - "stat_new_dir_with_chown_subdir.stat.gid == ansible_copy_test_group.gid"
      - "stat_new_dir_with_chown_subdir.stat.pw_name == ansible_copy_test_user_name"
      - "stat_new_dir_with_chown_subdir.stat.gr_name == ansible_copy_test_user_name"
      - "stat_new_dir_with_chown_subdir_file12.stat.uid == ansible_copy_test_user.uid"
      - "stat_new_dir_with_chown_subdir_file12.stat.gid == ansible_copy_test_group.gid"
      - "stat_new_dir_with_chown_subdir_file12.stat.pw_name == ansible_copy_test_user_name"
      - "stat_new_dir_with_chown_subdir_file12.stat.gr_name == ansible_copy_test_user_name"
      - "stat_new_dir_with_chown_link_file12.stat.uid == ansible_copy_test_user.uid"
      - "stat_new_dir_with_chown_link_file12.stat.gid == ansible_copy_test_group.gid"
      - "stat_new_dir_with_chown_link_file12.stat.pw_name == ansible_copy_test_user_name"
      - "stat_new_dir_with_chown_link_file12.stat.gr_name == ansible_copy_test_user_name"

  always:
    - name: execute - remove the user for test
      user:
        name: '{{ ansible_copy_test_user_name }}'
        state: absent
        remove: yes
      become: true

    - name: execute - remove the group for test
      group:
        name: '{{ ansible_copy_test_user_name }}'
        state: absent
      become: true

## testcase last - make sure remote_dir_src not change
- block:
   - name: Stat the remote_dir_src
     stat:
       path: '{{ remote_dir }}/remote_dir_src'
     register: stat_remote_dir_src_after

   - name: Stat the remote_dir_src/subdir
     stat:
       path: '{{ remote_dir }}/remote_dir_src/subdir'
     register: stat_remote_dir_src_subdir_after

   - name: Stat the remote_dir_src/file1
     stat:
       path: '{{ remote_dir }}/remote_dir_src/file1'
     register: stat_remote_dir_src_file1_after

   - name: Stat the remote_dir_src/subdir/file12
     stat:
       path: '{{ remote_dir }}/remote_dir_src/subdir/file12'
     register: stat_remote_dir_src_subdir_file12_after

   - name: Stat the remote_dir_src/link_file12
     stat:
       path: '{{ remote_dir }}/remote_dir_src/link_file12'
     register: stat_remote_dir_src_link_file12_after

   - name: Assert that remote_dir_src not change.
     assert:
       that:
       - "stat_remote_dir_src_after.stat.exists"
       - "stat_remote_dir_src_after.stat.isdir"
       - "stat_remote_dir_src_before.stat.uid == stat_remote_dir_src_after.stat.uid"
       - "stat_remote_dir_src_before.stat.gid == stat_remote_dir_src_after.stat.gid"
       - "stat_remote_dir_src_before.stat.pw_name == stat_remote_dir_src_after.stat.pw_name"
       - "stat_remote_dir_src_before.stat.gr_name == stat_remote_dir_src_after.stat.gr_name"
       - "stat_remote_dir_src_before.stat.path == stat_remote_dir_src_after.stat.path"
       - "stat_remote_dir_src_before.stat.mode == stat_remote_dir_src_after.stat.mode"

       - "stat_remote_dir_src_subdir_after.stat.exists"
       - "stat_remote_dir_src_subdir_after.stat.isdir"
       - "stat_remote_dir_src_subdir_before.stat.uid == stat_remote_dir_src_subdir_after.stat.uid"
       - "stat_remote_dir_src_subdir_before.stat.gid == stat_remote_dir_src_subdir_after.stat.gid"
       - "stat_remote_dir_src_subdir_before.stat.pw_name == stat_remote_dir_src_subdir_after.stat.pw_name"
       - "stat_remote_dir_src_subdir_before.stat.gr_name == stat_remote_dir_src_subdir_after.stat.gr_name"
       - "stat_remote_dir_src_subdir_before.stat.path == stat_remote_dir_src_subdir_after.stat.path"
       - "stat_remote_dir_src_subdir_before.stat.mode == stat_remote_dir_src_subdir_after.stat.mode"

       - "stat_remote_dir_src_file1_after.stat.exists"
       - "stat_remote_dir_src_file1_before.stat.uid == stat_remote_dir_src_file1_after.stat.uid"
       - "stat_remote_dir_src_file1_before.stat.gid == stat_remote_dir_src_file1_after.stat.gid"
       - "stat_remote_dir_src_file1_before.stat.pw_name == stat_remote_dir_src_file1_after.stat.pw_name"
       - "stat_remote_dir_src_file1_before.stat.gr_name == stat_remote_dir_src_file1_after.stat.gr_name"
       - "stat_remote_dir_src_file1_before.stat.path == stat_remote_dir_src_file1_after.stat.path"
       - "stat_remote_dir_src_file1_before.stat.mode == stat_remote_dir_src_file1_after.stat.mode"
       - "stat_remote_dir_src_file1_before.stat.checksum == stat_remote_dir_src_file1_after.stat.checksum"

       - "stat_remote_dir_src_subdir_file12_after.stat.exists"
       - "stat_remote_dir_src_subdir_file12_before.stat.uid == stat_remote_dir_src_subdir_file12_after.stat.uid"
       - "stat_remote_dir_src_subdir_file12_before.stat.gid == stat_remote_dir_src_subdir_file12_after.stat.gid"
       - "stat_remote_dir_src_subdir_file12_before.stat.pw_name == stat_remote_dir_src_subdir_file12_after.stat.pw_name"
       - "stat_remote_dir_src_subdir_file12_before.stat.gr_name == stat_remote_dir_src_subdir_file12_after.stat.gr_name"
       - "stat_remote_dir_src_subdir_file12_before.stat.path == stat_remote_dir_src_subdir_file12_after.stat.path"
       - "stat_remote_dir_src_subdir_file12_before.stat.mode == stat_remote_dir_src_subdir_file12_after.stat.mode"
       - "stat_remote_dir_src_subdir_file12_before.stat.checksum == stat_remote_dir_src_subdir_file12_after.stat.checksum"

       - "stat_remote_dir_src_link_file12_after.stat.exists"
       - "stat_remote_dir_src_link_file12_after.stat.islnk"
       - "stat_remote_dir_src_link_file12_before.stat.uid == stat_remote_dir_src_link_file12_after.stat.uid"
       - "stat_remote_dir_src_link_file12_before.stat.gid == stat_remote_dir_src_link_file12_after.stat.gid"
       - "stat_remote_dir_src_link_file12_before.stat.pw_name == stat_remote_dir_src_link_file12_after.stat.pw_name"
       - "stat_remote_dir_src_link_file12_before.stat.gr_name == stat_remote_dir_src_link_file12_after.stat.gr_name"
       - "stat_remote_dir_src_link_file12_before.stat.path == stat_remote_dir_src_link_file12_after.stat.path"
       - "stat_remote_dir_src_link_file12_before.stat.mode == stat_remote_dir_src_link_file12_after.stat.mode"

# Test for issue 69783: copy with remote_src=yes and src='dir/' preserves all permissions
- block:
   - name: Create directory structure
     file:
        path: "{{ local_temp_dir }}/test69783/{{ item }}"
        state: directory
     loop:
        - "src/dir"
        - "dest"

   - name: Create source file structure
     file:
        path: "{{ local_temp_dir }}/test69783/src/{{ item.name }}"
        state: touch
        mode: "{{ item.mode }}"
     loop:
        - { name: 'readwrite', mode: '0644' }
        - { name: 'executable', mode: '0755' }
        - { name: 'readonly', mode: '0444' }
        - { name: 'dir/readwrite', mode: '0644' }
        - { name: 'dir/executable', mode: '0755' }
        - { name: 'dir/readonly', mode: '0444' }

   - name: Recursive remote copy with preserve
     copy:
        src: "{{ local_temp_dir }}/test69783/src/"
        dest: "{{ local_temp_dir }}/test69783/dest/"
        remote_src: yes
        mode: preserve

   - name: Stat dest 'readwrite' file
     stat:
        path: "{{ local_temp_dir}}/test69783/dest/readwrite"
     register: dest_readwrite_stat

   - name: Stat dest 'executable' file
     stat:
        path: "{{ local_temp_dir}}/test69783/dest/executable"
     register: dest_executable_stat

   - name: Stat dest 'readonly' file
     stat:
        path: "{{ local_temp_dir}}/test69783/dest/readonly"
     register: dest_readonly_stat

   - name: Stat dest 'dir/readwrite' file
     stat:
        path: "{{ local_temp_dir}}/test69783/dest/dir/readwrite"
     register: dest_dir_readwrite_stat

   - name: Stat dest 'dir/executable' file
     stat:
        path: "{{ local_temp_dir}}/test69783/dest/dir/executable"
     register: dest_dir_executable_stat

   - name: Stat dest 'dir/readonly' file
     stat:
        path: "{{ local_temp_dir}}/test69783/dest/dir/readonly"
     register: dest_dir_readonly_stat

   - name: Assert modes are preserved
     assert:
       that:
         - "dest_readwrite_stat.stat.mode == '0644'"
         - "dest_executable_stat.stat.mode == '0755'"
         - "dest_readonly_stat.stat.mode == '0444'"
         - "dest_dir_readwrite_stat.stat.mode == '0644'"
         - "dest_dir_executable_stat.stat.mode == '0755'"
         - "dest_dir_readonly_stat.stat.mode == '0444'"

- name: fail to copy an encrypted file without the password set
  copy:
    src: '{{role_path}}/files-different/vault/vault-file'
    dest: '{{remote_tmp_dir}}/copy/file'
  register: fail_copy_encrypted_file
  ignore_errors: yes # weird failed_when doesn't work in this case

- name: assert failure message when copying an encrypted file without the password set
  assert:
    that:
    - fail_copy_encrypted_file is failed
    - fail_copy_encrypted_file.msg == 'A vault password or secret must be specified to decrypt {{role_path}}/files-different/vault/vault-file'

- name: fail to copy a directory with an encrypted file without the password
  copy:
    src: '{{role_path}}/files-different/vault'
    dest: '{{remote_tmp_dir}}/copy'
  register: fail_copy_directory_with_enc_file
  ignore_errors: yes

- name: assert failure message when copying a directory that contains an encrypted file without the password set
  assert:
    that:
    - fail_copy_directory_with_enc_file is failed
    - fail_copy_directory_with_enc_file.msg == 'A vault password or secret must be specified to decrypt {{role_path}}/files-different/vault/vault-file'