
    Vh                     \    d Z ddlmZmZmZ ddlZddlmZ eZ	dZ
dZdZd Z G d	 d
e      Zy)z)
Test plugin file for netaddr tests: mac
    )absolute_importdivisionprint_functionN)_validate_argsaa  
    name: mac
    author: Priyam Sahoo (@priyamsahoo)
    version_added: "2.2.0"
    short_description: Test if something appears to be a valid MAC address
    description:
        - This plugin checks if the provided value is a valid MAC address that follows the industry level standards
    options:
        mac:
            description:
            - A string that represents the value against which the test is going to be performed
            - 'For example: C(02:16:3e:e4:16:f3), C(02-16-3e-e4-16-f3), C(0216.3ee4.16f3), or C(02163ee416f3)'
            type: str
            required: True
    notes:
aq  

- name: Check if 02:16:3e:e4:16:f3 is a valid MAC address
  ansible.builtin.set_fact:
    data: "{{ '02:16:3e:e4:16:f3' is ansible.utils.mac }}"

# TASK [Check if 02:16:3e:e4:16:f3 is a valid MAC address] ********************
# ok: [localhost] => {
#     "ansible_facts": {
#         "data": true
#     },
#     "changed": false
# }

- name: Check if 02-16-3e-e4-16-f3 is a valid MAC address
  ansible.builtin.set_fact:
    data: "{{ '02-16-3e-e4-16-f3' is ansible.utils.mac }}"

# TASK [Check if 02-16-3e-e4-16-f3 is a valid MAC address] ********************
# ok: [localhost] => {
#     "ansible_facts": {
#         "data": true
#     },
#     "changed": false
# }

- name: Check if 0216.3ee4.16f3 is a valid MAC address
  ansible.builtin.set_fact:
    data: "{{ '0216.3ee4.16f3' is ansible.utils.mac }}"

# TASK [Check if 0216.3ee4.16f3 is a valid MAC address] ***********************
# ok: [localhost] => {
#     "ansible_facts": {
#         "data": true
#     },
#     "changed": false
# }

- name: Check if 02163ee416f3 is a valid MAC address
  ansible.builtin.set_fact:
    data: "{{ '02163ee416f3' is ansible.utils.mac }}"

# TASK [Check if 02163ee416f3 is a valid MAC address] *************************
# ok: [localhost] => {
#     "ansible_facts": {
#         "data": true
#     },
#     "changed": false
# }

- name: Check if helloworld is not a valid MAC address
  ansible.builtin.set_fact:
    data: "{{ 'helloworld' is not ansible.utils.mac }}"

# TASK [Check if helloworld is not a valid MAC address] ***********************
# ok: [localhost] => {
#     "ansible_facts": {
#         "data": true
#     },
#     "changed": false
# }
z
  data:
    description:
      - If jinja test satisfies plugin expression C(true)
      - If jinja test does not satisfy plugin expression C(false)
c                     d| i}t        dt        |       d}d}d}dj                  |||      }t        t	        j
                  ||             S )z3Test if something appears to be a valid mac addressmacz!^([0-9a-f]{2}[:-]){5}[0-9a-f]{2}$z)^([0-9a-f]{4}\.[0-9a-f]{4}\.[0-9a-f]{4})$z^[0-9a-f]{12}$z(?i){re1}|{re2}|{re3})re1re2re3)r   DOCUMENTATIONformatboolrematch)r   paramsr	   r
   r   regexs         b/home/dcms/DCMS/lib/python3.12/site-packages/ansible_collections/ansible/utils/plugins/test/mac.py_macr   k   sW     S\F5-0 /C
6C
C#**s*EE$%%    c                       e Zd ZdZdeiZd Zy)
TestModuleznetwork jinja testr   c                     | j                   S )N)test_map)selfs    r   testszTestModule.tests   s    }}r   N)__name__
__module____qualname____doc__r   r   r    r   r   r   r   {   s    t}Hr   r   )r   
__future__r   r   r   r   Aansible_collections.ansible.utils.plugins.plugin_utils.base.utilsr   type__metaclass__r   EXAMPLESRETURNr   objectr   r    r   r   <module>r(      sG    A @ 	 \ "=~
&  r   