summaryrefslogtreecommitdiffstats
path: root/ansible_collections/community/routeros/tests/integration/targets
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:03:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:03:42 +0000
commit66cec45960ce1d9c794e9399de15c138acb18aed (patch)
tree59cd19d69e9d56b7989b080da7c20ef1a3fe2a5a /ansible_collections/community/routeros/tests/integration/targets
parentInitial commit. (diff)
downloadansible-66cec45960ce1d9c794e9399de15c138acb18aed.tar.xz
ansible-66cec45960ce1d9c794e9399de15c138acb18aed.zip
Adding upstream version 7.3.0+dfsg.upstream/7.3.0+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/community/routeros/tests/integration/targets')
-rw-r--r--ansible_collections/community/routeros/tests/integration/targets/filter_quoting/aliases6
-rw-r--r--ansible_collections/community/routeros/tests/integration/targets/filter_quoting/tasks/main.yml63
2 files changed, 69 insertions, 0 deletions
diff --git a/ansible_collections/community/routeros/tests/integration/targets/filter_quoting/aliases b/ansible_collections/community/routeros/tests/integration/targets/filter_quoting/aliases
new file mode 100644
index 00000000..ddba8181
--- /dev/null
+++ b/ansible_collections/community/routeros/tests/integration/targets/filter_quoting/aliases
@@ -0,0 +1,6 @@
+# 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
+
+shippable/posix/group1
+skip/python2.6
diff --git a/ansible_collections/community/routeros/tests/integration/targets/filter_quoting/tasks/main.yml b/ansible_collections/community/routeros/tests/integration/targets/filter_quoting/tasks/main.yml
new file mode 100644
index 00000000..e7a2d29a
--- /dev/null
+++ b/ansible_collections/community/routeros/tests/integration/targets/filter_quoting/tasks/main.yml
@@ -0,0 +1,63 @@
+---
+# 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 split filter"
+ assert:
+ that:
+ - "'' | community.routeros.split == []"
+ - "'foo bar' | community.routeros.split == ['foo', 'bar']"
+ - >
+ 'foo bar="a b c"' | community.routeros.split == ['foo', 'bar=a b c']
+
+- name: "Test split filter error handling"
+ set_fact:
+ test: >-
+ {{ 'a="' | community.routeros.split }}
+ ignore_errors: true
+ register: result
+
+- name: "Verify split filter error handling"
+ assert:
+ that:
+ - >-
+ result.msg == "Unexpected end of string during escaped parameter"
+
+- name: "Test quote_argument filter"
+ assert:
+ that:
+ - >
+ 'a=' | community.routeros.quote_argument == 'a=""'
+ - >
+ 'a=b' | community.routeros.quote_argument == 'a=b'
+ - >
+ 'a=b c' | community.routeros.quote_argument == 'a="b\\_c"'
+ - >
+ 'a=""' | community.routeros.quote_argument == 'a="\\"\\""'
+
+- name: "Test quote_argument_value filter"
+ assert:
+ that:
+ - >
+ '' | community.routeros.quote_argument_value == '""'
+ - >
+ 'foo' | community.routeros.quote_argument_value == 'foo'
+ - >
+ '"foo bar"' | community.routeros.quote_argument_value == '"\\"foo\\_bar\\""'
+
+- name: "Test join filter"
+ assert:
+ that:
+ - >
+ ['a=', 'b=c d'] | community.routeros.join == 'a="" b="c\\_d"'
+
+- name: "Test list_to_dict filter"
+ assert:
+ that:
+ - >
+ ['a=', 'b=c'] | community.routeros.list_to_dict == {'a': '', 'b': 'c'}
+ - >
+ ['a=', 'b=c'] | community.routeros.list_to_dict(skip_empty_values=True) == {'b': 'c'}
+ - >
+ ['a', 'b=c'] | community.routeros.list_to_dict(require_assignment=False) == {'a': none, 'b': 'c'}