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
f4046cdc
Commit
f4046cdc
authored
8 years ago
by
Yuchen Zeng
Browse files
Options
Downloads
Patches
Plain Diff
Fix thread leak
parent
e7068c83
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/cpp/util/grpc_tool_test.cc
+13
-17
13 additions, 17 deletions
test/cpp/util/grpc_tool_test.cc
with
13 additions
and
17 deletions
test/cpp/util/grpc_tool_test.cc
+
13
−
17
View file @
f4046cdc
...
@@ -79,29 +79,25 @@ class GrpcToolTest : public ::testing::Test {
...
@@ -79,29 +79,25 @@ class GrpcToolTest : public ::testing::Test {
protected:
protected:
GrpcToolTest
()
{}
GrpcToolTest
()
{}
void
SetUp
()
GRPC_OVERRIDE
{
// SetUpServer cannot be used with EXPECT_EXIT. grpc_pick_unused_port_or_die()
// uses atexit() to free chosen ports, and it will spawn a new thread in
// resolve_address_posix.c:192 at exit time.
const
grpc
::
string
SetUpServer
()
{
std
::
ostringstream
server_address
;
int
port
=
grpc_pick_unused_port_or_die
();
int
port
=
grpc_pick_unused_port_or_die
();
server_address
_
<<
"localhost:"
<<
port
;
server_address
<<
"localhost:"
<<
port
;
// Setup server
// Setup server
ServerBuilder
builder
;
ServerBuilder
builder
;
builder
.
AddListeningPort
(
server_address
_
.
str
(),
builder
.
AddListeningPort
(
server_address
.
str
(),
InsecureServerCredentials
());
InsecureServerCredentials
());
builder
.
RegisterService
(
&
service_
);
builder
.
RegisterService
(
&
service_
);
server_
=
builder
.
BuildAndStart
();
server_
=
builder
.
BuildAndStart
();
return
server_address
.
str
();
}
}
void
TearDown
()
GRPC_OVERRIDE
{
server_
->
Shutdown
();
}
void
ShutdownServer
()
{
server_
->
Shutdown
();
}
void
ResetStub
()
{
channel_
=
CreateChannel
(
server_address_
.
str
(),
InsecureChannelCredentials
());
stub_
=
grpc
::
testing
::
EchoTestService
::
NewStub
(
channel_
);
}
std
::
shared_ptr
<
Channel
>
channel_
;
std
::
unique_ptr
<
grpc
::
testing
::
EchoTestService
::
Stub
>
stub_
;
std
::
unique_ptr
<
Server
>
server_
;
std
::
unique_ptr
<
Server
>
server_
;
std
::
ostringstream
server_address_
;
TestServiceImpl
service_
;
TestServiceImpl
service_
;
reflection
::
ProtoServerReflectionPlugin
plugin_
;
reflection
::
ProtoServerReflectionPlugin
plugin_
;
};
};
...
@@ -163,7 +159,8 @@ TEST_F(GrpcToolTest, HelpCommand) {
...
@@ -163,7 +159,8 @@ TEST_F(GrpcToolTest, HelpCommand) {
TEST_F
(
GrpcToolTest
,
CallCommand
)
{
TEST_F
(
GrpcToolTest
,
CallCommand
)
{
// Test input "grpc_cli call Echo"
// Test input "grpc_cli call Echo"
std
::
stringstream
output_stream
;
std
::
stringstream
output_stream
;
grpc
::
string
server_address
=
server_address_
.
str
();
const
grpc
::
string
server_address
=
SetUpServer
();
const
char
*
argv
[]
=
{
"grpc_cli"
,
"call"
,
server_address
.
c_str
(),
"Echo"
,
const
char
*
argv
[]
=
{
"grpc_cli"
,
"call"
,
server_address
.
c_str
(),
"Echo"
,
"message: 'Hello'"
};
"message: 'Hello'"
};
...
@@ -173,12 +170,12 @@ TEST_F(GrpcToolTest, CallCommand) {
...
@@ -173,12 +170,12 @@ TEST_F(GrpcToolTest, CallCommand) {
// Expected output: "message: \"Hello\""
// Expected output: "message: \"Hello\""
EXPECT_TRUE
(
NULL
!=
EXPECT_TRUE
(
NULL
!=
strstr
(
output_stream
.
str
().
c_str
(),
"message:
\"
Hello
\"
"
));
strstr
(
output_stream
.
str
().
c_str
(),
"message:
\"
Hello
\"
"
));
ShutdownServer
();
}
}
TEST_F
(
GrpcToolTest
,
TooFewArguments
)
{
TEST_F
(
GrpcToolTest
,
TooFewArguments
)
{
// Test input "grpc_cli call localhost:<port> Echo "message: 'Hello'"
// Test input "grpc_cli call localhost:<port> Echo "message: 'Hello'"
std
::
stringstream
output_stream
;
std
::
stringstream
output_stream
;
grpc
::
string
server_address
=
server_address_
.
str
();
const
char
*
argv
[]
=
{
"grpc_cli"
,
"call"
,
"Echo"
};
const
char
*
argv
[]
=
{
"grpc_cli"
,
"call"
,
"Echo"
};
// Exit with 1
// Exit with 1
...
@@ -194,8 +191,7 @@ TEST_F(GrpcToolTest, TooFewArguments) {
...
@@ -194,8 +191,7 @@ TEST_F(GrpcToolTest, TooFewArguments) {
TEST_F
(
GrpcToolTest
,
TooManyArguments
)
{
TEST_F
(
GrpcToolTest
,
TooManyArguments
)
{
// Test input "grpc_cli call localhost:<port> Echo Echo "message: 'Hello'"
// Test input "grpc_cli call localhost:<port> Echo Echo "message: 'Hello'"
std
::
stringstream
output_stream
;
std
::
stringstream
output_stream
;
grpc
::
string
server_address
=
server_address_
.
str
();
const
char
*
argv
[]
=
{
"grpc_cli"
,
"call"
,
"localhost:10000"
,
const
char
*
argv
[]
=
{
"grpc_cli"
,
"call"
,
server_address
.
c_str
(),
"Echo"
,
"Echo"
,
"message: 'Hello'"
};
"Echo"
,
"Echo"
,
"message: 'Hello'"
};
// Exit with 1
// Exit with 1
...
...
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