Laravel: 如何在 PhpUnit 上启用堆栈跟踪错误
Laravel: How to enable stacktrace error on PhpUnit
我全新安装了 laravel 5.4
我试图修改默认测试只是为了查看失败的测试。
tests/ExampleTest.php
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/ooops');
$response->assertStatus(200);
}
}
我原以为会看到更详细的错误,例如 no route has been found or defined
等,但只有这个错误说
Time: 1.13 seconds, Memory: 8.00MB
There was 1 failure:
1) Tests\Feature\ExampleTest::testBasicTest
Expected status code 200 but received 404.
Failed asserting that false is true.
/var/www/vendor/laravel/framework/src/Illuminate/Foundation/Testing/TestResponse.php:51
/var/www/tests/Feature/ExampleTest.php:21
在没有有意义的错误的情况下进行 TDD 真的很难(是的,我知道在这种情况下 404 就足够了,但大多数时候情况并非如此)。
有没有办法让stacktrace和浏览器显示的一样?或者至少更接近那个,这样我就知道下一步应该做什么。
提前致谢。
对于 Laravel 5.4,您可以使用 Adam Wathan 在 this gist 中提供的 disableExceptionHandling
方法(下面的源代码)
现在如果你 运行 在你的测试中:
$this->disableExceptionHandling();
您应该获得有助于您找到问题的完整信息。
对于 Laravel 5.5 及更高版本,您可以使用 withoutExceptionHandling
方法将 built-in 转换为 Laravel
Adam Wathan 的要点源代码
<?php
namespace Tests;
use App\Exceptions\Handler;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
protected function setUp()
{
/**
* This disables the exception handling to display the stacktrace on the console
* the same way as it shown on the browser
*/
parent::setUp();
$this->disableExceptionHandling();
}
protected function disableExceptionHandling()
{
$this->app->instance(ExceptionHandler::class, new class extends Handler {
public function __construct() {}
public function report(\Exception $e)
{
// no-op
}
public function render($request, \Exception $e) {
throw $e;
}
});
}
}
如果您碰巧使用 Laravel 5.5 及以上,您可以使用内置方法:
$this->withoutExceptionHandling();
$this->withExceptionHandling();
在您的设置方法或测试方法中。它们的定义如下 trait.
对于快速和脏调试,您还可以在 response
对象上使用 dump
方法:
/** @test */
public function it_can_delete_an_attribute()
{
$response = $this->json('DELETE', "/api/attributes/3");
$response->dump()->assertStatus(200);
$this->assertDatabaseMissing('table', [
'id' => $id
]);
...
}
有一个 laracast 课程涵盖了这些细节。
我全新安装了 laravel 5.4
我试图修改默认测试只是为了查看失败的测试。
tests/ExampleTest.php
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/ooops');
$response->assertStatus(200);
}
}
我原以为会看到更详细的错误,例如 no route has been found or defined
等,但只有这个错误说
Time: 1.13 seconds, Memory: 8.00MB
There was 1 failure:
1) Tests\Feature\ExampleTest::testBasicTest
Expected status code 200 but received 404.
Failed asserting that false is true.
/var/www/vendor/laravel/framework/src/Illuminate/Foundation/Testing/TestResponse.php:51
/var/www/tests/Feature/ExampleTest.php:21
在没有有意义的错误的情况下进行 TDD 真的很难(是的,我知道在这种情况下 404 就足够了,但大多数时候情况并非如此)。
有没有办法让stacktrace和浏览器显示的一样?或者至少更接近那个,这样我就知道下一步应该做什么。
提前致谢。
对于 Laravel 5.4,您可以使用 Adam Wathan 在 this gist 中提供的 disableExceptionHandling
方法(下面的源代码)
现在如果你 运行 在你的测试中:
$this->disableExceptionHandling();
您应该获得有助于您找到问题的完整信息。
对于 Laravel 5.5 及更高版本,您可以使用 withoutExceptionHandling
方法将 built-in 转换为 Laravel
Adam Wathan 的要点源代码
<?php
namespace Tests;
use App\Exceptions\Handler;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
protected function setUp()
{
/**
* This disables the exception handling to display the stacktrace on the console
* the same way as it shown on the browser
*/
parent::setUp();
$this->disableExceptionHandling();
}
protected function disableExceptionHandling()
{
$this->app->instance(ExceptionHandler::class, new class extends Handler {
public function __construct() {}
public function report(\Exception $e)
{
// no-op
}
public function render($request, \Exception $e) {
throw $e;
}
});
}
}
如果您碰巧使用 Laravel 5.5 及以上,您可以使用内置方法:
$this->withoutExceptionHandling();
$this->withExceptionHandling();
在您的设置方法或测试方法中。它们的定义如下 trait.
对于快速和脏调试,您还可以在 response
对象上使用 dump
方法:
/** @test */
public function it_can_delete_an_attribute()
{
$response = $this->json('DELETE', "/api/attributes/3");
$response->dump()->assertStatus(200);
$this->assertDatabaseMissing('table', [
'id' => $id
]);
...
}
有一个 laracast 课程涵盖了这些细节。