Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
02e26c98
Commit
02e26c98
authored
7 years ago
by
Yuchen Zeng
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #10521 from y-zeng/fix_max_idle
Fix the max idle timer
parents
20f0d5ba
185d4133
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/ext/filters/max_age/max_age_filter.c
+2
-1
2 additions, 1 deletion
src/core/ext/filters/max_age/max_age_filter.c
test/core/end2end/tests/max_connection_idle.c
+137
-0
137 additions, 0 deletions
test/core/end2end/tests/max_connection_idle.c
with
139 additions
and
1 deletion
src/core/ext/filters/max_age/max_age_filter.c
+
2
−
1
View file @
02e26c98
...
@@ -167,8 +167,9 @@ static void start_max_age_grace_timer_after_goaway_op(grpc_exec_ctx* exec_ctx,
...
@@ -167,8 +167,9 @@ static void start_max_age_grace_timer_after_goaway_op(grpc_exec_ctx* exec_ctx,
static
void
close_max_idle_channel
(
grpc_exec_ctx
*
exec_ctx
,
void
*
arg
,
static
void
close_max_idle_channel
(
grpc_exec_ctx
*
exec_ctx
,
void
*
arg
,
grpc_error
*
error
)
{
grpc_error
*
error
)
{
channel_data
*
chand
=
arg
;
channel_data
*
chand
=
arg
;
gpr_atm_no_barrier_fetch_add
(
&
chand
->
call_count
,
1
);
if
(
error
==
GRPC_ERROR_NONE
)
{
if
(
error
==
GRPC_ERROR_NONE
)
{
/* Prevent the max idle timer from being set again */
gpr_atm_no_barrier_fetch_add
(
&
chand
->
call_count
,
1
);
grpc_transport_op
*
op
=
grpc_make_transport_op
(
NULL
);
grpc_transport_op
*
op
=
grpc_make_transport_op
(
NULL
);
op
->
goaway_error
=
op
->
goaway_error
=
grpc_error_set_int
(
GRPC_ERROR_CREATE_FROM_STATIC_STRING
(
"max_idle"
),
grpc_error_set_int
(
GRPC_ERROR_CREATE_FROM_STATIC_STRING
(
"max_idle"
),
...
...
This diff is collapsed.
Click to expand it.
test/core/end2end/tests/max_connection_idle.c
+
137
−
0
View file @
02e26c98
...
@@ -36,6 +36,7 @@
...
@@ -36,6 +36,7 @@
#include
<limits.h>
#include
<limits.h>
#include
<string.h>
#include
<string.h>
#include
<grpc/support/alloc.h>
#include
<grpc/support/log.h>
#include
<grpc/support/log.h>
#include
<grpc/support/sync.h>
#include
<grpc/support/sync.h>
#include
<grpc/support/time.h>
#include
<grpc/support/time.h>
...
@@ -48,6 +49,138 @@
...
@@ -48,6 +49,138 @@
static
void
*
tag
(
intptr_t
t
)
{
return
(
void
*
)
t
;
}
static
void
*
tag
(
intptr_t
t
)
{
return
(
void
*
)
t
;
}
static
void
drain_cq
(
grpc_completion_queue
*
cq
)
{
grpc_event
ev
;
do
{
ev
=
grpc_completion_queue_next
(
cq
,
grpc_timeout_seconds_to_deadline
(
5
),
NULL
);
}
while
(
ev
.
type
!=
GRPC_QUEUE_SHUTDOWN
);
}
static
void
simple_request_body
(
grpc_end2end_test_config
config
,
grpc_end2end_test_fixture
*
f
)
{
grpc_call
*
c
;
grpc_call
*
s
;
cq_verifier
*
cqv
=
cq_verifier_create
(
f
->
cq
);
grpc_op
ops
[
6
];
grpc_op
*
op
;
grpc_metadata_array
initial_metadata_recv
;
grpc_metadata_array
trailing_metadata_recv
;
grpc_metadata_array
request_metadata_recv
;
grpc_call_details
call_details
;
grpc_status_code
status
;
grpc_call_error
error
;
grpc_slice
details
;
int
was_cancelled
=
2
;
char
*
peer
;
gpr_timespec
deadline
=
grpc_timeout_seconds_to_deadline
(
5
);
c
=
grpc_channel_create_call
(
f
->
client
,
NULL
,
GRPC_PROPAGATE_DEFAULTS
,
f
->
cq
,
grpc_slice_from_static_string
(
"/foo"
),
get_host_override_slice
(
"foo.test.google.fr:1234"
,
config
),
deadline
,
NULL
);
GPR_ASSERT
(
c
);
peer
=
grpc_call_get_peer
(
c
);
GPR_ASSERT
(
peer
!=
NULL
);
gpr_log
(
GPR_DEBUG
,
"client_peer_before_call=%s"
,
peer
);
gpr_free
(
peer
);
grpc_metadata_array_init
(
&
initial_metadata_recv
);
grpc_metadata_array_init
(
&
trailing_metadata_recv
);
grpc_metadata_array_init
(
&
request_metadata_recv
);
grpc_call_details_init
(
&
call_details
);
memset
(
ops
,
0
,
sizeof
(
ops
));
op
=
ops
;
op
->
op
=
GRPC_OP_SEND_INITIAL_METADATA
;
op
->
data
.
send_initial_metadata
.
count
=
0
;
op
->
flags
=
0
;
op
->
reserved
=
NULL
;
op
++
;
op
->
op
=
GRPC_OP_SEND_CLOSE_FROM_CLIENT
;
op
->
flags
=
0
;
op
->
reserved
=
NULL
;
op
++
;
op
->
op
=
GRPC_OP_RECV_INITIAL_METADATA
;
op
->
data
.
recv_initial_metadata
.
recv_initial_metadata
=
&
initial_metadata_recv
;
op
->
flags
=
0
;
op
->
reserved
=
NULL
;
op
++
;
op
->
op
=
GRPC_OP_RECV_STATUS_ON_CLIENT
;
op
->
data
.
recv_status_on_client
.
trailing_metadata
=
&
trailing_metadata_recv
;
op
->
data
.
recv_status_on_client
.
status
=
&
status
;
op
->
data
.
recv_status_on_client
.
status_details
=
&
details
;
op
->
flags
=
0
;
op
->
reserved
=
NULL
;
op
++
;
error
=
grpc_call_start_batch
(
c
,
ops
,
(
size_t
)(
op
-
ops
),
tag
(
1
),
NULL
);
GPR_ASSERT
(
GRPC_CALL_OK
==
error
);
error
=
grpc_server_request_call
(
f
->
server
,
&
s
,
&
call_details
,
&
request_metadata_recv
,
f
->
cq
,
f
->
cq
,
tag
(
101
));
GPR_ASSERT
(
GRPC_CALL_OK
==
error
);
CQ_EXPECT_COMPLETION
(
cqv
,
tag
(
101
),
1
);
cq_verify
(
cqv
);
peer
=
grpc_call_get_peer
(
s
);
GPR_ASSERT
(
peer
!=
NULL
);
gpr_log
(
GPR_DEBUG
,
"server_peer=%s"
,
peer
);
gpr_free
(
peer
);
peer
=
grpc_call_get_peer
(
c
);
GPR_ASSERT
(
peer
!=
NULL
);
gpr_log
(
GPR_DEBUG
,
"client_peer=%s"
,
peer
);
gpr_free
(
peer
);
memset
(
ops
,
0
,
sizeof
(
ops
));
op
=
ops
;
op
->
op
=
GRPC_OP_SEND_INITIAL_METADATA
;
op
->
data
.
send_initial_metadata
.
count
=
0
;
op
->
flags
=
0
;
op
->
reserved
=
NULL
;
op
++
;
op
->
op
=
GRPC_OP_SEND_STATUS_FROM_SERVER
;
op
->
data
.
send_status_from_server
.
trailing_metadata_count
=
0
;
op
->
data
.
send_status_from_server
.
status
=
GRPC_STATUS_UNIMPLEMENTED
;
grpc_slice
status_details
=
grpc_slice_from_static_string
(
"xyz"
);
op
->
data
.
send_status_from_server
.
status_details
=
&
status_details
;
op
->
flags
=
0
;
op
->
reserved
=
NULL
;
op
++
;
op
->
op
=
GRPC_OP_RECV_CLOSE_ON_SERVER
;
op
->
data
.
recv_close_on_server
.
cancelled
=
&
was_cancelled
;
op
->
flags
=
0
;
op
->
reserved
=
NULL
;
op
++
;
error
=
grpc_call_start_batch
(
s
,
ops
,
(
size_t
)(
op
-
ops
),
tag
(
102
),
NULL
);
GPR_ASSERT
(
GRPC_CALL_OK
==
error
);
CQ_EXPECT_COMPLETION
(
cqv
,
tag
(
102
),
1
);
CQ_EXPECT_COMPLETION
(
cqv
,
tag
(
1
),
1
);
cq_verify
(
cqv
);
GPR_ASSERT
(
status
==
GRPC_STATUS_UNIMPLEMENTED
);
GPR_ASSERT
(
0
==
grpc_slice_str_cmp
(
details
,
"xyz"
));
GPR_ASSERT
(
0
==
grpc_slice_str_cmp
(
call_details
.
method
,
"/foo"
));
validate_host_override_string
(
"foo.test.google.fr:1234"
,
call_details
.
host
,
config
);
GPR_ASSERT
(
0
==
call_details
.
flags
);
GPR_ASSERT
(
was_cancelled
==
1
);
grpc_slice_unref
(
details
);
grpc_metadata_array_destroy
(
&
initial_metadata_recv
);
grpc_metadata_array_destroy
(
&
trailing_metadata_recv
);
grpc_metadata_array_destroy
(
&
request_metadata_recv
);
grpc_call_details_destroy
(
&
call_details
);
grpc_call_destroy
(
c
);
grpc_call_destroy
(
s
);
cq_verifier_destroy
(
cqv
);
}
static
void
test_max_connection_idle
(
grpc_end2end_test_config
config
)
{
static
void
test_max_connection_idle
(
grpc_end2end_test_config
config
)
{
grpc_end2end_test_fixture
f
=
config
.
create_fixture
(
NULL
,
NULL
);
grpc_end2end_test_fixture
f
=
config
.
create_fixture
(
NULL
,
NULL
);
grpc_connectivity_state
state
=
GRPC_CHANNEL_IDLE
;
grpc_connectivity_state
state
=
GRPC_CHANNEL_IDLE
;
...
@@ -86,6 +219,9 @@ static void test_max_connection_idle(grpc_end2end_test_config config) {
...
@@ -86,6 +219,9 @@ static void test_max_connection_idle(grpc_end2end_test_config config) {
state
==
GRPC_CHANNEL_TRANSIENT_FAILURE
);
state
==
GRPC_CHANNEL_TRANSIENT_FAILURE
);
}
}
/* Use a simple request to cancel and reset the max idle timer */
simple_request_body
(
config
,
&
f
);
/* wait for the channel to reach its maximum idle time */
/* wait for the channel to reach its maximum idle time */
grpc_channel_watch_connectivity_state
(
grpc_channel_watch_connectivity_state
(
f
.
client
,
GRPC_CHANNEL_READY
,
f
.
client
,
GRPC_CHANNEL_READY
,
...
@@ -104,6 +240,7 @@ static void test_max_connection_idle(grpc_end2end_test_config config) {
...
@@ -104,6 +240,7 @@ static void test_max_connection_idle(grpc_end2end_test_config config) {
grpc_server_destroy
(
f
.
server
);
grpc_server_destroy
(
f
.
server
);
grpc_channel_destroy
(
f
.
client
);
grpc_channel_destroy
(
f
.
client
);
grpc_completion_queue_shutdown
(
f
.
cq
);
grpc_completion_queue_shutdown
(
f
.
cq
);
drain_cq
(
f
.
cq
);
grpc_completion_queue_destroy
(
f
.
cq
);
grpc_completion_queue_destroy
(
f
.
cq
);
config
.
tear_down_data
(
&
f
);
config
.
tear_down_data
(
&
f
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment