You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mitogen/tests/ansible/integration/action/transfer_data.yml

72 lines
1.6 KiB
YAML

- name: integration/action/transfer_data.yml, json
hosts: test-targets
tasks:
- meta: end_play
when:
# Ansible >= 12 (ansible-core >= 2.19) only allows bytes|str through
# `ansible.plugins.action.ActionBase._transfer_data()`.
- ansible_version.full is version('2.18.999', '>', strict=True)
- not is_mitogen
- name: Cleanup transfer data
file:
path: /tmp/transfer-data
state: absent
- name: Create JSON transfer data
action_passthrough:
method: _transfer_data
kwargs:
remote_path: /tmp/transfer-data
data: {
"I am JSON": true
}
- name: Slurp JSON transfer data
slurp:
src: /tmp/transfer-data
register: out
- assert:
that: |
out.content|b64decode == '{"I am JSON": true}'
fail_msg: |
out={{ out }}
- name: Cleanup transfer data
file:
path: /tmp/transfer-data
state: absent
tags:
- transfer_data
- name: integration/action/transfer_data.yml, text
hosts: test-targets
tasks:
- name: Create text transfer data
action_passthrough:
method: _transfer_data
kwargs:
remote_path: /tmp/transfer-data
data: "I am text."
- name: Slurp text transfer data
slurp:
src: /tmp/transfer-data
register: out
- assert:
that:
out.content|b64decode == 'I am text.'
fail_msg: |
out={{ out }}
- name: Cleanup transfer data
file:
path: /tmp/transfer-data
state: absent
tags:
- transfer_data