yii2笔记: 单元测试

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yii2笔记: 单元测试相关的知识,希望对你有一定的参考价值。

使用composer方式安装yii2-app-basic (https://github.com/yiisoft/yii2-app-basic/blob/master/README.md) 装好后既可以使用

 

建一个Model文件EntryForm.php在models目录下

 

<?php

namespace app\models;

use Yii;
use yii\base\Model;

class EntryForm extends Model
{
    public $name;
    public $email;

    public function rules()
    {
        return [
            [[‘name‘, ‘email‘], ‘required‘],
            [‘email‘, ‘email‘],
        ];
    }
}

 

建一个EntryFormTest.php放在tests/unit/models目录下

 

<?php
namespace tests\models;

use app\models\EntryForm;

class EntryFormTest extends \Codeception\Test\Unit
{
    public function testValidInput()
    {
        $model = new EntryForm();
        $model->name = ‘Harry Qin‘;
        $model->email = ‘[email protected]‘;
        expect_that($model->validate());

        return $model;
    }

    public function testInvalidInput()
    {
        $model = new EntryForm();
        $model->name = ‘Harry Qin‘;
        $model->email = ‘xxyy‘;
        expect_not($model->validate());

        $model = new EntryForm();
        $model->name = ‘‘;
        $model->email = ‘[email protected]‘;
        expect_not($model->validate());
    }

    /**
     * 下面一行表示这里输入的参数值来自testValidInput的输出
     * @depends testValidInput
     */
    public function testModelProperty($model)
    {
        expect($model->name)->equals(‘Harry Qin‘);
    }
}

 

项目根目录下运行

composer exec codecept run unit

 

输出

。。。。。。

? EntryFormTest: Valid input (0.00s)
? EntryFormTest: Invalid input (0.00s)
? EntryFormTest: Model property (0.00s)

 

这里全部成功了,如果测试失败,会显示具体失败信息。

 

这里主要是3个方法

 

expect_that: 假设为true

expect_not: 假设为false

expect: 假设目标对象,后面可以接verify方法,具体方法列表在vendor/codeception/verify/src/Codeception/Verify.php文件中



以上是关于yii2笔记: 单元测试的主要内容,如果未能解决你的问题,请参考以下文章

yii2源码学习笔记

读书笔记

单元测试 NPE,当我添加片段自定义转换时

Yii2中如何使用CodeCeption

PHPUnit 测试中 Yii2 中的模拟视图助手

Yii2片段缓存详解