# -*- 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: ipv6_teredo """ from __future__ import absolute_import, division, print_function from ansible_collections.ansible.utils.plugins.plugin_utils.base.ipaddress_utils import ( ip_address, _need_ipaddress, ) from ansible_collections.ansible.utils.plugins.plugin_utils.base.utils import ( _validate_args, ) __metaclass__ = type DOCUMENTATION = """ name: ipv6_teredo author: Priyam Sahoo (@priyamsahoo) version_added: "2.2.0" short_description: Test if something appears to be an IPv6 teredo address description: - This plugin checks if the provided value is a valid IPv6 teredo address options: ip: description: - A string that represents the value against which the test is going to be performed - For example: - "2001::c0a8:6301:1" - "2002::c0a8:6301:1" - "hello_world" type: str required: True notes: """ EXAMPLES = r""" #### Simple examples - name: Check if 2001::c0a8:6301:1 is a valid IPv6 teredo address ansible.builtin.set_fact: data: "{{ '2001::c0a8:6301:1' is ansible.utils.ipv6_teredo }}" # TASK [Check if 2001::c0a8:6301:1 is a valid IPv6 teredo address] ******************** # ok: [localhost] => { # "ansible_facts": { # "data": true # }, # "changed": false # } - name: Check if 2002::c0a8:6301:1 is not a valid IPv6 teredo address ansible.builtin.set_fact: data: "{{ '2002::c0a8:6301:1' is not ansible.utils.ipv6_teredo }}" # TASK [Check if 2002::c0a8:6301:1 is not a valid IPv6 teredo address] **************** # ok: [localhost] => { # "ansible_facts": { # "data": true # }, # "changed": false # } - name: Check if hello_world is not a valid IPv6 teredo address ansible.builtin.set_fact: data: "{{ 'hello_world' is not ansible.utils.ipv6_teredo }}" # TASK [Check if hello_world is not a valid IPv6 teredo 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) """ @_need_ipaddress def _ipv6_teredo(ip): """ Test if something is an IPv6 teredo address """ params = {"ip": ip} _validate_args("ipv6_teredo", DOCUMENTATION, params) try: if ip_address(ip).teredo is None: return False return True except Exception: return False class TestModule(object): """ network jinja test""" test_map = {"ipv6_teredo": _ipv6_teredo} def tests(self): return self.test_map