Error when importing test cases using Zephyr Importer utility tool
We are on: Zephyr for Jira 6.0.1 -Test Management for JIRA (Server) and Jira v8.13.4 We were using the Zephyr Internal Importer successfully following the instructions on the Zephyr doc at this pagehttps://zephyrdocs.atlassian.net/wiki/spaces/ZFJ0500/pages/1061421425/Import+Testsstarting in the "Using the Internal Importer" section. But it has stopped working and now when we get to the last step of clicking the "Import" button we get an error. We have tried to reformat the excel file being imported in multiple ways but nothing is working. The error on screen says it was successful but also that it errored - and no test cases are actually imported. "Error: Sheet1:Row:2:null". I've pasted a screenshot below. The logs also show errors like this (where I've replaced the person's real user name with 'xxxuser': 2021-03-10 13:45:57,892 pool-8077-thread-1 ERROR xxxuser 825x6044494x1 g1bsm5 10.217.229.68,172.27.70.88 /rest/zephyr/latest/importer/issueImport [c.t.z.j.service.impl.ExcelFileProcessThread] Exception while creating issue: Please advise, thank you.1.4KViews0likes0CommentsHow to write property value in setup script for test Suite? SOLVED
Hi, This is one of the previously resolved issue forCXina frequent contributor. Please assist me in the similar kind of error I am encountered for the following script I have developed. def projectProperty = testSuite.project.getPropertyValue("MyProp") import com.eviware.soapui.support.types.StringToStringMap import com.eviware.soapui.model.testsuite.TestPropertyListener testCaseList = testSuite.getTestCases() testCaseList.each { testCase = testSuite.getTestCaseByName(it.key) wsdlTestSteps = testCase.getTestStepsOfType(com.eviware.soapui.impl.wsdl.teststeps.WsdlTestRequestStep.class) wsdlTestSteps.each { if (projectProperty == "IMP1A_Secured" ) { it.getHttpRequest().setOutgoingWss("IMP1A") it.testRequest.setSslKeystore("qa.hub.jks") } else { it.getHttpRequest().setOutgoingWss("") it.testRequest.setSslKeystore("") } } } Thank You.Solved1.8KViews0likes4CommentsHow can I resolve "content for version #x is not available" when content exists on server?
Hello world, When trying to view a diff, I'm seeing an error message: Content for version #4 is not available - it was probably archived by your administrator. (Content MD5: 0b5cc2fd6db3e718e772f17fa4ed0ce7) As an administrator, I can verify that no one intentionally archived that file. What's more, is that I can still find the contents of the diff at [CacheRootLocation]/0b/5c/0b5cc2fd6db3e718e772f17fa4ed0ce7. Has anyone experienced this issue before? Does anyone know how I could resolve this? I've tried restarting the server; deleting the file and restarting the server; and restoring the file and restarting the server. This is happening for other files in the same review and for all the files in a few other reviews as well. I doubtit's related, but we renewed our license between the time when those reviews were created and now when we're trying to view the diffs. Thanks for any help! Best, ~Chris1.6KViews1like1CommentAccessing internalCustomFields for Triggers in Collaborator
Hello world, I can use the http://collaborator.server/services/json/v1 API with the following JSON body to get data about a review. [ { "command" : "ReviewService.findReviewById", "args" : { "reviewId" : "42" } }] Specifically, it includes the following internalCustomFields key: "internalCustomFields" : [ { "name" : "JiraIssueId", "value" : [ "10600" ] }, { "name" : "ExternalTaskId", "value" : [ "" ] } ] I would like to use this JiraIssueId field for a review as an argument to one of the configurable Triggers (say Review Phase Changed for example). Does anyone know how I would access this internal field? I know I can use ${review.custom.foo} for visible custom fields that I create, but the internal custom fields are not documented in the http://collaborator.server/manual/index.html?admin_var_subst.html documentation. I've tried ${review.internal.JiraIssueId}, ${review.internalCustomFields.JiraIssueId}, and ${review.custom.JiraIssueId} but none of them work (giving me the following error) Error: Invalid input: Parameters: ${review.internalCustom.JiraIssueId} is not a valid substitution keyword Thanks for any help! Best, ~Chris2.1KViews0likes1Comment