对 Laravel 的 Controller 做 Unit Test

Posted 心之所依

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对 Laravel 的 Controller 做 Unit Test相关的知识,希望对你有一定的参考价值。

之前尝试过对 Laravel 的 Controller 做 Feature Test,但是在业务变得越来越复杂之后,我感觉对 controller 里的函数也没了自信,急需对功能函数做 Unit Test,以平复我不安的情绪。

例如:

新建一个 Unit Test,由于默认新建的是 feature test, 所有后面需要加上 unit 参数

php artisan make:test StaffSalaryHistoryTest --unit

此时会看到 tests/Unit 目录下多了一个文件

Untracked files:
  (use "git add <file>..." to include in what will be committed)

        tests/Unit/StaffSalaryHistoryTest.php

测试代码

<?php

namespace TestsUnit;

use TestsTestCase;
use IlluminateFoundationTestingWithFaker;
use IlluminateFoundationTestingRefreshDatabase;
use AppHttpControllersAdminStaffSalaryHistoryCrudController;

class StaffSalaryHistoryTest extends TestCase
{
    /**
     * A basic test example.
     *
     * @return void
     */
    public function test_get_start_date_by_last_end_month()
    {
        $controller = new StaffSalaryHistoryCrudController();
        $result = $controller->get_start_date_by_last_end_month(‘2018-07‘);
        $this->assertEquals(‘2018-08-01‘, $result->format(‘Y-m-d‘));
    }
}

执行测试

 ./vendor/bin/phpunit
PHPUnit 6.5.12 by Sebastian Bergmann and contributors.

...                                                                 3 / 3 (100%)

Time: 961 ms, Memory: 16.00MB

OK (3 tests, 3 assertions)

以上是关于对 Laravel 的 Controller 做 Unit Test的主要内容,如果未能解决你的问题,请参考以下文章

Laravel - Route::resource 与 Route::controller

Laravel 4:路由到 localhost/controller/action

Laravel 5.3+ 中的 Route::controller() 替代方案

Laravel-表单篇-controller

laravel 5 - 在 routes.php 末尾捕获所有路由(Route::controller)?

ReflectionException Class App\Controller\MyController 在 laravel 中不存在错误