您的位置:软件测试 > 开源软件测试 > 开源Bug管理工具 > Mantis
testlink&mantis系列:Testlink提交BUG到mantis方式简化
作者:网络转载 发布时间:[ 2013/12/18 11:11:38 ] 推荐标签:

1. Testlink提交BUG到mantis方式简化
1.1. Testlink提交BUG链接修改
1.1.1. 执行用例时,提交BUG的窗口链接修改为链接到mantis提交问题的页面

修改testlinkgui emplatesexecuteinc_exec_show_tc_exec.tpl

如下:

 {if $tc_old_exec.build_is_open}

           <a href="javascript.:open_bug_add_window({$gui->tproject_id},{$tc_old_exec.id},{$tc_old_exec.execution_id},'link')">

=》

  {if $tc_old_exec.build_is_open}

         {* 2013-01-06 luly 增加BUG时,进行testlink关联 *}

           {* <a href="javascript.:open_bug_add_window({$gui->tproject_id},{$tc_old_exec.id},{$tc_old_exec.execution_id},'link')"> *}

           <a href="http://192.168.134.120/mantis/bug_report_page.php?exec_id={$tc_old_exec.execution_id}" target='_blank'>

           {* *********************************************************** *}


         
1.1.2. mantis 提交bug的时候判断是否有exec_id参数传入

修改mantisug_report_page.php

<input type="hidden" name="project_id" value="<?php echo $t_project_id ?>" />后增加一行:

<input type="hidden" name="exec_id" value="<?php echo $_GET["exec_id"]; ?>" />

如下:

<tr>

<td class="form-title" colspan="2">

<input type="hidden" name="m_id" value="<?php echo $f_master_bug_id ?>" />

<input type="hidden" name="project_id" value="<?php echo $t_project_id ?>" />

<?php echo lang_get( 'enter_report_details_title' ) ?>

</td>

</tr>

=》

<tr>

<td class="form-title" colspan="2">

<input type="hidden" name="m_id" value="<?php echo $f_master_bug_id ?>" />

<input type="hidden" name="project_id" value="<?php echo $t_project_id ?>" />

<!--2013-01-06 luly 增加BUG时,进行testlink关联-->

<input type="hidden" name="exec_id" value="<?php echo $_GET["exec_id"]; ?>" />

<!--***********************************************************--><?php echo lang_get( 'enter_report_details_title' ) ?>

</td>

</tr>

上一页123下一页
关键词阅读
软件测试工具 | 联系我们 | 投诉建议 | 诚聘英才 | 申请使用列表 | 网站地图
沪ICP备07036474 2003-2017 版权所有 上海泽众软件科技有限公司 Shanghai ZeZhong Software Co.,Ltd