blob: b6936fc554acb15f6cbfa44099b29a3e0f0dd24d [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
use t::APISIX 'no_plan';
repeat_each(1);
log_level('info');
no_root_location();
no_shuffle();
add_block_preprocessor(sub {
my ($block) = @_;
if (!$block->request) {
$block->set_value("request", "GET /t");
}
if (!$block->error_log && !$block->no_error_log) {
$block->set_value("no_error_log", "[error]\n[alert]");
}
});
run_tests();
__DATA__
=== TEST 1: set route by name
--- config
location /t {
content_by_lua_block {
local t = require("lib.test_admin").test
local code, body = t('/apisix/admin/routes/1',
ngx.HTTP_PUT,
[=[{
"methods": ["POST"],
"upstream": {
"nodes": {
"127.0.0.1:1980": 1
},
"type": "roundrobin"
},
"uri": "/hello",
"vars": [["graphql_name", "==", "repo"]]
}]=]
)
if code >= 300 then
ngx.status = code
end
ngx.say(body)
}
}
--- response_body
passed
=== TEST 2: route by name
--- request
POST /hello
query repo {
owner {
name
}
}
--- response_body
hello world
=== TEST 3: set route by operation+name
--- config
location /t {
content_by_lua_block {
local t = require("lib.test_admin").test
local code, body = t('/apisix/admin/routes/1',
ngx.HTTP_PUT,
[=[{
"methods": ["POST"],
"upstream": {
"nodes": {
"127.0.0.1:1980": 1
},
"type": "roundrobin"
},
"uri": "/hello",
"vars": [
["graphql_operation", "==", "mutation"],
["graphql_name", "==", "repo"]
]
}]=]
)
if code >= 300 then
ngx.status = code
end
ngx.say(body)
}
}
--- response_body
passed
=== TEST 4: route by operation+name
--- request
POST /hello
mutation repo($ep: Episode!, $review: ReviewInput!) {
createReview(episode: $ep, review: $review) {
stars
commentary
}
}
--- response_body
hello world
=== TEST 5: route by operation+name, miss
--- request
POST /hello
query repo {
owner {
name
}
}
--- error_code: 404
=== TEST 6: multiple operations
--- request
POST /hello
mutation repo($ep: Episode!, $review: ReviewInput!) {
createReview(episode: $ep, review: $review) {
stars
commentary
}
}
query repo {
owner {
name
}
}
--- response_body
hello world
--- error_log
Multiple operations are not supported
=== TEST 7: bad graphql
--- request
POST /hello
AA
--- error_code: 404
--- error_log
failed to parse graphql: Syntax error near line 1 body: AA
=== TEST 8: set anonymous operation name
--- config
location /t {
content_by_lua_block {
local t = require("lib.test_admin").test
local code, body = t('/apisix/admin/routes/1',
ngx.HTTP_PUT,
[=[{
"methods": ["POST"],
"upstream": {
"nodes": {
"127.0.0.1:1980": 1
},
"type": "roundrobin"
},
"uri": "/hello",
"vars": [
["graphql_operation", "==", "query"],
["graphql_name", "==", ""]
]
}]=]
)
if code >= 300 then
ngx.status = code
end
ngx.say(body)
}
}
--- response_body
passed
=== TEST 9: route by anonymous name
--- request
POST /hello
query {
owner {
name
}
}
--- response_body
hello world
=== TEST 10: limit the max size
--- yaml_config
graphql:
max_size: 5
--- request
POST /hello
query {
owner {
name
}
}
--- error_code: 404
--- error_log
failed to read graphql data
=== TEST 11: set graphql_root_fields
--- config
location /t {
content_by_lua_block {
local t = require("lib.test_admin").test
local code, body = t('/apisix/admin/routes/1',
ngx.HTTP_PUT,
[=[{
"methods": ["POST", "GET"],
"upstream": {
"nodes": {
"127.0.0.1:1980": 1
},
"type": "roundrobin"
},
"uri": "/hello",
"vars": [
["graphql_operation", "==", "query"],
["graphql_root_fields", "has", "owner"]
]
}]=]
)
if code >= 300 then
ngx.status = code
end
ngx.say(body)
}
}
--- response_body
passed
=== TEST 12: single root field
--- request
POST /hello
query {
owner {
name
}
}
--- response_body
hello world
=== TEST 13: test send http post json data
--- request
POST /hello
{"query":"query{owner{name}}"}
--- more_headers
Content-Type: application/json
--- response_body
hello world
=== TEST 14: test send http get query data
--- request
GET /hello?query=query{owner{name}}
--- response_body
hello world
=== TEST 15: test send http get multiple query data success
--- request
GET /hello?query=query{owner{name}}&query=query{repo{name}}
--- response_body
hello world
=== TEST 16: test send http get multiple query data failure
--- request
GET /hello?query=query{repo{name}}&query=query{owner{name}}
--- error_code: 404
=== TEST 17: no body (HTTP GET)
--- request
GET /hello
--- error_code: 404
--- error_log
failed to read graphql data, args[query] is nil
=== TEST 18: no body (HTTP POST JSON)
--- request
POST /hello
{}
--- more_headers
Content-Type: application/json
--- error_code: 404
--- error_log
failed to read graphql data, json body[query] is nil
=== TEST 19: multiple root fields
--- request
POST /hello
query {
repo {
stars
}
owner {
name
}
}
--- response_body
hello world
=== TEST 20: root fields mismatch
--- request
POST /hello
query {
repo {
name
}
}
--- error_code: 404
=== TEST 21: no body
--- request
POST /hello
--- error_code: 404
--- error_log
failed to read graphql data, request body has zero size