douqiangchuai7674 2013-04-23 16: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-23 19: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.

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

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部