三.与缺陷管理工具mantis关联
首先安装mantis,我的版本是mantis 1.0.8
安装步骤如下:
将mantis 1.0.8.zip解压到上面所说的也是服务器的默认目录htdocs文件下,我解压完叫mantis,进入到:http://localhost/mantis/admin/install.php中,填好相应信息,
我安装的时候出现好多的sql建表语句,提示错误,将语句在mysql中执行即可
接下来修改配置文件:
可以在config_defaults_inc.php中修改数据库的相应信息,也可以新建一个文件config_inc.php内容如下:
<?php
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = '123456';
?>
如果没有config_inc.php文件则用config_defaults_inc.php文件中的相应信息,这里我只添加了数据库的信息,邮件设置未设置。
登陆时默认用户名密码是:administrator,root
四.整合mantis和testlink
修改tl/cfg下的mantis.cfg.php文件:
/** The DB host to use when connecting to the mantis db */
define('BUG_TRACK_DB_HOST', 'localhost');
/** The name of the database that contains the mantis tables */
define('BUG_TRACK_DB_NAME', 'bugtracker');
/** The DB type being used by mantis
values: mysql,mssql,postgres
*/
define('BUG_TRACK_DB_TYPE', 'mysql');
/** The DB password to use for connecting to the mantis db */
define('BUG_TRACK_DB_USER', 'root');
define('BUG_TRACK_DB_PASS', '123456');
修改tl文件夹下的config.inc.php文件,查找$g_interface_bugs = ‘no’;
为$g_interface_bugs = 'MANTIS';
整合后执行用例时会出现一列bug管理
点击蜘蛛图片会弹出管理页面,添加bug号关联