testlink根據需求定製

定製需求爲:

1.在測試用例中添加自定義字段

2.測試用例模板自定義css樣式

3.在測試執行中增加測試結果字段


解決方式


1.測試用例自定義字段添加。

在project頁面中選定custom fields選項卡;增加自定義字段;指派自定義字段。

wKioL1LXQmHCzl3eAAHX-7rl_fc351.jpg

wKiom1LXQm_RvqsUAAcTJIRbYK0386.jpg

wKioL1LXQmPCF5uIAAeIwaLtf0Q050.jpg

結果圖如下所示:


wKiom1LXQrSBZ3o7AAt74IjQ6q4554.jpg



2.測試執行結果定製:

先看看效果圖

wKioL1LXQvKgUp4eAA0He7SR4CY813.jpg


操作步驟如下:

首先,修改cfg/const.inc.php

$tlCfg->results['status_code'] = array (
    'failed'        => 'f',
    'blocked'       => 'b',
    'passed'        => 'p',
    'not_run'       => 'n',
    'not_available' => 'x',
    'unknown'       => 'u',
    'all'           => 'a',
    'auto_passed'   => 'y',
    'auto_failed'   => 'z'
);
$tlCfg->results['status_label'] = array(
    'not_run'          => 'test_status_not_run',
    'passed'           => 'test_status_passed',
    'failed'           => 'test_status_failed',
    'blocked'          => 'test_status_blocked',
//    'all'              => 'test_status_all_status',
//    'not_available' => 'test_status_not_available',
//    'unknown'       => 'test_status_unknown'
    'auto_passed'      => 'test_status_auto_passed',
    'auto_failed'      => 'test_status_auto_failed'
);
$tlCfg->results['status_label_for_exec_ui'] = array(
    'not_run'          => 'test_status_not_run',
    'passed'          => 'test_status_passed',
    'failed'          => 'test_status_failed',
    'blocked'         => 'test_status_blocked',
    'auto_passed'      => 'test_status_auto_passed',
    'auto_failed'      => 'test_status_auto_failed'
);
$tlCfg->results['charts']['status_colour'] = array(
     'not_run'          => '000000',
    'passed'           => '006400',
    'failed'           => 'B22222',
    'blocked'          => '00008B',
    'auto_passed'   => '006400',
    'auto_failed'   => 'B22222'
);


其次,在custom_config.inc.php中添加

$tlCfg->results['status_code'] = array (
         "failed"        => 'f',
         "blocked"       => 'b',
         "passed"        => 'p',
         "not_run"       => 'n',
         "not_available" => 'x',
         "unknown"       => 'u',
         "all"           => 'a',
         "auto_passed"   => 'y',
         "auto_failed"   => 'z'
 );
 $tlCfg->results['status_label'] = array(
         "passed"                => "test_status_passed",
         "failed"                => "test_status_failed",
         "blocked"               => "test_status_blocked",
         "not_run"               => "test_status_not_run",
      //   "all"                   => "test_status_all_status",
      //   "not_available"    => "test_status_not_available",
       //  "unknown"          => "test_status_unknown",
         "auto_passed"      => "test_status_auto_passed",
         "auto_failed"      => "test_status_auto_failed"
 );
 $tlCfg->results['status_label_for_exec_ui'] = array(
         "passed"  => "test_status_passed",
         "failed"  => "test_status_failed",
         "blocked" => "test_status_blocked",
         "not_run" => "test_status_not_run",
     //    "not_available" => "test_status_not_available",
         "auto_passed"      => "test_status_auto_passed",
         "auto_failed"      => "test_status_auto_failed"
 );
 $tlCfg->results['default_status'] = "not_run";


再次,修改\locale\en_GB\strings.txt

// Status (used wide)
$TLS_test_status_all = "All";
$TLS_test_status_any = "Any";
$TLS_test_status_not_run = "Not Run";
$TLS_test_status_blocked = "Blocked";
$TLS_test_status_failed = "Failed";
$TLS_test_status_passed = "Passed";
$TLS_test_status_not_available = "Not Available";
$TLS_test_status_unknown = "Unknown";
$TLS_test_status_auto_failed = "Auto_Failed";
$TLS_test_status_auto_passed = "Auto_Passed";


最後,編寫自己的testlink.css

1.1 拷貝default中所有目錄到myTheme

1.2修改config.inc.php中的theme路徑

/* [GUI LAYOUT] */
/** GUI themes (base for CSS and images)- modify if you create own one */
$tlCfg->theme_dir = 'gui/themes/myTheme/';

1.3修改testlink.css

/* ***** Execution & Results ********************************************************* */
div.passed, div.failed, div.blocked, div.not_run, div.auto_passed, div.auto_failed {
    color:             white;
    margin:         8px;
    padding:         6px;
    text-align:     center;
}
div.passed {
    background:        #006400; /* darkgreen */
}
div.failed {
    background:        #B22222; /* firebrick (red) */
}
div.blocked {
    background:        #00008B; /* darkblue */
}
div.not_run {
    background:        black;
}
.auto_passed, div.auto_passed {
    color:             white;
    background:        #006400; /* darkgreen */
}
.auto_failed, div.auto_failed {
    color:             white;
    background:        #B22222; /* firebrick (red) */
}

3.如何修改自定義的測試用例模板的樣式

暫時沒有找到修改固有模板和自定義字段順序的方法,以及刪除固有板塊如summary,keywords的方法

目前只能通過修改testlink.css中的.custom_fieldxx去掉bold,將padding改爲0px。這樣會變得稍微能看一點。


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章