mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-09 20:20:31 -07:00
Fix bad expressions in tests (#7625)
* Fix bad expressions in tests.
ci_complete
* Disable cmd_runner integration tests.
ci_complete
* Another bad expression.
ci_complete
(cherry picked from commit 3b779ecade
)
Co-authored-by: Felix Fontein <felix@fontein.de>
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
---
|
|
# 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
|
|
|
|
## basics
|
|
|
|
- name: test-basic 1 - specify both "value" and "values" and fail
|
|
ini_file:
|
|
path: "{{ output_file }}"
|
|
section: drinks
|
|
option: fav
|
|
value: lemonade
|
|
values:
|
|
- coke
|
|
- sprite
|
|
register: result_basic_1
|
|
ignore_errors: true
|
|
|
|
- name: test-basic 1 - verify error message
|
|
assert:
|
|
that:
|
|
- result_basic_1 is not changed
|
|
- result_basic_1 is failed
|
|
- "result_basic_1.msg == 'parameters are mutually exclusive: value|values'"
|
|
|
|
|
|
- name: test-basic 2 - set "create=no" on non-existing file and fail
|
|
ini_file:
|
|
path: "{{ non_existing_file }}"
|
|
section: food
|
|
create: false
|
|
value: banana
|
|
register: result_basic_2
|
|
ignore_errors: true
|
|
|
|
- name: test-basic 2 - verify error message
|
|
assert:
|
|
that:
|
|
- result_basic_2 is not changed
|
|
- result_basic_2 is failed
|
|
- result_basic_2.msg == "Destination " ~ non_existing_file ~ " does not exist!"
|