Hi,
Am trying to integrate jira cloud with test link.
followed the steps mentioned in
http://blogs.quovantis.com/step-by-step-integration-of-jira-with-testlink/
When I tryto enter the information in the configuration and test the connection I keep getting the Test Connection KO message. When I go back to the Issue tracker menu and click on the little wrench to activate the issue tracker I get a little icon that looks like a grey chain with yellow triangle over it. I hover over it and it says to check the TestLink Event logs.
My configuration file looks like
<issuetracker>
<username>UID</username>
<password>pwd</password>
<uribase>jiraurl//</uribase>
<uriapi>jiraurl//rest/api/latest/</uriapi>
<uriview>jiraurl//browse/</uriview>
<userinteraction>1/0</userinteraction>
<projectkey>KEY</projectkey>
<issuetype>10004</issuetype>
</issuetracker>
Also I have selected jira(interface: rest) type.
Please help!
I had the same problem but I solved by creating a new API Token and use it as my password.
More details:
It's all, now the "Check connection" button result is "Test Connection OK"
do you have example configuration file for above?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
<issuetracker>
<username>Admin user mail id with which you are going to login to atlassian</username>
<password>Newly created API Token</password>
<uribase>https://XXXXXXX.atlassian.net/</uribase>
<!-- CRITIC - WITH HTTP getIssue() DOES NOT WORK -->
<uriapi>https://XXXXX.atlassian.net/rest/api/latest/</uriapi>
<uriview>https://XXXXXX.atlassian.net/browse/</uriview>
<projectkey>Project key that will unique for each and every project</projectkey>
<userinteraction>1/0</userinteraction>
</issuetracker>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Guiu Mateu Thanks Buddy. Worked for me as well. It needs token auth. But testlink template shows password that's confusing for all.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Specification of the <userinteraction>
1: User will be able to manage the following attributes from GUI
0: Values for attributes will be taken FROM this config from GUI
Attributes:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The solution worked for us. Thank you very much
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
after add <issuetype>, it worked for me ... ^__^
share my configration as below:
--------------------------------------------------------
<issuetracker>
<username>Admin user mail id with which you are going to login to atlassian</username>
<password>Newly created API Token</password>
<uribase>https://XXXXXXX.atlassian.net/</uribase>
<!-- CRITIC - WITH HTTP getIssue() DOES NOT WORK -->
<uriapi>https://XXXXX.atlassian.net/rest/api/latest/</uriapi>
<uriview>https://XXXXXX.atlassian.net/browse/</uriview>
<projectkey>Project key that will unique for each and every project</projectkey>
<userinteraction>1</userinteraction>
<issuetype>10003</issuetype>
</issuetracker>
---------------------------------------------------------
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Following this format it works thanks.!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
<issuetracker>
<username>User(Email)</username>
<password>Token</password>
<uribase>https://testlink.atlassian.net/browse/project key</uribase>
<uriapi>https://testlink.atlassian.net/rest/api/latest/</uriapi>
<uriview>https://testlink.atlassian.net/browse/</uriview>
<userinteraction>1</userinteraction>
<issuetype>1</issuetype>
<projectkey>"project key"</projectkey>
</issuetracker>
Generate token: https://id.atlassian.com/manage/api-tokens
Also modify the file : issuetrackerintegration.php of testlink
and comment the code:
/* if (property_exists($opt, 'reporter')) {
$issue['fields']['reporter'] = array('name' => (string)$opt->reporter);
}
*/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try this
<issuetracker>
<username>Admin user mail id with which you are going to login to atlassian</username>
<password>Newly created API Token</password>
<uribase>https://XXXXXXX.atlassian.net/</uribase>
<!-- CRITIC - WITH HTTP getIssue() DOES NOT WORK -->
<uriapi>https://XXXXX.atlassian.net/rest/api/latest/</uriapi>
<uriview>https://XXXXXX.atlassian.net/browse/</uriview>
<projectkey>Project key that will unique for each and every project</projectkey>
<userinteraction>1/0</userinteraction>
</issuetracker>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi raghuram,
It does not work for me.
¿How do you use fill username field? I tried putting my email address (the same I user for login to atlassian) but doesn't work.
I have admin permissions on my jira project so I don't think that is the matter. ¿Did you make any changes in settings of Jira Domain or Project (I made the conection check in other domain and it was successfull)?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please ensure you followed below steps
1. Login with Admin email id(You should be admin for entire JIRA but not for your project).
2. Create a new api token with that JIRA Admin credentials.(Enter the https://id.atlassian.com/manage/api-tokens URL and click Enter. )
3. Click on Create API token and name it anything.
4. Now copy this token and paste it as the password for your JIRA admin email which we will be using.
5. Now try the connection.It should work.Please let me know if you still face any problem
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please find the steps as below.
Please ensure you followed below steps
1. Login with Admin email id(You should be admin for entire JIRA but not for your project).
2. Create a new api token with that JIRA Admin credentials.(Enter the https://id.atlassian.com/manage/api-tokens URL and click Enter. )
3. Click on Create API token and name it anything.
4. Now copy this token and paste it as the password for your JIRA admin email which we will be using.
5. Now try the connection.It should work.Please let me know if you still face any problem
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Any idea If it is possible to link Jira Epics or stories with test cases present in testlink??
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
<projectkey>Project key that will unique for each and every project</projectkey>
what needs tp use ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For every project that we created in JIRA while creating it we need to give a project key which will be unique.so you need to give that key here so that it will connect to that project
Please let me know if you face any issues while dn that
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My question was linking of requirements with test cases. I have no issue in integrating Jira with TestLink. Only advantage that I have doing is that the jira tickets can be created from testLink. But my purpose is to get number of test cases written against requirement, which is not possible if we don't integrate stories of jira with test cases. I hope you got my point
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Tarunam is this problem resolved?
i am facing the same issue i.e link Testlink test cases with Jira User Story.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does Testlink integration work with a Jira Personal Access Token?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Prasanna and welcome to the Community!
TestLink is a 3rd party application, along with this, it is not a supported product within the Atlassian Marketplace. For support with TestLink we would suggest reaching out to that vendor for support on their product.
With this said, I did some searching for you issue and found the following which seem similar to your issue.
https://stackoverflow.com/questions/15385251/testlink-1-9-5-jira-integration
http://forum.testlink.org/viewtopic.php?f=43&t=7904
The forum for Testlink and Jira.
http://forum.testlink.org/viewforum.php?f=43
If you find a solution to the problem you’re facing, please post it here so other in your situation may find a resolution.
Regards,
Stephen Sifers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.