|
|
|
---
|
|
|
|
|
|
|
|
- name: test win_ping
|
|
|
|
action: win_ping
|
|
|
|
register: win_ping_result
|
|
|
|
|
|
|
|
- name: check win_ping result
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- "not win_ping_result|failed"
|
|
|
|
- "not win_ping_result|changed"
|
|
|
|
- "win_ping_result.ping == 'pong'"
|
|
|
|
|
|
|
|
- name: test win_ping with data
|
|
|
|
win_ping: data=blah
|
|
|
|
register: win_ping_with_data_result
|
|
|
|
|
|
|
|
- name: check win_ping result with data
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- "not win_ping_with_data_result|failed"
|
|
|
|
- "not win_ping_with_data_result|changed"
|
|
|
|
- "win_ping_with_data_result.ping == 'blah'"
|
|
|
|
|
|
|
|
#- name: test local ping (should use default ping)
|
|
|
|
# local_action: ping
|
|
|
|
# register: local_ping_result
|
|
|
|
|
|
|
|
#- name: check local ping result
|
|
|
|
# assert:
|
|
|
|
# that:
|
|
|
|
# - "not local_ping_result|failed"
|
|
|
|
# - "not local_ping_result|changed"
|
|
|
|
# - "local_ping_result.ping == 'pong'"
|
|
|
|
|
|
|
|
- name: test win_ping.ps1 with data
|
|
|
|
win_ping.ps1: data=bleep
|
|
|
|
register: win_ping_ps1_result
|
|
|
|
|
|
|
|
- name: check win_ping.ps1 result with data
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- "not win_ping_ps1_result|failed"
|
|
|
|
- "not win_ping_ps1_result|changed"
|
|
|
|
- "win_ping_ps1_result.ping == 'bleep'"
|
|
|
|
|
|
|
|
#- name: test win_ping with invalid args
|
|
|
|
# win_ping: arg=invalid
|
|
|
|
# register: win_ping_ps1_invalid_args_result
|
|
|
|
|
|
|
|
#- name: check that win_ping.ps1 with invalid args fails
|
|
|
|
# assert:
|
|
|
|
# that:
|
|
|
|
# - "win_ping_ps1_invalid_args_result|failed"
|
|
|
|
# - "win_ping_ps1_invalid_args_result.msg"
|
|
|
|
|