summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/assemble/tasks/main.yml
blob: 14eea3f34a20d7ab1bce8498e6af010a8aabdb68 (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
# test code for the assemble module
# (c) 2014, James Cammarata <jcammarata@ansible.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: copy the files to a new directory
  copy: src="./" dest="{{remote_tmp_dir}}/src"
  register: result

- name: create unicode file for test
  shell: echo "π" > {{ remote_tmp_dir }}/src/ßΩ.txt
  register: result

- name: assert that the new file was created
  assert:
    that:
    - "result.changed == true"

- name: test assemble with all fragments
  assemble: src="{{remote_tmp_dir}}/src" dest="{{remote_tmp_dir}}/assembled1"
  register: result

- name: assert the fragments were assembled
  assert:
    that:
    - "result.state == 'file'"
    - "result.changed == True"
    - "result.checksum == '74152e9224f774191bc0bedf460d35de86ad90e6'"

- name: test assemble with all fragments
  assemble: src="{{remote_tmp_dir}}/src" dest="{{remote_tmp_dir}}/assembled1"
  register: result

- name: assert that the same assemble made no changes
  assert:
    that:
    - "result.state == 'file'"
    - "result.changed == False"
    - "result.checksum == '74152e9224f774191bc0bedf460d35de86ad90e6'"

- name: test assemble with all fragments and decrypt=True
  assemble: src="{{remote_tmp_dir}}/src" dest="{{remote_tmp_dir}}/assembled2" decrypt=yes
  register: result

- name: assert the fragments were assembled with decrypt=True
  assert:
    that:
    - "result.state == 'file'"
    - "result.changed == True"
    - "result.checksum == '74152e9224f774191bc0bedf460d35de86ad90e6'"

- name: test assemble with all fragments and decrypt=True
  assemble: src="{{remote_tmp_dir}}/src" dest="{{remote_tmp_dir}}/assembled2" decrypt=yes
  register: result

- name: assert that the same assemble made no changes with decrypt=True
  assert:
    that:
    - "result.state == 'file'"
    - "result.changed == False"
    - "result.checksum == '74152e9224f774191bc0bedf460d35de86ad90e6'"

- name: test assemble with fragments matching a regex
  assemble: src="{{remote_tmp_dir}}/src" dest="{{remote_tmp_dir}}/assembled3" regexp="^fragment[1-3]$"
  register: result

- name: assert the fragments were assembled with a regex
  assert:
    that:
    - "result.state == 'file'"
    - "result.checksum == 'edfe2d7487ef8f5ebc0f1c4dc57ba7b70a7b8e2b'"

- name: test assemble with fragments matching a regex and decrypt=True
  assemble: src="{{remote_tmp_dir}}/src" dest="{{remote_tmp_dir}}/assembled4" regexp="^fragment[1-3]$" decrypt=yes
  register: result

- name: assert the fragments were assembled with a regex and decrypt=True
  assert:
    that:
    - "result.state == 'file'"
    - "result.checksum == 'edfe2d7487ef8f5ebc0f1c4dc57ba7b70a7b8e2b'"

- name: test assemble with a delimiter
  assemble: src="{{remote_tmp_dir}}/src" dest="{{remote_tmp_dir}}/assembled5" delimiter="#--- delimiter ---#"
  register: result

- name: assert the fragments were assembled with a delimiter
  assert:
    that:
    - "result.state == 'file'"
    - "result.checksum == 'd986cefb82e34e4cf14d33a3cda132ff45aa2980'"

- name: test assemble with a delimiter and decrypt=True
  assemble: src="{{remote_tmp_dir}}/src" dest="{{remote_tmp_dir}}/assembled6" delimiter="#--- delimiter ---#" decrypt=yes
  register: result

- name: assert the fragments were assembled with a delimiter and decrypt=True
  assert:
    that:
    - "result.state == 'file'"
    - "result.checksum == 'd986cefb82e34e4cf14d33a3cda132ff45aa2980'"

- name: test assemble with remote_src=False
  assemble: src="./" dest="{{remote_tmp_dir}}/assembled7" remote_src=no
  register: result

- name: assert the fragments were assembled without remote
  assert:
    that:
    - "result.state == 'file'"
    - "result.checksum == '048a1bd1951aa5ccc427eeb4ca19aee45e9c68b3'"

- name: test assemble with remote_src=False and decrypt=True
  assemble: src="./" dest="{{remote_tmp_dir}}/assembled8" remote_src=no decrypt=yes
  register: result

- name: assert the fragments were assembled without remote and decrypt=True
  assert:
    that:
    - "result.state == 'file'"
    - "result.checksum == '048a1bd1951aa5ccc427eeb4ca19aee45e9c68b3'"

- name: test assemble with remote_src=False and a delimiter
  assemble: src="./" dest="{{remote_tmp_dir}}/assembled9" remote_src=no delimiter="#--- delimiter ---#"
  register: result

- name: assert the fragments were assembled without remote
  assert:
    that:
    - "result.state == 'file'"
    - "result.checksum == '505359f48c65b3904127cf62b912991d4da7ed6d'"

- name: test assemble with remote_src=False and a delimiter and decrypt=True
  assemble: src="./" dest="{{remote_tmp_dir}}/assembled10" remote_src=no delimiter="#--- delimiter ---#" decrypt=yes
  register: result

- name: assert the fragments were assembled without remote
  assert:
    that:
    - "result.state == 'file'"
    - "result.checksum == '505359f48c65b3904127cf62b912991d4da7ed6d'"