douqiangchuai7674 2013-04-24 00:36
浏览 27
已采纳

在yii中为小部件创建测试

I created a widget in Yii to display graphics using the http://www.highcharts.com/ library. My widget works pretty similar as CGridView widget from Yii.

I know that for visual elements I could have a functional test using Selenium, that I'm going to have. But, because the caracteristics of my widget (display a javascript result), I cannot find much problems on the visual elements.

How I can write a unit test to make sure the necessaries elements is displayed or loaded? I will give some examples below (using CGridView as example).

The oficial unit test for CGridView can be found here: https://github.com/yiisoft/yii/blob/master/tests/framework/zii/widgets/CGridViewTest.php

As you can see there, the test only make sure the scripts is registered, but, how about the logic behind? For example, this simple code:

public function renderTableBody()
{
    $data=$this->dataProvider->getData();
    $n=count($data);
    echo "<tbody>
";
    echo '<tr><td colspan="'.count($this->columns).'" class="empty">';
    $this->renderEmptyText();
    echo "</td></tr>
";
    echo "</tbody>
";
}

There is no tests for that, is there some logical reason? How I can write a test for that? Maybe with ob_start and ob_end_clean?

  • 写回答

1条回答 默认 最新

  • drgweamoi473182981 2013-05-24 03:38
    关注

    PHPUnit is used for server-side logic validation. You can't run JS code via PHP, so PHPUnit can not be used for testing logic behind the script. If you want to be sure that your script works correctly on client-side, you can use QUnit for that.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀