Microsoft Teams, or "Teams," is a popular communication platform many development and non-development teams adopt.
Teams use it daily to collaborate, make calls, share information, ask for help, and be notified of certain events to increase visibility of the status of the projects they're working on.
In this article, we'll see an everyday use case: sharing test results with the team in their collaboration tool (i.e., "MS Teams"). However, Xray and Jira's built-in automation capabilities can implement many more use cases.
To integrate with Teams, we can set up an incoming webhook in a channel and use it to send notifications (i.e., "messages").
This common use-case is about sharing information about test results, usually from test automation, to a Teams channel so the team can be aware of testing progress and analyze the results if needed.
At high-level, we will:
|
Xray provides an automatic mechanism to transition Test Execution issues if all of its tests have a final status (i.e., if all tests have reported results). This is useful whenever uploading test automation results from a CI/CD pipeline. Please read the available configuration options to enable this under the Miscellaneous tab in Xray global settings. |
We can compare the number of tests that passed vs the total number of tests on the Test Execution, to identify wether all test results were successful or not. We'll use information from the "Test Execution Status" custom field that is associated with the Test Execution issue; if you want to see what's within this field, you can use the "Add value to the audit log"
{{Test Execution Status.statuses.get(0).statusCount}} ... {{Test Execution Status.count}} |
{{Test Execution Status.statuses.get(1).statusCount)}}
If not all tests passed, we can send the following content.
{ "@type": "MessageCard", "@context": "http://schema.org/extensions", "themeColor": "0076D7", "summary": "{{issue.summary}}", "sections": [{ "activitySubtitle": "{{issue.summary}}", "activityTitle": "Test results for project {{project.name}}", "activityImage": "https://docs.getxray.app/s/e1tqew/8402/f0863dd17de361916f7914addff17e0432a0be98/_/images/icons/emoticons/error.png", "facts": [ { "name": "Test Execution", "value": "[{{issue.key}}]({{issue.url}})" }, { "name": "Reporter", "value": "{{issue.reporter.displayName}}" }, { "name": "Version", "value": "{{issue.fixVersions.name}}" }, { "name": "Revision", "value": "{{issue.Revision}}" }, { "name": "Test Environment(s)", "value": "{{issue.Test Environments}}" }, { "name": "Test Plan", "value": "[{{issue.Test Plan}}]({{baseUrl}}/browse/{{issue.Test Plan}})" }, { "name": "Total tests", "value": "{{Test Execution Status.count}}" }, { "name": "Passed tests", "value": "{{Test Execution Status.statuses.get(0).statusCount}}" }, { "name": "Failed tests", "value": "{{Test Execution Status.statuses.get(1).statusCount}}" }, { "name": "Other tests", "value": "{{#=}}{{Test Execution Status.count}} - {{Test Execution Status.statuses.get(0).statusCount}} - {{Test Execution Status.statuses.get(1).statusCount}}{{/}}" }], "markdown": true }] } |
If all tests passed, within the "ELSE" section of the IF block, we can send the following content.
{ "@type": "MessageCard", "@context": "http://schema.org/extensions", "themeColor": "0076D7", "summary": "{{issue.summary}}", "sections": [{ "activitySubtitle": "{{issue.summary}}", "activityTitle": "Test results for project {{project.name}}", "activityImage": "https://docs.getxray.app/s/e1tqew/8402/f0863dd17de361916f7914addff17e0432a0be98/_/images/icons/emoticons/check.png", "facts": [ { "name": "Test Execution", "value": "[{{issue.key}}]({{issue.url}})" }, { "name": "Reporter", "value": "{{issue.reporter.displayName}}" }, { "name": "Version", "value": "{{issue.fixVersions.name}}" }, { "name": "Revision", "value": "{{issue.Revision}}" }, { "name": "Test Environment(s)", "value": "{{issue.Test Environments}}" }, { "name": "Test Plan", "value": "[{{issue.Test Plan}}]({{baseUrl}}/browse/{{issue.Test Plan}})" }, { "name": "Total tests", "value": "{{Test Execution Status.count}}" }, { "name": "Passed tests", "value": "{{Test Execution Status.statuses.get(1).statusCount}}" }, { "name": "Failed tests", "value": "{{Test Execution Status.statuses.get(0).statusCount}}" }, { "name": "Other tests", "value": "{{#=}}{{Test Execution Status.count}} - {{Test Execution Status.statuses.get(0).statusCount}} - {{Test Execution Status.statuses.get(1).statusCount}}{{/}}" }], "markdown": true }] } |