Merge "Add unit test for zuul_json text result parsing"

This commit is contained in:
Zuul
2022-05-03 05:37:45 +00:00
committed by Gerrit Code Review
5 changed files with 136 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
- hosts: localhost
gather_facts: no
tasks:
- name: Ensure we handle string returns properly
return_strings:
an_arg: 'if you see this string, it is working'
- name: Ensure this never shows up
return_strings:
an_arg: 'this is a secret string'
no_log: '{{ item }}'
# If any loop iteration is no_log, they all are; see
# https://github.com/ansible/ansible/commit/bda074d34e46ee9862a48ed067ad42260d3f92ab
loop:
- true
- false

View File

@@ -0,0 +1,40 @@
# Copyright (c) 2022 Red Hat
#
# This module 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.
#
# This software 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 this software. If not, see <http://www.gnu.org/licenses/>.
# This file, by existing, should be found instead of ansible's built in
# file module.
from ansible.module_utils.basic import * # noqa
from ansible.module_utils.basic import AnsibleModule
def main():
module = AnsibleModule(
argument_spec=dict(
an_arg=dict(required=True, type='str'),
)
)
results = [
'this is a string',
module.params['an_arg'],
'a final string'
]
module.exit_json(msg="A plugin message", results=results)
if __name__ == '__main__':
main()

View File

@@ -0,0 +1,27 @@
- pipeline:
name: check
manager: independent
post-review: true
trigger:
gerrit:
- event: patchset-created
success:
gerrit:
Verified: 1
failure:
gerrit:
Verified: -1
- job:
name: base
parent: null
- job:
name: json-results-strings
attempts: 1
run: playbooks/json-results-strings.yaml
- project:
check:
jobs:
- json-results-strings

View File

@@ -0,0 +1,6 @@
- tenant:
name: tenant-one
source:
gerrit:
config-projects:
- org/project