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
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
- name: Send a magic Wake-on-LAN packet to 00:00:5E:00:53:66
|
|
wakeonlan:
|
|
mac: 00:00:5E:00:53:66
|
|
broadcast: 192.0.2.255
|
|
|
|
- name: Send a magic Wake-on-LAN packet on port 9 to 00-00-5E-00-53-66
|
|
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 is 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 is 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 is failed
|
|
- incorrect_broadcast_address.msg is search('not known')
|