Changed assemble_from_fragments to use os.path.join (#24909)
Fixes #19437
This commit is contained in:
parent
2e392f47c8
commit
f8e47e2204
2 changed files with 13 additions and 4 deletions
|
@ -142,7 +142,7 @@ def assemble_from_fragments(src_path, delimiter=None, compiled_regexp=None, igno
|
||||||
for f in sorted(os.listdir(src_path)):
|
for f in sorted(os.listdir(src_path)):
|
||||||
if compiled_regexp and not compiled_regexp.search(f):
|
if compiled_regexp and not compiled_regexp.search(f):
|
||||||
continue
|
continue
|
||||||
fragment = u"%s/%s" % (src_path, f)
|
fragment = os.path.join(src_path, f)
|
||||||
if not os.path.isfile(fragment) or (ignore_hidden and os.path.basename(fragment).startswith('.')):
|
if not os.path.isfile(fragment) or (ignore_hidden and os.path.basename(fragment).startswith('.')):
|
||||||
continue
|
continue
|
||||||
fragment_content = open(fragment, 'rb').read()
|
fragment_content = open(fragment, 'rb').read()
|
||||||
|
|
|
@ -29,6 +29,15 @@
|
||||||
copy: src="./" dest="{{output_dir}}/src"
|
copy: src="./" dest="{{output_dir}}/src"
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
|
- name: create unicode file for test
|
||||||
|
shell: echo "π" > {{ output_dir }}/src/ßΩ.txt
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: assert that the new file was created
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
|
||||||
- name: test assemble with all fragments
|
- name: test assemble with all fragments
|
||||||
assemble: src="{{output_dir}}/src" dest="{{output_dir}}/assembled1"
|
assemble: src="{{output_dir}}/src" dest="{{output_dir}}/assembled1"
|
||||||
register: result
|
register: result
|
||||||
|
@ -38,7 +47,7 @@
|
||||||
that:
|
that:
|
||||||
- "result.state == 'file'"
|
- "result.state == 'file'"
|
||||||
- "result.changed == True"
|
- "result.changed == True"
|
||||||
- "result.checksum == '048a1bd1951aa5ccc427eeb4ca19aee45e9c68b3'"
|
- "result.checksum == '74152e9224f774191bc0bedf460d35de86ad90e6'"
|
||||||
|
|
||||||
- name: test assemble with all fragments
|
- name: test assemble with all fragments
|
||||||
assemble: src="{{output_dir}}/src" dest="{{output_dir}}/assembled1"
|
assemble: src="{{output_dir}}/src" dest="{{output_dir}}/assembled1"
|
||||||
|
@ -49,7 +58,7 @@
|
||||||
that:
|
that:
|
||||||
- "result.state == 'file'"
|
- "result.state == 'file'"
|
||||||
- "result.changed == False"
|
- "result.changed == False"
|
||||||
- "result.checksum == '048a1bd1951aa5ccc427eeb4ca19aee45e9c68b3'"
|
- "result.checksum == '74152e9224f774191bc0bedf460d35de86ad90e6'"
|
||||||
|
|
||||||
- name: test assemble with fragments matching a regex
|
- name: test assemble with fragments matching a regex
|
||||||
assemble: src="{{output_dir}}/src" dest="{{output_dir}}/assembled2" regexp="^fragment[1-3]$"
|
assemble: src="{{output_dir}}/src" dest="{{output_dir}}/assembled2" regexp="^fragment[1-3]$"
|
||||||
|
@ -69,7 +78,7 @@
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- "result.state == 'file'"
|
- "result.state == 'file'"
|
||||||
- "result.checksum == '505359f48c65b3904127cf62b912991d4da7ed6d'"
|
- "result.checksum == 'd986cefb82e34e4cf14d33a3cda132ff45aa2980'"
|
||||||
|
|
||||||
- name: test assemble with remote_src=False
|
- name: test assemble with remote_src=False
|
||||||
assemble: src="./" dest="{{output_dir}}/assembled4" remote_src=no
|
assemble: src="./" dest="{{output_dir}}/assembled4" remote_src=no
|
||||||
|
|
Loading…
Reference in a new issue