How to import Jira cascade field values using Zephyr Test Importer
Hello, I am looking for suggestion on how to prepare the Excel file for Jira cascade field values when using the Zephyr Test Importer. For example, I have a Jira custom cascade field "Test Type". Option 1 = UAT Test. Option 2 = Master In Jira csv import, I would prepare the data as "UAT Test -> Master" for the custom cascade field. But in Zephyr test importer, this format didn't work. Only Option 1 was imported successfully. Option 2 was blank. Thanks, Sara534Views0likes1CommentFrom Test Summary page, not able to view Details
Hi, From Test Summary page, on click of any Tests in Component or Versions or labels, not able to view the details. Page always says "you Can't View This Project". Same response for JIRA Project Lead, Project Administrator & JIRA System Admins. http://JIRAServer:8080/projects/undefined/secure/IssueNavigator.jspa?reset=true&jqlQuery=project=%27JP%27%20AND%20issuetype=10701%20AND%20component=18058 Enabled permissions for all roles in permission scheme. JIRA Software Version : 9.6.0 Zephyr Squad Version : 9.2.0.92009706 Please let me know how to resolve this issue.534Views0likes3CommentsHow can I address Zephyr fields in Xporter templates?
I want to create a Xporter template for exporting test cases. The template works so far with attributes from the Jira issueType "Test". But when I use ${Zephyr Teststep}in the template, the following is written to the created export file (DOCX), in that case: [com.thed.zephyr.je.vo.TeststepBean@499df587, com.thed.zephyr.je.vo.TeststepBean@32dac2f1, com.thed.zephyr.je.vo.TeststepBean@3964d21] I was not able to figure out how to address the test step content of a Zephyr test case. I want to create a custom table with the test steps in the rows and the "step", "data" and "result" in the columns. How can I achieve this? I found the following XML snippet when a test case is exported to XML: <customfield id="customfield_11820" key="com.thed.zephyr.je:zephyr-je-customfield-teststep"> <customfieldname>Zephyr Teststep</customfieldname> <customfieldvalues> <steps> <step> <orderId>1</orderId> <step>Test step 1</step> <data>Test data 1</data> <result>Result 1</result> </step> <step> <orderId>2</orderId> <step>Test step 2</step> <data>Test data 2</data> <result>Result 2</result> </step> </steps> </customfieldvalues> </customfield> Another issue is: where do I find the documentation for Xporter and Zephyr for these versions? Jira Server: 8.20.11 Zephyr Squad: 6.2.9109Views0likes0CommentsZephyr Utility Importer Issue
Hello Team, Following the upgrade of Jira from version 8.20.10 to 9.7.2, and the update of Zephyr Squad from 6.8.2 to 9.4.1 (Zephyr Squad SEN number - 17725835), I have run into an issue while trying to connect to the Zephyr importer utility tool. Although the connection to the Jira server proceeded without any errors, I faced a 404 error while attempting to fetch a Jira Project. Could you kindly provide guidance on any essential changes that need to be implemented on the Jira server? Your prompt assistance would be highly appreciated. Best regards171Views0likes0CommentsIs there a way to retrieve all Test Cycles modified yesterday via the API?
I need to retrieve all Test Cycles that have been modified yesterday via the Zephyr API. I dont see a last modified field. Can it be acheived or is there any workarounds via some relationship? I need to pull all Tests, Cycles and Executions out as part of a nightly batch job to put into an external reporting tool. We are using Jira Server 8.20 Thanks231Views0likes0CommentsUnable to trigger Zephyr for Jira Server REST API
I have Jira Server `7.10.1` and Zephyr for JIRA `3.6.4.36403917` running on my local linux server. Now I'd like to use API to get the information in Zephyr related fields. Here's the python code that I used to fetch the information in Jira Zephyr fields. import config import requests import base64 auth = base64.b64encode(f"{config.username}:{config.password}".encode()) header = { "Authorization": "Basic " + auth.decode(), "Content-Type": "application/json", "Accept": "application/json", } response = requests.get(f"{config.jira_url}/rest/zephyr/1.0/zchart/issueStatuses?projectId=13900", headers=header) print(response) I've checked that I can use `config.username` and `config.password` to login my Jira server. And I've given permissions to `config.username` so that it can view the content of Jira project with project id = 13900. However, when I run `print(response.status_code)`, I get `403`. Does anyone know why my python code doesn't work? The value of `response.text` is `{}`. I can't get any further information from `response`. I created the above code by referencing the document in `https://jira.mydomain.com/rest/zephyr/1.0/application.wadl`. This articlesays that I should change `rest/zephyr/1.0` to `rest/zapi/1.0` to make the API work. But after making this change, I get `java.lang.NullPointerException` error. Here's part of the error message: 2023-06-27 05:50:36,214 http-nio-8080-exec-242 ERROR [o.a.c.c.C.[.[localhost].[/].[default]] Servlet.service() for servlet [default] in context with path [] threw exception java.lang.NullPointerException at com.atlassian.logging.log4j.FilteredPatternLayout.formatStackTrace(FilteredPatternLayout.java:345) at com.atlassian.logging.log4j.FilteredPatternLayout.format(FilteredPatternLayout.java:330) at org.apache.log4j.WriterAppender.subAppend(WriterAppender.java:310) at org.apache.log4j.RollingFileAppender.subAppend(RollingFileAppender.java:276) at org.apache.log4j.WriterAppender.append(WriterAppender.java:162) at org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:251) at com.atlassian.jira.logging.JiraHomeAppender.doAppend(JiraHomeAppender.java:206) at org.apache.log4j.helpers.AppenderAttachableImpl.appendLoopOnAppenders(AppenderAttachableImpl.java:66) at org.apache.log4j.Category.callAppenders(Category.java:206) at org.apache.log4j.Category.forcedLog(Category.java:391) at org.apache.log4j.Category.fatal(Category.java:382) at com.thed.zephyr.je.filter.ZAPIRestFilter.doFilter(ZAPIRestFilter.java:160) ... 12 filtered at com.atlassian.web.servlet.plugin.request.RedirectInterceptingFilter.doFilter(RedirectInterceptingFilter.java:21) ... 53 filtered at com.atlassian.jira.security.JiraSecurityFilter.lambda$doFilter$0(JiraSecurityFilter.java:66) ... 1 filtered at com.atlassian.jira.security.JiraSecurityFilter.doFilter(JiraSecurityFilter.java:64) ... 16 filtered at com.atlassian.plugins.rest.module.servlet.RestSeraphFilter.doFilter(RestSeraphFilter.java:37) ... 19 filtered at com.atlassian.jira.servermetrics.CorrelationIdPopulatorFilter.doFilter(CorrelationIdPopulatorFilter.java:30) ... 10 filtered at com.atlassian.web.servlet.plugin.request.RedirectInterceptingFilter.doFilter(RedirectInterceptingFilter.java:21) ... 4 filtered at com.atlassian.web.servlet.plugin.LocationCleanerFilter.doFilter(LocationCleanerFilter.java:36) ... 26 filtered at com.atlassian.jira.servermetrics.MetricsCollectorFilter.doFilter(MetricsCollectorFilter.java:25) ... 23 filtered at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:745)267Views0likes0CommentsWhat will happen when Zephyr Squad license expires?
We use Jira Server and the Zephyr Squad - Test Management for Jira plugin. Currently it is on version4.9.0.49009282. The license is a Commercial license.When the license expires will the plugin still beusable? What specific limitations will we have if any?258Views0likes0CommentsZephry running on JIRA
Hi There are folders names that I wiled like to clean it up /jiradata/var/atlassian/application-data/jira/data/attachments/GEN/schedule /jiradata/var/atlassian/application-data/jira/data/attachments/GEN/teststepresult I have try to run the cleanup cycle and the cleanup cycle chase , Is there any other way to clean it up?267Views0likes0Comments