gpt4 book ai didi

unit-testing - 断言返回值是 Redirect 还是 View

转载 作者:行者123 更新时间:2023-12-04 04:57:27 25 4
gpt4 key购买 nike

假设我有这个用于身份验证的 Controller :

class AuthController extends BaseController
{
public function __construct(User $user)
{
$this->user = $user;
}

public function getLogin()
{
if (Auth::check()) {
Session::flash('alert-type', 'error');
Session::flash('alert-message', 'You are already logged in');
return Redirect::to('home');
}

return View::make('auth/login');
}
}

我有这个单元测试:

public function testGetLoginWithoutLogin()
{
Auth::shouldReceive('check')->once()->andReturn(false);
View::shouldReceive('make')->once();

$userMock = Mockery::mock('Eloquent', 'User');

$authController = new AuthController($userMock);
$authController->getLogin();
}

我如何确保返回 View ?在具有有效登录的不同单元测试中,我将如何测试它返回重定向?

最佳答案

您可以检查 getLogin() 的返回值类型。

对于重定向

$returnValue = $authController->getLogin();
$this->assertInstanceOf('\Illuminate\Http\RedirectResponse', $returnValue);

为观

$returnValue = $authController->getLogin();
$this->assertInstanceOf('\Illuminate\View\View', $returnValue);

关于unit-testing - 断言返回值是 Redirect 还是 View,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27473007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com