mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-08 22:30:04 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
2
tests/integration/targets/github_issue/aliases
Normal file
2
tests/integration/targets/github_issue/aliases
Normal file
|
@ -0,0 +1,2 @@
|
|||
destructive
|
||||
shippable/posix/group1
|
32
tests/integration/targets/github_issue/tasks/main.yml
Normal file
32
tests/integration/targets/github_issue/tasks/main.yml
Normal file
|
@ -0,0 +1,32 @@
|
|||
# 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 }}"
|
6
tests/integration/targets/github_issue/vars/main.yml
Normal file
6
tests/integration/targets/github_issue/vars/main.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
|
||||
issue: 23642
|
||||
non_existent_issue: 1111111
|
||||
organization: ansible
|
||||
repo: ansible
|
Loading…
Add table
Add a link
Reference in a new issue