軟件環境:php
testlink 1.9.12ide
MantisBT-1.2.18 測試
1、先來講一說集成的好處吧:spa
在每一個版本測試結束後,方便統計TC發現的bug的佔比;blog
在testlink中,經過查看用例執行歷史,能夠間接的瞭解bug修復狀況;ci
testlink留存了用例與bug的關係,提供了可追溯性,間接的能夠反映版本修復的質量;get
2、再來講集成的步驟:it
第一步:配置Mantis的mantisconfig_inc.php文件io
在mantis中開啓容許匿名登陸table
mantis的匿名用戶對全部的項目都具備瀏覽權限
# --- anonymous login ----------- # Allow anonymous login $g_allow_anonymous_login = ON; $g_anonymous_account = 'dummy'; |
第二步:配置testlink的主目錄下的/cfg/mantis.cfg.php文件
/** The DB host to use when connecting to the mantis db */ define('BUG_TRACK_DB_HOST', 'calypso'); /** The name of the database that contains the mantis tables */ define('BUG_TRACK_DB_NAME', 'mantis_bt'); /** The DB type being used by mantis */ define('BUG_TRACK_DB_USER', 'mantis_bt_user'); /** The DB password to use for connecting to the mantis db */ define('BUG_TRACK_DB_PASS', 'mantis_bt_password'); /** link to the bugtracking system, for viewing bugs */ define('BUG_TRACK_HREF', "http://calypso/mantis/view.php?id="); /** link to the bugtracking system, for entering new bugs */ define('BUG_TRACK_ENTER_BUG_HREF',"http://calypso/mantis/"); |
第三步:enable BTS集成
打開config.inc.php文件中
// /** [Bug Tracking systems] */ /** * TestLink uses bugtracking systems to check if displayed bugs resolved, verified, * and closed bugs. If they are it will strike through them * * NO : no bug tracking system integration * 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 * TRACKPLUS : edit configuration in TL_ABS_PATH/cfg/trackplus.cfg.php */ $g_interface_bugs='NO'; |
將「$g_interface_bugs='NO'; " copy到custom_config.inc.php文件中 ,並將'NO'修改成‘MANTIS’
$g_interface_bugs='MANTIS'; |
3、TestLink用戶的使用步驟以下:
若是測試結果爲失敗;
在mantis中提交bug,並記錄bug ID;
在testlink執行用例的結果頁面,點擊bug小圖標;
在彈出的頁面,添加bug ID並保存。
添加後可顯示bug信息,點擊後,可查看bug詳細信息。