| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <?php
- /**
- * The deploycaseresults view file of testtask of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Chunsheng Wang <chunsheng@cnezsoft.com>
- * @package testtask
- * @version $Id: results.html.php 4129 2013-01-18 01:58:14Z wwccss $
- * @link http://www.zentao.net
- */
- ?>
- <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
- <div id='mainContent' class="main-content">
- <div class='main-header'>
- <h2>
- <span class='label label-id'><?php echo $case->id;?></span>
- <?php echo $case->title;?>
- <small class='text-muted'><?php echo $lang->testtask->results . ' ' . html::icon($lang->icons['result']);?></small>
- </h2>
- </div>
- <div class='cell' style='word-break:break-all'>
- <div class='detail'>
- <div class='detail-title'><?php echo $lang->testcase->precondition;?></div>
- <div class='detail-content'><?php echo $case->precondition;?></div>
- </div>
- <div id='casesResults' class='detail'>
- <table class='table table-condensed table-hover' style='border: 1px solid #ddd; word-break:break-all'>
- <?php $count = count($results);?>
- <caption class='text-left'>
- <strong><?php echo $lang->testcase->result?> <span> <?php printf($lang->testtask->showResult, $count)?></span> <span class='result-tip'></span></strong>
- </caption>
- <?php $failCount = 0; $trCount=1?>
- <?php foreach($results as $result):?>
- <?php
- $class = ($result->caseResult == 'pass' ? 'success' : ($result->caseResult == 'fail' ? 'danger' : ($result->caseResult == 'blocked' ? 'warning' : '')));
- if($class != 'success') $failCount++;
- $fileCount = '(' . count($result->files) . ')';
- ?>
- <tr class='result-item' id='result-<?php echo $class?>' style='cursor: pointer'>
- <td class='w-120px'> #<?php echo $result->id?></td>
- <td class='w-180px'><?php echo $result->date;?></td>
- <td><?php echo $users[$result->lastRunner] . ' ' . $lang->testtask->runCase;?></td>
- <td class='w-150px'><?php echo zget($builds, $result->build, '');?></td>
- <td class='w-50px text-right'><strong class='text-<?php echo $class;?>'><?php echo $lang->testcase->resultList[$result->caseResult]?></strong></td>
- <td class='w-60px'><?php if(!empty($result->files)) echo html::a("#caseResult{$result->id}", $lang->files . $fileCount, '', "data-toggle='modal' data-type='iframe'")?></td>
- <td class='w-50px text-center'><i class='collapse-handle icon-chevron-down text-muted'></i></td>
- </tr>
- <?php $params = isset($testtask) ? ",testtask=$testtask->id,executionID=$testtask->execution,buildID=$testtask->build" : '';?>
- <tr class='result-detail hide' id='tr-detail_<?php echo $trCount++; ?>'>
- <td colspan='7' class='pd-0'>
- <table class='table table-condensed borderless mg-0 resultSteps'>
- <thead>
- <tr>
- <th class='w-40px'><?php echo $lang->testcase->stepID;?></th>
- <th class='w-p30 text-left'><?php echo $lang->testcase->stepDesc;?></th>
- <th class='w-p25 text-left'><?php echo $lang->testcase->stepExpect;?></th>
- <th class='w-p5 text-left'><?php echo $lang->testcase->stepVersion;?></th>
- <th class='text-center'><?php echo $lang->testcase->result;?></th>
- <th class='w-p20 text-left'><?php echo $lang->testcase->real;?></th>
- <th class='w-80px'></th>
- </tr>
- </thead>
- <?php
- $stepId = $childId = 0;
- foreach($result->stepResults as $key => $stepResult):
- ?>
- <?php
- if(empty($stepResult['type'])) $stepResult['type'] = 'step';
- if(empty($stepResult['parent'])) $stepResult['parent'] = 0;
- if($stepResult['type'] == 'group' or $stepResult['type'] == 'step')
- {
- $stepId++;
- $childId = 0;
- }
- $stepClass = $stepResult['type'] == 'item' ? 'step-item' : 'step-group';
- $modalID = $result->id . '-' . $key;
- $fileCount = '(' . count($stepResult['files']) . ')';
- ?>
- <tr class='step <?php echo $stepClass?>'>
- <td class='step-id'>
- <?php echo $stepId;?>
- </td>
- <td class='text-left' <?php if($stepResult['type'] == 'group') echo "colspan='6'"?>>
- <div class='input-group'>
- <?php if($stepResult['type'] == 'item') echo "<span class='step-item-id'>{$stepId}.{$childId}</span>";?>
- <?php if(isset($stepResult['desc'])) echo nl2br($stepResult['desc']);?>
- </div>
- </td>
- <?php if($stepResult['type'] != 'group'):?>
- <td class='text-left'><?php if(isset($stepResult['expect'])) echo nl2br($stepResult['expect']);?></td>
- <td><?php if(isset($result->version)) echo nl2br($result->version);?></td>
- <?php if(!empty($stepResult['result'])):?>
- <td class='<?php echo $stepResult['result'];?> text-center'><?php echo $lang->testcase->resultList[$stepResult['result']];?></td>
- <td><?php echo $stepResult['real'];?></td>
- <td class='text-center'><?php if(!empty($stepResult['files'])) echo html::a("#stepResult{$modalID}", $lang->files . $fileCount, '', "data-toggle='modal' data-type='iframe'")?></td>
- <?php else:?>
- <td></td>
- <td></td>
- <?php endif; endif; $childId++;?>
- </tr>
- <?php endforeach;?>
- </table>
- </td>
- </tr>
- <?php endforeach;?>
- </table>
- <?php foreach($results as $result):?>
- <div class="modal fade" id="caseResult<?php echo $result->id;?>">
- <div class="modal-dialog">
- <div class="modal-content">
- <div class="modal-header">
- <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
- <h4 class="modal-title"><?php echo $lang->files;?></h4>
- </div>
- <div class="modal-body"><?php echo $this->fetch('file', 'printFiles', array('files' => $result->files, 'fieldset' => 'false'));?></div>
- </div>
- </div>
- </div>
- <?php foreach($result->stepResults as $stepID => $stepResult):?>
- <div class="modal fade" id="stepResult<?php echo $result->id . '-' .$stepID;?>">
- <div class="modal-dialog">
- <div class="modal-content">
- <div class="modal-header">
- <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
- <h4 class="modal-title"><?php echo $lang->files;?></h4>
- </div>
- <div class="modal-body"><?php echo $this->fetch('file', 'printFiles', array('files' => $stepResult['files'], 'fieldset' => 'false'));?></div>
- </div>
- </div>
- </div>
- <?php endforeach;?>
- <?php endforeach;?>
- <div id='resultTip' class='hide'><?php if($count > 0) echo $failCount > 0 ? "<span>" . sprintf($lang->testtask->showFail, $failCount) . "</span>":"<span class='text-success'>{$lang->testtask->passAll}</span>";?></div>
- <style>.table-hover tr.result-detail:hover td {background: #fff} #casesResults > table > caption {border: 1px solid #ddd; margin-bottom: -1px}</style>
- </div>
- </div>
- </div>
- <script>
- $(function()
- {
- $('.result-item').click(function()
- {
- var $this = $(this);
- $this.toggleClass('show-detail');
- var show = $this.hasClass('show-detail');
- $this.next('.result-detail').toggleClass('hide', !show);
- $this.find('.collapse-handle').toggleClass('icon-chevron-down', !show).toggleClass('icon-chevron-up', show);;
- });
- $('#casesResults table caption .result-tip').html($('#resultTip').html());
- });
- </script>
- <?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>
|