测试
介绍
Laravel 在建立时就有考虑到单元测试。事实上,它支持立即使用被引入的 PHPUnit 做测试,而且已经为你的应用程序建立了 phpunit.xml
文件。
在 tests
文件夹有提供一个测试例子。在安装新 Laravel 应用程序之后,只要在命令行上执行 phpunit
来进行测试流程。
定义并执行测试
要建立一个测试案例,只要在 tests
文件夹建立新的测试文件。测试类必须继承自 TestCase
,接着你可以如你平常使用 PHPUnit 一般去定义测试方法。
测试类例子
class FooTest extends TestCase {
public function testSomethingIsTrue()
{
$this->assertTrue(true);
}
}
你可以从终端机执行 phpunit
命令来执行应用程序的所有测试。
如果你定义自己的 setUp
方法, 请记得调用 parent::setUp
。
测试环境
当执行单元测试的时候,Laravel 会自动将环境配置成 testing
。另外 Laravel 会在测试环境导入 session
和 cache
的配置文件。当在测试环境里这两个驱动会被配置为 array
(空数组),代表在测试的时候没有 session 或 cache 数据将会被保留。视情况你可以任意的建立你需要的测试环境配置。
testing
环境的变量可以在 phpunit.xml
文件中配置。
从测试调用路由
从单一测试中调用路由
你可以使用 call
方法,轻易地调用你的 任何一个路由来测试:
$response = $this->call('GET', 'user/profile');
$response = $this->call($method, $uri, $parameters, $cookies, $files, $server, $content);
接着你可 以检查 Illuminate\Http\Response
对象:
$this->assertEquals('Hello World', $response->getContent());
从测试调用控制器
你也可以从测试调用控制器:
$response = $this->action('GET', 'HomeController@index');
$response = $this->action('GET', 'UserController@profile', ['user' => 1]);
当使用 action
方法的时候,你不需要指定完整的控制器命名空间。只需要指定 App\Http\Controllers
命名空间后面的类名称部分。
getContent
方法会返回求值后的字串内容响应。如果你的路由返回一个 View
,你可以通过 original
属性访问它:
$view = $response->original;
$this->assertEquals('John', $view['name']);
你可以使用 callSecure
方法去调用 HTTPS 路由:
$response = $this->callSecure('GET', 'foo/bar');
模拟 Facades
当测试的时候,你或许常会想要模拟调用 Laravel 静态 facade。举个例子,思考下面的控制器行为:
public function getIndex()
{
Event::fire('foo', ['name' => 'Dayle']);
return 'All done!';
}
我们可以在 facade 上使用 shouldReceive
方法,来模拟调用 Event
类,它将会返回一个 Mockery mock 对象实例。
模拟 Facade
public function testGetIndex()
{
Event::shouldReceive('fire')->once()->with('foo', ['name' => 'Dayle']);
$this->call('GET', '/');
}
你不应该模拟 Request
facade。取而代之,当执行你的测试,传递想要的输入数据进去 call
方法。
框架 Assertions
Laravel 附带几个 assert
方法,让测试更简单一点:
Assert 响应为 OK
public function testMethod()
{
$this->call('GET', '/');
$this->assertResponseOk();
}
Assert 响应的状态码
$this->assertResponseStatus(403);
Assert 响应为重定向
$this->assertRedirectedTo('foo');
$this->assertRedirectedToRoute('route.name');
$this->assertRedirectedToAction('Controller@method');
Assert 响应的视图包含一些数据
public function testMethod()
{
$this->call('GET', '/');
$this->assertViewHas('name');
$this->assertViewHas('age', $value);
}
Assert Session 包含一些数据
public function testMethod()
{
$this->call('GET', '/');
$this->assertSessionHas('name');
$this->assertSessionHas('age', $value);
}
Assert Session 有错误信息
public function testMethod()
{
$this->call('GET', '/');
$this->assertSessionHasErrors();
// Asserting the session has errors for a given key...
$this->assertSessionHasErrors('name');
// Asserting the session has errors for several keys...
$this->assertSessionHasErrors(['name', 'age']);
}
Assert 旧输入内容有一些数据
public function testMethod()
{
$this->call('GET', '/');
$this->assertHasOldInput();
}
辅助方法
TestCase
类包含几个辅助方法让应用程序的测试更为简单。
从测试里配置和刷新 Sessions
$this->session(['foo' => 'bar']);
$this->flushSession();