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 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分