我正在使用即将推出的 Laravel 4 框架构建一个应用程序。我想为它编写单元测试。该应用程序使用会话。因此,我必须重新创建用户状态以正确测试所有内容。
这是我想做的事情:
User::login($user); // updates the session
$crawler = $this->client->request('GET', 'http://myapp.dev/');
$this->assertTrue($this->client->getResponse()->isOk());
$this->assertCount(1, $crawler->filter("#logout-button"));
但是,$this->client->request
会创建一个新请求,因此会话不会被传播。
该会话在测试中可用。但是当您使用 $this->client->request('GET', 'something') 时,该请求的会话不再存在,因为它使用了数组驱动程序。我可以尝试使用文件驱动程序,但我将如何向请求发送自定义会话 ID?
我该如何解决这个问题?我可以通过假 cookie 传递会话 ID 吗?或者以某种方式传递会话对象?