我正在尝试在测试中使用数据库和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
}
}
答案 0 :(得分:1)
您正在使用哪个数据库驱动程序? SQLite3和:memory:?
另一种检查方式可以是使用实体本身。例如:
$this->assertEquals('test title', Post::find(1)->title);
至少您可以尝试一下。如果这仍然不起作用,我将尝试首先使用Post :: create(...)创建条目。如果可行,则是您的解析器有问题。也许您还可以显示要使用的相应GraphQL模式。
答案 1 :(得分:0)
在这种情况下,我在外观中有一些外观,我只是添加了假的或存根的外观以找出问题所在。
// Example
// At the beginning of the test
public function testGraphQLDatabaseTest(){
Mail::fake();
//...
}