Server IP : 85.214.239.14 / Your IP : 18.223.238.150 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/self/root/lib/python3/dist-packages/ansible_collections/ansible/utils/plugins/test/ |
Upload File : |
# -*- coding: utf-8 -*- # Copyright 2021 Red Hat # GNU General Public License v3.0+ # (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """ Test plugin file for netaddr tests: mac """ from __future__ import absolute_import, division, print_function import re from ansible_collections.ansible.utils.plugins.plugin_utils.base.utils import _validate_args __metaclass__ = type DOCUMENTATION = """ 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: """ EXAMPLES = r""" - 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 # } """ RETURN = """ data: description: - If jinja test satisfies plugin expression C(true) - If jinja test does not satisfy plugin expression C(false) """ def _mac(mac): """Test if something appears to be a valid mac address""" params = {"mac": mac} _validate_args("mac", DOCUMENTATION, params) # IEEE EUI-48 upper and lower, commom unix re1 = r"^([0-9a-f]{2}[:-]){5}[0-9a-f]{2}$" # Cisco triple hextex re2 = r"^([0-9a-f]{4}\.[0-9a-f]{4}\.[0-9a-f]{4})$" # Bare re3 = r"^[0-9a-f]{12}$" regex = "(?i){re1}|{re2}|{re3}".format(re1=re1, re2=re2, re3=re3) return bool(re.match(regex, mac)) class TestModule(object): """network jinja test""" test_map = {"mac": _mac} def tests(self): return self.test_map