Add a framework, fixtures and test for common synchronize scenarios. (#15983)

* Add a framework, fixtures and test for common synchronize scenarios.

Addresses #15905
This commit is contained in:
jctanner
2016-05-31 22:35:59 -04:00
parent 10a07fcc26
commit c52cea8db3
33 changed files with 3991 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
task_args:
src: /tmp/deleteme
dest: /tmp/deleteme
fixtures:
taskvars_in: task_vars_in.json
taskvars_out: task_vars_out.json
connection:
transport: 'ssh'
_play_context:
remote_addr: '127.0.0.1'
remote_user: vagrant
hostvars:
'127.0.0.1': {}
'::1': {}
'localhost': {}
asserts:
- "hasattr(SAM._connection, 'ismock')"
- "SAM._connection.transport == 'local'"
- "self.execute_called"
- "self.task.args['_local_rsync_path'] == 'rsync'"
- "self.task.args['dest_port'] == 2202"
- "self.task.args['src'] == '/tmp/deleteme'"
- "self.task.args['dest'] == '/tmp/deleteme'"
- "self._play_context.shell == 'sh'"
- "self._play_context.remote_addr == '127.0.0.1'"
- "self._play_context.remote_user == 'vagrant'"
- "self._play_context.become == False"
- "self._play_context.become_user == 'root'"
- "self._play_context.password == None"