Laravel Lighthouse GraphQL 单元测试:"Variable not defined"



我知道我的问题标题可能不是最有信息的,所以请告诉我是否可以改进:(。

我试图弄清楚如何在PHP单元测试中传递GraphQL变量,而不在查询中内联编写它们。

这是一个演示代码。我不能给出确切的真实源代码,因为它属于客户项目。我希望这个简化的版本能够说明这个问题。

class MyGraphQLTest extends IlluminateFoundationTestingTestCase
{
use TestsCreatesApplication;
use NuwaveLighthouseTestingMakesGraphQLRequests;
public function testSomething()
{
// Query an article with a specific id defined in this variable
$this->graphQL(/** @lang GraphQL */ '
{
article(id: $test_id) {
id,
name
}
}',
[
'test_id' => 5, // Does not work, the variable is not passed for some strange reason.
]
)->assertJson([
'data' => [
'article' => [ // We should receive an article with id 5 and title 'Test Article'
'id' => 5,
'name' => 'Test Article',
]
]
]);
}
}

根据这个Lighthouse:TestingwithPHPUnit指南,变量应该能够作为数组作为第二个参数传递给->graphQL()方法。

当我用php vendor/bin/phpunit运行测试时,我得到以下错误响应:

[{
"errors": [
{
"message": "Variable "$test_id" is not defined.",
"extensions": {
"category": "graphql"
},
"locations": *removed as not needed in this question*
}
]
}].

Lighthouse是最新版本:4.15.0

感谢您的支持!:(

在GraphQL查询中忘记了一些内容。您必须有一个查询包装器,它将接收参数,然后传递给定义了变量的查询。像这样:

query Articles($test_id: Int! /* or ID! if you prefer */){
{
article(id: $test_id) {
id,
name
}
}
}

如果使用多个参数,请考虑在GraphQL Server中创建一个Input,然后在查询中可以简单地引用Input

// Consider following Input in your server
input ArticleSearch {
article_category: String!
article_rate: Int!
}
// you can then
query Articles($input: ArticleSearch){
{
article(input: $input) {
id,
name
}
}
}

相关内容

  • 没有找到相关文章

最新更新