2014-06-18 23:10:10 +02:00
|
|
|
# test code for the win_ping module
|
|
|
|
# (c) 2014, Chris Church <chris@ninemoreminutes.com>
|
|
|
|
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
2014-06-18 06:04:17 +02:00
|
|
|
|
|
|
|
- name: test win_ping
|
|
|
|
action: win_ping
|
|
|
|
register: win_ping_result
|
|
|
|
|
|
|
|
- name: check win_ping result
|
|
|
|
assert:
|
2016-04-18 16:47:38 +02:00
|
|
|
that:
|
2017-11-27 23:58:08 +01:00
|
|
|
- win_ping_result is not failed
|
|
|
|
- win_ping_result is not changed
|
2017-06-28 20:08:04 +02:00
|
|
|
- win_ping_result.ping == 'pong'
|
2014-06-18 06:04:17 +02:00
|
|
|
|
|
|
|
- name: test win_ping with data
|
2017-06-28 20:08:04 +02:00
|
|
|
win_ping:
|
|
|
|
data: ☠
|
2014-06-18 06:04:17 +02:00
|
|
|
register: win_ping_with_data_result
|
|
|
|
|
|
|
|
- name: check win_ping result with data
|
|
|
|
assert:
|
|
|
|
that:
|
2017-11-27 23:58:08 +01:00
|
|
|
- win_ping_with_data_result is not failed
|
|
|
|
- win_ping_with_data_result is not changed
|
2017-06-28 20:08:04 +02:00
|
|
|
- win_ping_with_data_result.ping == '☠'
|
2014-06-18 06:04:17 +02:00
|
|
|
|
2015-07-24 18:39:54 +02:00
|
|
|
- name: test win_ping.ps1 with data as complex args
|
|
|
|
win_ping.ps1:
|
|
|
|
data: bleep
|
2014-06-18 17:07:35 +02:00
|
|
|
register: win_ping_ps1_result
|
2014-06-18 06:04:17 +02:00
|
|
|
|
2014-06-18 17:07:35 +02:00
|
|
|
- name: check win_ping.ps1 result with data
|
2014-06-18 06:04:17 +02:00
|
|
|
assert:
|
2016-04-18 16:47:38 +02:00
|
|
|
that:
|
2017-11-27 23:58:08 +01:00
|
|
|
- win_ping_ps1_result is not failed
|
|
|
|
- win_ping_ps1_result is not changed
|
2017-06-28 20:08:04 +02:00
|
|
|
- win_ping_ps1_result.ping == 'bleep'
|
2014-06-18 06:04:17 +02:00
|
|
|
|
2017-06-28 20:08:04 +02:00
|
|
|
- name: test win_ping using data=crash so that it throws an exception
|
|
|
|
win_ping:
|
|
|
|
data: crash
|
|
|
|
register: win_ping_crash_result
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- name: check win_ping_crash result
|
|
|
|
assert:
|
|
|
|
that:
|
2017-11-27 23:58:08 +01:00
|
|
|
- win_ping_crash_result is failed
|
|
|
|
- win_ping_crash_result is not changed
|
2018-10-03 00:55:53 +02:00
|
|
|
- 'win_ping_crash_result.msg == "Unhandled exception while executing module: boom"'
|
|
|
|
- '"throw \"boom\"" in win_ping_crash_result.exception'
|