mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[PR #7533/2a5e7c33 backport][stable-8] Add test fqdn_valid (#7567)
Add test fqdn_valid (#7533)
* Add test fqdn_valid
* Add integration test fqdn_valid
* Add changelogs 7533-add-test-fqdn_valid
* Fix changelogs filename 7533-add-test-fqdn_valid.yml
* Add runme.* to install PyPI package fqdn and run the test.
* Remove changelog. New tests are documented by their version_added + short_description.
* Guarded import fqdn.
* Update plugins/test/fqdn_valid.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/test/fqdn_valid.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/test/fqdn_valid.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/test/fqdn_valid.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update tests/integration/targets/test_fqdn_valid/aliases
Co-authored-by: Felix Fontein <felix@fontein.de>
* Add tests/fqdn_valid.py maintained by vbotka.
* Fix integration. Add explicit collections to test_fqdn_valid
* Fix integration. Remove unused import ansible.errors
* Fix PEP8 E275
* Fix E402 module level import not at top of file.
* Fix E275 missing whitespace after keyword
* Update plugins/test/fqdn_valid.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/test/fqdn_valid.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/test/fqdn_valid.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/test/fqdn_valid.py
Co-authored-by: Felix Fontein <felix@fontein.de>
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 2a5e7c33df
)
Co-authored-by: Vladimir Botka <vbotka@gmail.com>
This commit is contained in:
parent
76d011ed4b
commit
a60cba237f
8 changed files with 213 additions and 0 deletions
2
.github/BOTMETA.yml
vendored
2
.github/BOTMETA.yml
vendored
|
@ -1399,6 +1399,8 @@ files:
|
|||
maintainers: $team_suse
|
||||
$tests/a_module.py:
|
||||
maintainers: felixfontein
|
||||
$tests/fqdn_valid.py:
|
||||
maintainers: vbotka
|
||||
#########################
|
||||
tests/:
|
||||
labels: tests
|
||||
|
|
103
plugins/test/fqdn_valid.py
Normal file
103
plugins/test/fqdn_valid.py
Normal file
|
@ -0,0 +1,103 @@
|
|||
# Copyright (c) 2023, Vladimir Botka <vbotka@gmail.com>
|
||||
# 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
|
||||
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
from ansible.errors import AnsibleError
|
||||
from ansible.module_utils.six import raise_from
|
||||
|
||||
try:
|
||||
from fqdn import FQDN
|
||||
except ImportError as imp_exc:
|
||||
ANOTHER_LIBRARY_IMPORT_ERROR = imp_exc
|
||||
else:
|
||||
ANOTHER_LIBRARY_IMPORT_ERROR = None
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
name: fqdn_valid
|
||||
short_description: Validates fully-qualified domain names against RFC 1123
|
||||
version_added: 8.1.0
|
||||
author: Vladimir Botka (@vbotka)
|
||||
requirements:
|
||||
- fqdn>=1.5.1 (PyPI)
|
||||
description:
|
||||
- This test validates Fully Qualified Domain Names (FQDNs)
|
||||
conforming to the Internet Engineering Task Force specification
|
||||
RFC 1123 and RFC 952.
|
||||
- The design intent is to validate that a string would be
|
||||
traditionally acceptable as a public Internet hostname to
|
||||
RFC-conforming software, which is a strict subset of the logic
|
||||
in modern web browsers like Mozilla Firefox and Chromium that
|
||||
determines whether make a DNS lookup.
|
||||
- Certificate Authorities like Let's Encrypt run a narrower set of
|
||||
string validation logic to determine validity for issuance. This
|
||||
test is not intended to achieve functional parity with CA
|
||||
issuance.
|
||||
- Single label names are allowed by default (O(min_labels=1)).
|
||||
options:
|
||||
_input:
|
||||
description: Name of the host.
|
||||
type: str
|
||||
required: true
|
||||
min_labels:
|
||||
description: Required minimum of labels, separated by period.
|
||||
default: 1
|
||||
type: int
|
||||
required: false
|
||||
allow_underscores:
|
||||
description: Allow underscore characters.
|
||||
default: false
|
||||
type: bool
|
||||
required: false
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
- name: Make sure that hostname is valid
|
||||
ansible.builtin.assert:
|
||||
that: hostname is community.general.fqdn_valid
|
||||
|
||||
- name: Make sure that hostname is at least 3 labels long (a.b.c)
|
||||
ansible.builtin.assert:
|
||||
that: hostname is community.general.fqdn_valid(min_labels=3)
|
||||
|
||||
- name: Make sure that hostname is at least 2 labels long (a.b). Allow '_'
|
||||
ansible.builtin.assert:
|
||||
that: hostname is community.general.fqdn_valid(min_labels=2, allow_underscores=True)
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
_value:
|
||||
description: Whether the name is valid.
|
||||
type: bool
|
||||
'''
|
||||
|
||||
|
||||
def fqdn_valid(name, min_labels=1, allow_underscores=False):
|
||||
"""
|
||||
Example:
|
||||
- 'srv.example.com' is community.general.fqdn_valid
|
||||
- 'foo_bar.example.com' is community.general.fqdn_valid(allow_underscores=True)
|
||||
"""
|
||||
|
||||
if ANOTHER_LIBRARY_IMPORT_ERROR:
|
||||
raise_from(
|
||||
AnsibleError('Python package fqdn must be installed to use this test.'),
|
||||
ANOTHER_LIBRARY_IMPORT_ERROR
|
||||
)
|
||||
|
||||
fobj = FQDN(name, min_labels=min_labels, allow_underscores=allow_underscores)
|
||||
return (fobj.is_valid)
|
||||
|
||||
|
||||
class TestModule(object):
|
||||
''' Ansible test hostname validity.
|
||||
https://pypi.org/project/fqdn/
|
||||
'''
|
||||
|
||||
def tests(self):
|
||||
return {
|
||||
'fqdn_valid': fqdn_valid,
|
||||
}
|
5
tests/integration/targets/test_fqdn_valid/aliases
Normal file
5
tests/integration/targets/test_fqdn_valid/aliases
Normal file
|
@ -0,0 +1,5 @@
|
|||
# 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
|
||||
|
||||
azp/posix/2
|
15
tests/integration/targets/test_fqdn_valid/runme.sh
Executable file
15
tests/integration/targets/test_fqdn_valid/runme.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env bash
|
||||
# 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
|
||||
|
||||
set -eux
|
||||
|
||||
source virtualenv.sh
|
||||
|
||||
# Requirements have to be installed prior to running ansible-playbook
|
||||
# because plugins and requirements are loaded before the task runs
|
||||
|
||||
pip install fqdn
|
||||
|
||||
ANSIBLE_ROLES_PATH=../ ansible-playbook runme.yml "$@"
|
8
tests/integration/targets/test_fqdn_valid/runme.yml
Normal file
8
tests/integration/targets/test_fqdn_valid/runme.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
# 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
|
||||
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- {role: test_fqdn_valid}
|
|
@ -0,0 +1,58 @@
|
|||
---
|
||||
# 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: Debug ansible_version
|
||||
ansible.builtin.debug:
|
||||
var: ansible_version
|
||||
when: debug_test|d(false)|bool
|
||||
tags: t0
|
||||
|
||||
- name: 1. Test valid hostnames. Default options.
|
||||
block:
|
||||
- name: "1. Default min_labels=1, allow_underscores=False"
|
||||
ansible.builtin.debug:
|
||||
msg: "hosts_invalid: {{ hosts_invalid }}"
|
||||
when: debug_test|d(false)|bool
|
||||
- name: Assert
|
||||
ansible.builtin.assert:
|
||||
that: hosts_invalid|difference(result)|length == 0
|
||||
vars:
|
||||
hosts_valid: "{{ names1|select('community.general.fqdn_valid') }}"
|
||||
hosts_invalid: "{{ names1|difference(hosts_valid) }}"
|
||||
result: [-rv.example.com, -rv, s_v]
|
||||
tags: t1
|
||||
|
||||
- name: 2. Test valid hostnames. allow_underscores=True
|
||||
block:
|
||||
- name: "2. allow_underscores=True, default min_labels=1"
|
||||
ansible.builtin.debug:
|
||||
msg: "hosts_invalid: {{ hosts_invalid }}"
|
||||
when: debug_test|d(false)|bool
|
||||
- name: Assert
|
||||
ansible.builtin.assert:
|
||||
that: hosts_invalid|difference(result)|length == 0
|
||||
vars:
|
||||
hosts_valid: "{{ names2|select('community.general.fqdn_valid',
|
||||
allow_underscores=True) }}"
|
||||
hosts_invalid: "{{ names2|difference(hosts_valid) }}"
|
||||
result: [-rv]
|
||||
tags: t2
|
||||
|
||||
- name: 3. Test valid hostnames. min_labels=2, allow_underscores=True
|
||||
block:
|
||||
- name: "3. allow_underscores=True, min_labels=2"
|
||||
ansible.builtin.debug:
|
||||
msg: "hosts_invalid: {{ hosts_invalid }}"
|
||||
when: debug_test|d(false)|bool
|
||||
- name: Assert
|
||||
ansible.builtin.assert:
|
||||
that: hosts_invalid|difference(result)|length == 0
|
||||
vars:
|
||||
hosts_valid: "{{ names3|select('community.general.fqdn_valid',
|
||||
min_labels=2,
|
||||
allow_underscores=True) }}"
|
||||
hosts_invalid: "{{ names3|difference(hosts_valid) }}"
|
||||
result: [9rv, s_v-.x.y]
|
||||
tags: t3
|
7
tests/integration/targets/test_fqdn_valid/tasks/main.yml
Normal file
7
tests/integration/targets/test_fqdn_valid/tasks/main.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
# 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: Test fqdn_valid
|
||||
ansible.builtin.import_tasks: fqdn_valid_1.yml
|
15
tests/integration/targets/test_fqdn_valid/vars/main.yml
Normal file
15
tests/integration/targets/test_fqdn_valid/vars/main.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
# 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
|
||||
|
||||
names1:
|
||||
- srv.example.com
|
||||
- 9rv.example.com
|
||||
- -rv.example.com
|
||||
- srv
|
||||
- 9rv
|
||||
- -rv
|
||||
- s_v
|
||||
names2: [9rv, -rv, s_v]
|
||||
names3: [9rv, srv.x, s_v.x.y, s_v-.x.y]
|
Loading…
Reference in a new issue