mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
99c564398a
* rebased after jira bugfix * Update plugins/modules/web_infrastructure/jira.py Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Felix Fontein <felix@fontein.de>
89 lines
2.1 KiB
YAML
89 lines
2.1 KiB
YAML
---
|
|
- name: create test ticket
|
|
community.general.jira:
|
|
uri: "{{ uri }}"
|
|
username: "{{ user }}"
|
|
password: "{{ pasw }}"
|
|
project: "{{ proj }}"
|
|
operation: create
|
|
summary: test ticket
|
|
description: bla bla bla
|
|
issuetype: Task
|
|
register: issue
|
|
- debug:
|
|
msg: Issue={{ issue }}
|
|
- name: assert test ticket
|
|
assert:
|
|
that:
|
|
- issue is changed
|
|
- issue.meta.key.startswith(proj)
|
|
|
|
- name: add comment bleep bleep
|
|
community.general.jira:
|
|
uri: "{{ uri }}"
|
|
username: "{{ user }}"
|
|
password: "{{ pasw }}"
|
|
issue: "{{ issue.meta.key }}"
|
|
operation: comment
|
|
comment: bleep bleep!
|
|
register: comment_bleep_bleep
|
|
- name: assert comment bleep bleep
|
|
assert:
|
|
that:
|
|
- comment_bleep_bleep is changed
|
|
- comment_bleep_bleep.meta.body == "bleep bleep!"
|
|
- comment_bleep_bleep.meta.body != None
|
|
|
|
- name: transition -> In Progress with comment
|
|
community.general.jira:
|
|
uri: "{{ uri }}"
|
|
username: "{{ user }}"
|
|
password: "{{ pasw }}"
|
|
issue: "{{ issue.meta.key }}"
|
|
operation: transition
|
|
status: Start Progress
|
|
comment: -> in progress
|
|
register: transition_inprog
|
|
- name: assert transition -> In Progress with comment
|
|
assert:
|
|
that:
|
|
- transition_inprog is changed
|
|
|
|
- name: change assignee
|
|
community.general.jira:
|
|
uri: "{{ uri }}"
|
|
username: "{{ user }}"
|
|
password: "{{ pasw }}"
|
|
issue: "{{ issue.meta.key }}"
|
|
operation: edit
|
|
account_id: "{{ user2 }}"
|
|
register: assign
|
|
- name: assert change assignee
|
|
assert:
|
|
that:
|
|
- assign is changed
|
|
|
|
- name: transition -> Resolved with comment
|
|
community.general.jira:
|
|
uri: "{{ uri }}"
|
|
username: "{{ user }}"
|
|
password: "{{ pasw }}"
|
|
issue: "{{ issue.meta.key }}"
|
|
operation: transition
|
|
status: Resolve Issue
|
|
comment: -> resolved
|
|
account_id: "{{ user1 }}"
|
|
fields:
|
|
resolution:
|
|
name: Done
|
|
description: wakawakawakawaka
|
|
register: transition_resolved
|
|
- name: assert transition -> Resolved with comment
|
|
assert:
|
|
that:
|
|
- transition_resolved is changed
|
|
|
|
- debug:
|
|
msg:
|
|
- Issue = {{ issue.meta.key }}
|
|
- URL = {{ issue.meta.self }}
|