
    Vh>                         d Z ddlmZmZmZ ddlZddlmZ ddlm	Z	 	 ddl
Z
dZeZdZd	Zd
Zed        Z G d de      Zy# e$ r dZY %w xY w)z0
Test plugin file for netaddr tests: resolvable
    )absolute_importdivisionprint_functionN)_need_ipaddress)_validate_argsTFa-  
    name: resolvable
    author: Priyam Sahoo (@priyamsahoo)
    version_added: "2.2.0"
    short_description: Test if an IP or name can be resolved via /etc/hosts or DNS
    description:
        - This plugin checks if the provided IP address of host name can be resolved using /etc/hosts or DNS
    options:
        host:
            description:
            - A string that represents the IP address or the host name
            - 'For example: C("docs.ansible.com"), C(127.0.0.1), or C(::1)'
            type: str
            required: True
    notes:
a   

#### Simple examples

- name: Check if docs.ansible.com is resolvable or not
  ansible.builtin.set_fact:
    data: "{{ 'docs.ansible.com' is ansible.utils.resolvable }}"

# TASK [Check if docs.ansible.com is resolvable or not] **********************************
# ok: [localhost] => {
#     "ansible_facts": {
#         "data": true
#     },
#     "changed": false
# }

- name: Set host name variables
  ansible.builtin.set_fact:
    good_name: www.google.com
    bad_name: foo.google.com

- name: Assert good_name's resolvability
  assert:
    that: "{{ 'www.google.com' is ansible.utils.resolvable }}"

- name: Assert bad_name's resolvability
  assert:
    that: "{{ 'foo.google.com' is not ansible.utils.resolvable }}"

# TASK [Assert good_name's resolvability] ************************************************
# ok: [localhost] => {
#     "changed": false,
#     "msg": "All assertions passed"
# }

# TASK [Assert bad_name's resolvability] *************************************************
# ok: [localhost] => {
#     "changed": false,
#     "msg": "All assertions passed"
# }

- name: Set ip variables
  ansible.builtin.set_fact:
    ipv4_localhost: "127.0.0.1"
    ipv6_localhost: "::1"

- name: Assert ipv4_localhost's resolvability
  assert:
    that: "{{ ipv4_localhost is ansible.utils.resolvable }}"

- name: Assert ipv6_localhost's resolvability
  assert:
    that: "{{ ipv6_localhost is ansible.utils.resolvable }}"

# TASK [Assert ipv4_localhost's resolvability] *******************************************
# ok: [localhost] => {
#     "changed": false,
#     "msg": "All assertions passed"
# }

# TASK [Assert ipv6_localhost's resolvability] *******************************************
# ok: [localhost] => {
#     "changed": false,
#     "msg": "All assertions passed"
# }
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        |       	 t        j                  |        d}|r	 t        j                  |        y	 t        j                  | d       y# t        $ r d}Y >w xY w# t        $ r Y yw xY w# t        $ r Y yw xY w)z;Test if an IP or name can be resolved via /etc/hosts or DNShost
resolvableTFN)r   DOCUMENTATION	ipaddress
ip_address	Exceptionsocketgethostbyaddrgetaddrinfo)r	   paramsips      i/home/dcms/DCMS/lib/python3.12/site-packages/ansible_collections/ansible/utils/plugins/test/resolvable.py_resolvabler   x   s     d^F<7T" 
	  &	tT*    		  		s4   A A0 A? A-,A-0	A<;A<?	B
Bc                       e Zd ZdZdeiZd Zy)
TestModuleznetwork jinja testsr
   c                     | j                   S )N)test_map)selfs    r   testszTestModule.tests   s    }}    N)__name__
__module____qualname____doc__r   r   r    r   r   r   r      s    k*Hr   r   )r    
__future__r   r   r   r   Kansible_collections.ansible.utils.plugins.plugin_utils.base.ipaddress_utilsr   Aansible_collections.ansible.utils.plugins.plugin_utils.base.utilsr   r   HAS_IPADDRESSImportErrortype__metaclass__r   EXAMPLESRETURNr   objectr   r!   r   r   <module>r,      s    A @  ]M "AF
  2 w  Ms   A   A
	A
