mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add a lot of tests to verify parsing routines for scenarios that should pass. Some changes TBD, like stripping command spaces off end of expressions.
This commit is contained in:
parent
f9f37a5070
commit
02c63cee26
4 changed files with 132 additions and 2 deletions
|
@ -16,7 +16,10 @@ endif
|
||||||
|
|
||||||
VAULT_PASSWORD_FILE = vault-password
|
VAULT_PASSWORD_FILE = vault-password
|
||||||
|
|
||||||
all: non_destructive destructive check_mode test_hash test_handlers test_group_by test_vault
|
all: non_destructive destructive check_mode test_hash test_handlers test_group_by test_vault parsing
|
||||||
|
|
||||||
|
parsing:
|
||||||
|
ansible-playbook good_parsing.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -v $(TEST_FLAGS)
|
||||||
|
|
||||||
non_destructive:
|
non_destructive:
|
||||||
ansible-playbook non_destructive.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -v $(TEST_FLAGS)
|
ansible-playbook non_destructive.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -v $(TEST_FLAGS)
|
||||||
|
|
|
@ -3,4 +3,4 @@
|
||||||
- include: destructive.yml
|
- include: destructive.yml
|
||||||
- include: rackspace.yml
|
- include: rackspace.yml
|
||||||
- include: amazon.yml
|
- include: amazon.yml
|
||||||
|
- include: good_parsing.yml
|
||||||
|
|
9
test/integration/good_parsing.yml
Normal file
9
test/integration/good_parsing.yml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
- hosts: testhost
|
||||||
|
|
||||||
|
# the following commands should all parse fine and execute fine
|
||||||
|
# and represent quoting scenarios that should be legit
|
||||||
|
|
||||||
|
gather_facts: False
|
||||||
|
|
||||||
|
roles:
|
||||||
|
- { role: test_good_parsing, tags: test_good_parsing }
|
118
test/integration/roles/test_good_parsing/tasks/main.yml
Normal file
118
test/integration/roles/test_good_parsing/tasks/main.yml
Normal file
|
@ -0,0 +1,118 @@
|
||||||
|
# test code for the ping module
|
||||||
|
# (c) 2014, Michael DeHaan <michael@ansible.com>
|
||||||
|
|
||||||
|
# This file is part of Ansible
|
||||||
|
#
|
||||||
|
# Ansible is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# Ansible is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
# various tests of things that should not cause parsing problems
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
test_input: "a=1 a=2 a=3"
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
multi_line: |
|
||||||
|
echo old
|
||||||
|
echo mcdonald
|
||||||
|
echo had
|
||||||
|
echo a
|
||||||
|
echo farm
|
||||||
|
|
||||||
|
- shell: echo "dog"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
result.cmd == 'echo "dog" '
|
||||||
|
|
||||||
|
- shell: echo 'dog'
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
result.cmd == 'echo \'dog\' '
|
||||||
|
|
||||||
|
- name: a quoted argument is not sent to the shell module as anything but a string parameter
|
||||||
|
shell: echo 'dog' 'executable=/usr/bin/python'
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- debug: var=result.cmd
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
result.cmd == "echo 'dog' 'executable=/usr/bin/python' "
|
||||||
|
|
||||||
|
- name: it is valid to pass multiple key=value arguments because the shell doesn't check key=value arguments
|
||||||
|
shell: echo quackquack=here quackquack=everywhere
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
result.cmd == 'echo quackquack=here quackquack=everywhere '
|
||||||
|
|
||||||
|
- name: the same is true with quoting
|
||||||
|
shell: echo "quackquack=here quackquack=everywhere"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
result.cmd == 'echo "quackquack=here quackquack=everywhere" '
|
||||||
|
|
||||||
|
- name: the same is true with quoting (B)
|
||||||
|
shell: echo "quackquack=here" "quackquack=everywhere"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: the same is true with quoting (C)
|
||||||
|
shell: echo "quackquack=here" 'quackquack=everywhere'
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: the same is true with quoting (D)
|
||||||
|
shell: echo "quackquack=here" 'quackquack=everywhere'
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: the same is true with quoting (E)
|
||||||
|
shell: echo {{ test_input }}
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
result.cmd == "echo a=1 a=2 a=3 "
|
||||||
|
|
||||||
|
- name: more shell duplicates
|
||||||
|
shell: echo foo=bar foo=bar
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
result.cmd == "echo foo=bar foo=bar "
|
||||||
|
|
||||||
|
- name: multi-line inline shell commands (should use script module but hey) are a thing
|
||||||
|
shell: "{{ multi_line }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- debug: var=result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
result.stdout_lines == [ 'old', 'mcdonald', 'had', 'a', 'farm' ]
|
||||||
|
|
||||||
|
- name: passing same arg to shell command is legit
|
||||||
|
shell: echo foo --arg=a --arg=b
|
||||||
|
failed_when: False # just catch the exit code, parse error is what I care about, but should register and compare result
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
# command shouldn't end in spaces, amend test once fixed
|
||||||
|
- result.cmd == "echo foo --arg=a --arg=b "
|
Loading…
Reference in a new issue