1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/no_log_local.yml
2015-10-02 09:11:41 -04:00

79 lines
2.4 KiB
YAML

# TODO: test against real connection plugins to ensure they're not leaking module args
- name: normal play
hosts: testhost
gather_facts: no
tasks:
- name: args should be logged in the absence of no_log
shell: echo "LOG_ME_TASK_SUCCEEDED"
- name: item args/results should be logged in the absence of no_log
shell: echo {{ item }}
with_items: [ "LOG_ME_ITEM_SUCCEEDED" ]
- name: failed args should be logged in the absence of no_log
shell: echo "LOG_ME_TASK_FAILED"
failed_when: true
ignore_errors: true
- name: failed item args should be logged in the absence of no_log
shell: echo {{ item }}
with_items: [ "LOG_ME_ITEM_FAILED" ]
failed_when: true
ignore_errors: true
- name: args should not be logged when task-level no_log set
shell: echo "DO_NOT_LOG_TASK_SUCCEEDED"
no_log: true
- name: item args should be suppressed with no_log
shell: echo {{ item }}
no_log: true
with_items: [ "DO_NOT_LOG_ITEM_SUCCEEDED" ]
- name: failed args should not be logged when task-level no_log set
shell: echo "DO_NOT_LOG_TASK_FAILED"
no_log: true
failed_when: true
ignore_errors: true
- name: failed item args should be suppressed with no_log
shell: echo {{ item }}
no_log: true
with_items: [ "DO_NOT_LOG_ITEM_FAILED" ]
failed_when: true
ignore_errors: true
- name: skipped task args should be suppressed with no_log
shell: echo "DO_NOT_LOG_TASK_SKIPPED"
no_log: true
when: false
- name: skipped item args should be suppressed with no_log
shell: echo {{ item }}
no_log: true
with_items: [ "DO_NOT_LOG_ITEM_SKIPPED", "DO_NOT_LOG_ITEM_SKIPPED_2" ]
when: item == False
- name: async task args should suppressed with no_log
async: 10
poll: 1
shell: echo "DO_NOT_LOG_ASYNC_TASK_SUCCEEDED"
no_log: true
- name: play-level no_log set
hosts: testhost
gather_facts: no
no_log: true
tasks:
- name: args should not be logged when play-level no_log set
shell: echo "DO_NOT_LOG_PLAY"
- name: args should not be logged when both play- and task-level no_log set
shell: echo "DO_NOT_LOG_TASK_AND_PLAY"
no_log: true
- name: args should be logged when task-level no_log overrides play-level
shell: echo "LOG_ME_OVERRIDE"
no_log: false