Jira与Testlink整合方法

Isoke ·
更新时间:2024-09-21
· 584 次阅读

  第1步:修改testlink中的 jira.cfg.php文件 <?php /** * TestLink Open Source Project - http://testlink.sourceforge.net/ * $Id: jira.cfg.php,v 1.0 2005/10/25 17:40:56 * * * 20051229 - scs - added DEFINE for the DB-Type */ // Contributed by  jbarchibald@gmail.com //Set the bug tracking system Interface to JIRA 3.1.1 /** The DB host to use when connecting to the JIRA db */ define('BUG_TRACK_DB_HOST', 'localhost');-----------host ip /** The name of the database that contains the jira tables */ define('BUG_TRACK_DB_NAME', 'jiradb');----------JIRA database /** The DB type being used by jira */ define('BUG_TRACK_DB_USER', 'root');-------------Mysql  username /** The DB password to use for connecting to the jira db */ define('BUG_TRACK_DB_PASS', '071200');---------Mysql password /** link of the web server for jira */ // define('BUG_TRACK_HREF', "http://localhost:8080/secure/Dashboard.jspa"); define('BUG_TRACK_HREF', "http://localhost:8080/browse/"); -----------ok,just so /** The DB type to use for connecting to the bugtracking db */ define('BUG_TRACK_DB_TYPE', 'mysql');------------------------------database type /** link to the bugtracking system, for entering new bugs */ define('BUG_TRACK_ENTER_BUG_HREF',"http://localhost:8080/browse/");-----------ok,just so ?>   第2步:修改 config.inc.php文件; // ---------------------------------------------------------------------------- /* [Bug Tracking systems] */ /** * TestLink collaborates with bug tracking systems to check if displayed bugs resolved, * verified, and closed reports. * * Note: Use this option to check if a bug interface is enabled, if so every * page using bug tracking MUST include int_bugtracking.php to make the * connection. The variable bugInterfaceOn is only set when a connection is made * * @var string $g_interface_bugs = [ * 'NO'        : no bug tracking system integration (DEFAULT) * 'BUGZILLA'  : edit configuration in TL_ABS_PATH/cfg/bugzilla.cfg.php * 'MANTIS'    : edit configuration in TL_ABS_PATH/cfg/mantis.cfg.php * 'JIRA'      : edit configuration in TL_ABS_PATH/cfg/jira.cfg.php * 'JIRASOAP'  : edit configuration in TL_ABS_PATH/cfg/jira.cfg.php * 'TRACKPLUS' : edit configuration in TL_ABS_PATH/cfg/trackplus.cfg.php * 'EVENTUM'   : edit configuration in TL_ABS_PATH/cfg/eventum.cfg.php * 'SEAPINE'   : edit configuration in TL_ABS_PATH/cfg/seapine.cfg.php * 'GFORGE'    : edit configuration in TL_ABS_PATH/cfg/gforge.cfg.php * 'FOGBUGZ'   : edit configuration in TL_ABS_PATH/cfg/fogbugz.cfg.php * 'YOUTRACK' : edit configuration in TL_ABS_PATH/cfg/youtrack.cfg.php * ] */ $g_interface_bugs = 'JIRA';--------------------------修改为JIRA // do not change this $g_bugInterfaceOn = false; $g_bugInterface = null;   第3步:执行测试用例后 ,测试用例未通过,会在同行中出现一只小虫子,点击小虫子 ;   第4步:到jira系统中提交问题,复制问题编号;   第5步:粘贴编号,进行关联。   第6步:显示被关联的问题,点击可进入jira的相关页面。



testlink jira 方法

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章