Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
40e02040
Commit
40e02040
authored
Feb 24, 2014
by
James Laska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct assert and add with_items test
parent
00ed610a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
7 deletions
+26
-7
test/integration/roles/test_synchronize/files/bar.txt
+1
-0
test/integration/roles/test_synchronize/tasks/main.yml
+25
-7
No files found.
test/integration/roles/test_synchronize/files/bar.txt
0 → 100644
View file @
40e02040
templated_var_loaded
test/integration/roles/test_synchronize/tasks/main.yml
View file @
40e02040
...
...
@@ -20,21 +20,39 @@
-
name
:
cleanup old files
shell
:
rm -rf {{output_dir}}/*
-
name
:
make a new file
copy
:
dest={{output_dir}}/foo.txt mode=0644 content="hello world"
-
name
:
create test new files
copy
:
dest={{output_dir}}/{{item}} mode=0644 content="hello world"
with_items
:
-
foo.txt
-
bar.txt
-
name
:
synchronize file to new filename
synchronize
:
src={{output_dir}}/foo.txt dest={{output_dir}}/foo.result
register
:
sync_result
-
debug
:
var=sync_result
-
assert
:
that
:
-
assert
:
that
:
-
"
'changed'
in
sync_result"
-
"
sync_result.changed
==
true"
-
"
'cmd'
in
sync_result"
-
"
'rsync'
in
sync_result.cmd"
-
"
'msg'
in
sync_result"
-
"
sync_result.msg
==
'>f+++++++++
foo.txt
\n
'"
-
"
sync_result.msg.startswith('>f+')"
-
"
sync_result.msg.endswith('+
foo.txt
\n
')"
-
name
:
synchronize files using with_items (issue#5965)
synchronize
:
src={{output_dir}}/{{item}} dest={{output_dir}}/{{item}}.result
with_items
:
-
foo.txt
-
bar.txt
register
:
sync_result
-
debug
:
var=sync_result
-
assert
:
that
:
-
"
sync_result.changed"
-
"
sync_result.msg
==
'All
items
completed'"
-
"
'results'
in
sync_result"
-
"
sync_result.results|length
==
2"
-
"
sync_result.results[0].msg.endswith('+
foo.txt
\n
')"
-
"
sync_result.results[1].msg.endswith('+
bar.txt
\n
')"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment