4fe08441be
* Warn on tests used as filters * Update docs, add aliases for tests that fit more gramatically with test syntax * Fix rst formatting * Add successful filter, alias of success * Remove renamed_deprecation, it was overkill * Make directory alias for is_dir * Update tests to use proper jinja test syntax * Update additional documentation, living outside of YAML files, to reflect proper jinja test syntax * Add conversion script, porting guide updates, and changelog updates * Update newly added uses of tests as filters * No underscore variable * Convert recent tests as filter changes to win_stat * Fix some changes related to rebasing a few integration tests * Make tests_as_filters_warning explicitly accept the name of the test, instead of inferring the name * Add test for tests_as_filters_warning * Update tests as filters in newly added/modified tests * Address recent changes to several integration tests * Address recent changes in cs_vpc
43 lines
1.8 KiB
YAML
43 lines
1.8 KiB
YAML
- hosts: "{{ target_hosts }}"
|
|
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 is changed # as of 2.2, raw should default to changed: true for consistency w/ shell/command/script modules
|
|
|
|
### copy local file with unicode filename and content
|
|
|
|
- name: create local file with unicode filename and content
|
|
local_action: lineinfile dest={{ local_tmp }}-汉语/汉语.txt create=true line=汉语
|
|
- name: remove remote file with unicode filename and content
|
|
action: "{{ action_prefix }}file path={{ remote_tmp }}-汉语/汉语.txt state=absent"
|
|
- name: create remote directory with unicode name
|
|
action: "{{ action_prefix }}file path={{ remote_tmp }}-汉语 state=directory"
|
|
- name: copy local file with unicode filename and content
|
|
action: "{{ action_prefix }}copy src={{ local_tmp }}-汉语/汉语.txt dest={{ remote_tmp }}-汉语/汉语.txt"
|
|
|
|
### fetch remote file with unicode filename and content
|
|
|
|
- name: remove local file with unicode filename and content
|
|
local_action: file path={{ local_tmp }}-汉语/汉语.txt state=absent
|
|
- name: fetch remote file with unicode filename and content
|
|
fetch: src={{ remote_tmp }}-汉语/汉语.txt dest={{ local_tmp }}-汉语/汉语.txt fail_on_missing=true validate_checksum=true flat=true
|
|
|
|
### remove local and remote temp files
|
|
|
|
- name: remove local temp file
|
|
local_action: file path={{ local_tmp }}-汉语 state=absent
|
|
- name: remove remote temp file
|
|
action: "{{ action_prefix }}file path={{ remote_tmp }}-汉语 state=absent"
|
|
|
|
### test wait_for_connection plugin
|
|
- wait_for_connection:
|