2020-03-09 10:11:07 +01:00
|
|
|
---
|
2020-09-25 08:01:17 +02:00
|
|
|
####################################################################
|
|
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
|
|
####################################################################
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
# test code for ini_file plugins
|
2022-08-07 13:37:23 +02:00
|
|
|
# Copyright (c) 2017 Red Hat Inc.
|
|
|
|
# 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
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
- name: record the output directory
|
|
|
|
set_fact:
|
2021-08-15 12:59:50 +02:00
|
|
|
output_file: "{{ remote_tmp_dir }}/foo.ini"
|
|
|
|
non_existing_file: "{{ remote_tmp_dir }}/bar.ini"
|
2020-03-09 10:11:07 +01:00
|
|
|
|
2021-08-15 12:59:50 +02:00
|
|
|
- name: include tasks
|
2020-03-09 10:11:07 +01:00
|
|
|
block:
|
|
|
|
|
2021-08-15 12:59:50 +02:00
|
|
|
- name: include tasks to perform basic tests
|
|
|
|
include_tasks: tests/00-basic.yml
|
2021-03-08 06:57:40 +01:00
|
|
|
|
2021-08-15 12:59:50 +02:00
|
|
|
- name: reset output file
|
|
|
|
file:
|
2021-03-08 06:57:40 +01:00
|
|
|
path: "{{ output_file }}"
|
|
|
|
state: absent
|
2021-08-08 18:34:34 +02:00
|
|
|
|
2021-08-15 12:59:50 +02:00
|
|
|
- name: include tasks to perform tests with parameter "value"
|
|
|
|
include_tasks: tests/01-value.yml
|
2021-03-08 06:57:40 +01:00
|
|
|
|
2021-08-15 12:59:50 +02:00
|
|
|
- name: reset output file
|
|
|
|
file:
|
|
|
|
path: "{{ output_file }}"
|
|
|
|
state: absent
|
2021-05-22 22:20:37 +02:00
|
|
|
|
2021-08-15 12:59:50 +02:00
|
|
|
- name: include tasks to perform tests with parameter "values"
|
|
|
|
include_tasks: tests/02-values.yml
|
2021-06-27 10:00:01 +02:00
|
|
|
|
2021-08-15 12:59:50 +02:00
|
|
|
- name: include tasks to test regressions
|
|
|
|
include_tasks: tests/03-encoding.yml
|