JIRA와 TestLink를 연동하는 방법을 아래에 기술한다.

JIRA 설정
1. Administration > Global Settings 하위의 General Configuration > Options 에서 Accept remote API calls 를 ON으로 설정한다.
2. JIRA RPC Plugin 을 설치한다.

TestLink 설정
1. config.inc.php 와 Custom_config.inc.php 파일에 $g_interface_bugs = 'JIRASOAP'; 로 설정
2. jirasoap.cfg.php 파일을 아래와 같이 수정
/** The Username being used by JIRA logon */
define('BUG_TRACK_USERNAME', 'jirauser');
 
/** The Password being used by JIRA logon*/
define('BUG_TRACK_PASSWORD', 'jirapassword');
 
/** link of the web server for JIRA*/
define('BUG_TRACK_HREF',"http://192.168.1.22:8080/");
 
* The values here are relative to the BUG_TRACK_HREF property *
 
/** path of JIRA WSDL */
define('BUG_TRACK_SOAP_HREF', "rpc/soap/jirasoapservice-v2?wsdl");
/** link of the web server for jira ticket*/
define('BUG_TRACK_SHOW_BUG_HREF', "browse/");
/** link of the web server for creating new jira ticket*/
define('BUG_TRACK_ENTER_BUG_HREF',"secure/CreateIssue.jspa");


+ Recent posts