1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

wakeonlan: Improve module coverage (#26655)

Trying to get this to 100% !
This commit is contained in:
Dag Wieers 2017-07-12 01:22:53 +02:00 committed by Toshio Kuratomi
parent dd9e6e9623
commit e1e79b7a74

View file

@ -7,3 +7,42 @@
wakeonlan:
mac: 00-00-5E-00-53-66
port: 9
- name: Provide an incorrect MAC length
wakeonlan:
mac: 00-00-5E-00-53-66-AB
port: 9
ignore_errors: yes
register: incorrect_mac_length
- name: Check error message
assert:
that:
- incorrect_mac_length|failed
- incorrect_mac_length.msg is search('Incorrect MAC address length')
- name: Provide an incorrect MAC format
wakeonlan:
mac: ZW-YX-WV-UT-SR-QP
port: 9
ignore_errors: yes
register: incorrect_mac_format
- name: Check error message
assert:
that:
- incorrect_mac_format|failed
- incorrect_mac_format.msg is search('Incorrect MAC address format')
- name: Cause a socket error
wakeonlan:
mac: 00-00-5E-00-53-66
broadcast: 345.567.678.890
ignore_errors: yes
register: incorrect_broadcast_address
- name: Check error message
assert:
that:
- incorrect_broadcast_address|failed
- incorrect_broadcast_address.msg is search('not known')