mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
58 lines
1.6 KiB
YAML
58 lines
1.6 KiB
YAML
---
|
|
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- 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|Name does not resolve')
|