summaryrefslogtreecommitdiffstats
path: root/lib/ansible/plugins/test/uri.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
commit8a754e0858d922e955e71b253c139e071ecec432 (patch)
tree527d16e74bfd1840c85efd675fdecad056c54107 /lib/ansible/plugins/test/uri.py
parentInitial commit. (diff)
downloadansible-core-8a754e0858d922e955e71b253c139e071ecec432.tar.xz
ansible-core-8a754e0858d922e955e71b253c139e071ecec432.zip
Adding upstream version 2.14.3.upstream/2.14.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/ansible/plugins/test/uri.py')
-rw-r--r--lib/ansible/plugins/test/uri.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/lib/ansible/plugins/test/uri.py b/lib/ansible/plugins/test/uri.py
new file mode 100644
index 0000000..7ef3381
--- /dev/null
+++ b/lib/ansible/plugins/test/uri.py
@@ -0,0 +1,46 @@
+# (c) Ansible Project
+
+# Make coding more python3-ish
+from __future__ import (absolute_import, division, print_function)
+__metaclass__ = type
+
+from urllib.parse import urlparse
+
+
+def is_uri(value, schemes=None):
+ ''' Will verify that the string passed is a valid 'URI', if given a list of valid schemes it will match those '''
+ try:
+ x = urlparse(value)
+ isit = all([x.scheme is not None, x.path is not None, not schemes or x.scheme in schemes])
+ except Exception as e:
+ isit = False
+ return isit
+
+
+def is_url(value, schemes=None):
+ ''' Will verify that the string passed is a valid 'URL' '''
+
+ isit = is_uri(value, schemes)
+ if isit:
+ try:
+ x = urlparse(value)
+ isit = bool(x.netloc or x.scheme == 'file')
+ except Exception as e:
+ isit = False
+ return isit
+
+
+def is_urn(value):
+ return is_uri(value, ['urn'])
+
+
+class TestModule(object):
+ ''' Ansible URI jinja2 test '''
+
+ def tests(self):
+ return {
+ # file testing
+ 'uri': is_uri,
+ 'url': is_url,
+ 'urn': is_urn,
+ }