ansible/test/integration/test_connection.yml

41 lines
1.6 KiB
YAML
Raw Normal View History

2016-03-04 20:21:43 +01:00
- hosts: all
gather_facts: no
serial: 1
tasks:
### raw with unicode arg and output
- name: raw with unicode arg and output
raw: echo 汉语
register: command
- name: check output of raw with unicode arg and output
assert:
that:
- "'汉语' in command.stdout"
- command | changed # as of 2.2, raw should default to changed: true for consistency w/ shell/command/script modules
2016-03-04 20:21:43 +01:00
### copy local file with unicode filename and content
- name: create local file with unicode filename and content
2016-03-12 01:55:14 +01:00
local_action: lineinfile dest=/tmp/ansible-local-汉语/汉语.txt create=true line=汉语
2016-03-04 20:21:43 +01:00
- name: remove remote file with unicode filename and content
2016-03-12 01:55:14 +01:00
file: path=/tmp/ansible-remote-汉语/汉语.txt state=absent
- name: create remote directory with unicode name
file: path=/tmp/ansible-remote-汉语 state=directory
2016-03-04 20:21:43 +01:00
- name: copy local file with unicode filename and content
2016-03-12 01:55:14 +01:00
copy: src=/tmp/ansible-local-汉语/汉语.txt dest=/tmp/ansible-remote-汉语/汉语.txt
2016-03-04 20:21:43 +01:00
### fetch remote file with unicode filename and content
- name: remove local file with unicode filename and content
2016-03-12 01:55:14 +01:00
local_action: file path=/tmp/ansible-local-汉语/汉语.txt state=absent
2016-03-04 20:21:43 +01:00
- name: fetch remote file with unicode filename and content
2016-03-12 01:55:14 +01:00
fetch: src=/tmp/ansible-remote-汉语/汉语.txt dest=/tmp/ansible-local-汉语/汉语.txt fail_on_missing=true validate_checksum=true flat=true
2016-03-04 20:21:43 +01:00
### remove local and remote temp files
- name: remove local temp file
local_action: file path=/tmp/ansible-local-汉语 state=absent
- name: remove remote temp file
file: path=/tmp/ansible-remote-汉语 state=absent