forked from apache/apisix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: grpc-transcode request support object array (apache#7231)
Co-authored-by: jon.yu <jon.yu@ambergroup.io>
- Loading branch information
1 parent
c50c293
commit ae34887
Showing
9 changed files
with
518 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
# | ||
# 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'; | ||
|
||
no_long_string(); | ||
no_shuffle(); | ||
no_root_location(); | ||
|
||
add_block_preprocessor(sub { | ||
my ($block) = @_; | ||
|
||
if (!$block->request) { | ||
$block->set_value("request", "GET /t"); | ||
} | ||
|
||
if ((!defined $block->error_log) && (!defined $block->no_error_log)) { | ||
$block->set_value("no_error_log", "[error]"); | ||
} | ||
}); | ||
|
||
run_tests; | ||
|
||
__DATA__ | ||
=== TEST 1: set rule | ||
--- config | ||
location /t { | ||
content_by_lua_block { | ||
local http = require "resty.http" | ||
local t = require("lib.test_admin").test | ||
local code, body = t('/apisix/admin/proto/1', | ||
ngx.HTTP_PUT, | ||
[[{ | ||
"content" : "syntax = \"proto3\"; | ||
package helloworld; | ||
service Greeter { | ||
rpc SayMultipleHello(MultipleHelloRequest) returns (MultipleHelloReply) {} | ||
} | ||
enum Gender { | ||
GENDER_UNKNOWN = 0; | ||
GENDER_MALE = 1; | ||
GENDER_FEMALE = 2; | ||
} | ||
message Person { | ||
string name = 1; | ||
int32 age = 2; | ||
} | ||
message MultipleHelloRequest { | ||
string name = 1; | ||
repeated string items = 2; | ||
repeated Gender genders = 3; | ||
repeated Person persons = 4; | ||
} | ||
message MultipleHelloReply{ | ||
string message = 1; | ||
}" | ||
}]] | ||
) | ||
if code >= 300 then | ||
ngx.say(body) | ||
return | ||
end | ||
local code, body = t('/apisix/admin/routes/1', | ||
ngx.HTTP_PUT, | ||
[[{ | ||
"methods": ["POST"], | ||
"uri": "/grpctest", | ||
"plugins": { | ||
"grpc-transcode": { | ||
"proto_id": "1", | ||
"service": "helloworld.Greeter", | ||
"method": "SayMultipleHello" | ||
} | ||
}, | ||
"upstream": { | ||
"scheme": "grpc", | ||
"type": "roundrobin", | ||
"nodes": { | ||
"127.0.0.1:50051": 1 | ||
} | ||
} | ||
}]] | ||
) | ||
if code >= 300 then | ||
ngx.say(body) | ||
return | ||
end | ||
ngx.say(body) | ||
} | ||
} | ||
--- response_body | ||
passed | ||
=== TEST 2: hit route | ||
--- request | ||
POST /grpctest | ||
{"name":"world","persons":[{"name":"Joe","age":1},{"name":"Jake","age":2}]} | ||
--- more_headers | ||
Content-Type: application/json | ||
--- response_body chomp | ||
{"message":"Hello world, name: Joe, age: 1, name: Jake, age: 2"} |