ansible/test/integration/targets/github_issue/tasks/main.yml
Abhijeet Kasurde 5ef2c5314e Fixed error handling in github_issue module (#39652)
* Fixed error handling in github_issue module

Due to recent changes in github3.py library module stopped working.
This fix adds extra error handling for new changes in library.

Fixes: #39627

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>

* Check version

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>

* Refactor github_issue

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
2019-05-15 02:35:11 -04:00

32 lines
933 B
YAML

# Test code for the github_issue module.
#
# Copyright: (c) 2017-2018, Abhijeet Kasurde <akasurde@redhat.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
- name: Check if GitHub issue is closed or not
github_issue:
organization: "{{ organization }}"
repo: "{{ repo }}"
issue: "{{ issue }}"
action: get_status
register: get_status_0002
- assert:
that:
- "{{ get_status_0002.changed == True }}"
- "{{ get_status_0002.issue_status == 'closed' }}"
- name: Check if GitHub issue is closed or not
github_issue:
organization: "{{ organization }}"
repo: "{{ repo }}"
issue: "{{ non_existent_issue }}"
action: get_status
register: get_status_0003
ignore_errors: True
- assert:
that:
- "{{ get_status_0003.changed == False }}"
- "{{ get_status_0003.failed == True }}"
- "{{ 'Failed' in get_status_0003.msg }}"