Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JIRA XRAY plugin creates duplicate test case when importing using API and feature file

Prashant Jeet Singh
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 29, 2021

I have a bash script that takes all the feature files from a specific directory and uses `/rest/raven/1.0/import/feature?projectKey=XYZ` XRAY-JIRA API to create TEST CASES in JIRA.

`XRAY version 4.2.1_j7`

I am running this script in a JENKINS-PIPELINE but the problem is when I run it for the first time it creates test cases that are correct but when I re-run the build it starts creating the same test cases again (duplicating them), any suggestion/reason why this is happening

My bash script:
```
#!/bin/bash
find <DIR_PATH> -type f -name "*.feature" | while read fname;
do
curl -H "Content-Type:multipart/form-data" -X $USERNAME:$PASSWORD -F "file=@$fname"
https://<JIRA_URL>/rest/raven/1.0/import/feature?projectKey=XYZ
done
```

 

Sample feature file:
```
Feature Facebook Login

@login
Scenario: Log in to FB app
Given: User is at FB login page
When User enters username and password
Then User is logged in successfully
```

Please suggest to me how and where can I debug to fix the issue
Thanks

2 answers

0 votes
Rogério Paiva - Xray Xporter
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 3, 2022

Hi @Prashant Jeet Singh 

Please check the conditions that Xray uses to find if the Test case already exists, or if it is a new one and create it: https://docs.getxray.app/display/XRAY/Importing+Cucumber+Tests+-+REST

If you need further help, please get in touch with Xray Support (http://Xraysupport.getXray.app).

Thank you.

Kind regards,
Rogerio Paiva [Xray Support Team]

0 votes
Fabian Lim
Community Champion
December 31, 2021

Suggest an answer

Log in or Sign up to answer