laravel单元测试
-
单元测试目录:
项目更目录下的 tests 目录
-
目录说明
Feature
: 功能测试 (测试整个接口)Unit
: 单元测试 (函数级别的测试)
-
实例流程
-
在
Feature
下新建AuthTest
-
新建一个测试函数,
必须已 test 开头
<?php namespace Tests\Feature; use Tests\TestCase; class AuthTest extends TestCase { // 测试函数必须要以 'test' 开头,后面接有意义的函数名 public function testRegister() { // 请求接口 $response = $this->post('wx/auth/register'); // 响应内容 echo $response->getContent(); } }
-
运行, 在
phpstorm
中点击函数前面运行按钮。 -
点击
解释器
, 我本地是docker
中的环境, 这里选择docker
,选择镜像
和PHP路径
(which php
查看)(TODO 我的环境是 docker隐射到本地,这里必须用本地的php环境才可以调试!
) -
修改 根目录下的
phpunit.xml
<server name="DB_CONNECTION" value="mysql"/> <server name="DB_DATABASE" value="litemall_test"/> # litemall_test 数据库名
-
2个示例
<?php namespace Tests\Feature; use Illuminate\Foundation\Testing\DatabaseTransactions; use Tests\TestCase; class UserTest extends TestCase { // 为了防止脏数据,不会真的写入数据 use DatabaseTransactions; public function testRegister() { $response = $this->post('/wx/auth/register', [ 'username' => 'test02', 'password' => '123456', 'mobile' => '18811112222', 'code' => '123' ]); // 断言 $response->assertStatus(200); // 拿到原始值 $ret = $response->getOriginalContent(); // 断言对比 $this->assertEquals(0, $ret['errno']); // 断言对比,不为空 $this->assertNotEmpty($ret['data']); } /** * 异常的情况 */ public function testRegisterMobile() { $response = $this->post('/wx/auth/register', [ 'username' => 'test02', 'password' => '123456', 'mobile' => '188111122212', 'code' => '123' ]); // 断言 $response->assertStatus(200); // 拿到原始值 $ret = $response->getOriginalContent(); // 断言对比 $this->assertEquals(707, $ret['errno']); } }
-
如上解析
-
use DatabaseTransactions;
加了之后,所有数据库的事务都不会添加到数据库中。有效防止脏数据。 -
assertEquals, assertNotEmpty
都是断言,用户判断得到的结果的判断。 -
如果没有断言,需要加一个备注。则不会报错。
/** * @doesNotPerformAssertions */
-
-
-
用命令创建单元测试
php artisan make:test AuthTest --unit (
加上 --unit 是单元测试放在 Unit 文件夹下,不加是功能测试,放在 Feature 文件夹下。
)