使用数据库测试 Laravel 灯塔突变

Testing Laravel lighthouse mutations with database

我正在尝试在测试中使用数据库和 laravel-lighthouse。我正在使用 GraphQL 和数据库测试的特征,突变有效但测试无效。

class MyTest extends TestCase{
  use MakesGraphQLRequests;
  use RefreshDatabase;
  public function testGraphQLDatabaseTest(){
    $this->graphQL(/** @lang GraphQL */ '
        mutation CreatePost($title: String!) {
            createPost(title: $title) {
                id
            }
        }
    ',['title' => 'test title']);

    $this->assertDatabaseHas('posts', [
        'title' => 'test title',
    ]); // It says that expect table posts with title' => 'test title' but 'posts' table is empty
  }
}

在这种情况下,我在突变中有一些 Facades 我只是添加 facades fake 或 stub 来找出问题。

// Example
// At the beginning of the test
public function testGraphQLDatabaseTest(){
  Mail::fake();
  //...
}

您使用的是哪个数据库驱动程序?带 :memory:?

的 SQLite3

另一种检查方法是使用实​​体本身。例如:

$this->assertEquals('test title', Post::find(1)->title);

至少你可以试一试。如果这也不起作用,我会尝试先用 Post::create(...) 创建条目。如果这有效,则说明您的解析器有问题。也许您还可以显示相应的 GraphQL 架构以供使用。