gpt4 book ai didi

laravel - 如何在 Laravel 中模拟没有连接数据库的模型

转载 作者:行者123 更新时间:2023-12-04 15:39:10 65 4
gpt4 key购买 nike

我尝试测试该方法 index() Controller 的。在这个方法中,有一个模型。

class UserController extends Controller
{
public function index()
{
return User::all();
}
}

在测试类中,我有以下内容。
class UserControllerTest extends TestCase
{
public function testIndex():void
{
$user = factory(User::class)->make();
$mock = Mockery::mock(User::class);
$mock->shouldReceive('all')->andReturn($user);
$this->app->instance('User', $mock);
$response = $this->json('GET', 'api/users');
dd($response->getContent()); // error : [2002] Connection refused
}

}

当我运行测试时,与数据库的连接出错。这很奇怪,因为我已经模拟了模型,这意味着我不需要建立到数据库的连接。我该如何解决这个错误?

错误

SQLSTATE[HY000] [2002] Connection refused (SQL: select * from users where users.deleted_at is null)

最佳答案

您正在尝试使用模拟对对象实例的函数调用的方法来模拟静态调用。模拟静态函数调用不是直接的,它可以通过别名来完成,但不推荐。

一种简单的方法是将您的逻辑简单地包装在服务中并模拟它。

class UserService {

public function all(): Collection {
return User::all();
}
}

现在你的模拟代码应该是这样的。
    $user = factory(User::class)->make();
$mock = Mockery::mock(UserService::class);
// Teoretically all method will return Eloquent Collection, but should be fine
$mock->shouldReceive('all')->andReturn(collect($user));
$this->app->instance(UserService::class, $mock);

使用 container 时并替换实例,这非常依赖于您使用 container 获取这些模拟类而不是 new关键词。因此, Controller 看起来应该与此类似。
class UserController extends Controller
{
/** @var UserService **/
private $userService;

public function __construct(UserService $userService) {
// load userService from the container as the mocked instance on tests
$this->userService = $userService;
}

public function index()
{
return $this->userService->all();
}
}

最后一点,我有多个项目是测试、代码覆盖率等的主要驱动力。通过将数据库放在那里来创建测试更容易,或者使用 sqlite或有一个 docker环境为您提供数据库。没有测试比提供任何重要的值(value)更困难。速度在您的测试方法中至关重要,因为会有很多,最好是快速完成,然后由于时间压力而跳过它,并且模拟所有 db 调用会很困难。

关于laravel - 如何在 Laravel 中模拟没有连接数据库的模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58583324/

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