Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
77f76a49
Commit
77f76a49
authored
Sep 18, 2017
by
sigiesec
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: no tests for cases 5 and 6 of #2711
Solution: added tests
parent
e546f929
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
6 deletions
+60
-6
test_security_zap.cpp
tests/test_security_zap.cpp
+46
-2
testutil_security.hpp
tests/testutil_security.hpp
+14
-4
No files found.
tests/test_security_zap.cpp
View file @
77f76a49
...
...
@@ -64,6 +64,16 @@ static void zap_handler_disconnect (void *ctx)
zap_handler_generic
(
ctx
,
zap_disconnect
);
}
static
void
zap_handler_do_not_recv
(
void
*
ctx
)
{
zap_handler_generic
(
ctx
,
zap_do_not_recv
);
}
static
void
zap_handler_do_not_send
(
void
*
ctx
)
{
zap_handler_generic
(
ctx
,
zap_do_not_send
);
}
int
expect_new_client_bounce_fail_and_count_monitor_events
(
void
*
ctx
,
char
*
my_endpoint
,
...
...
@@ -344,8 +354,42 @@ void test_zap_errors (socket_config_fn server_socket_config_,
0
,
0
,
#endif
client_socket_config_
,
client_socket_config_data_
);
shutdown_context_and_server_side
(
ctx
,
zap_thread
,
server
,
server_mon
,
handler
,
true
);
shutdown_context_and_server_side
(
ctx
,
zap_thread
,
server
,
server_mon
,
handler
,
true
);
// ZAP handler does not read request
fprintf
(
stderr
,
"test_zap_unsuccessful ZAP handler does not read request
\n
"
);
setup_context_and_server_side
(
&
ctx
,
&
handler
,
&
zap_thread
,
&
server
,
&
server_mon
,
my_endpoint
,
&
zap_handler_do_not_recv
,
server_socket_config_
);
test_zap_unsuccessful_no_handler
(
ctx
,
my_endpoint
,
server
,
server_mon
,
#ifdef ZMQ_BUILD_DRAFT_API
ZMQ_EVENT_HANDSHAKE_FAILED_NO_DETAIL
,
EPIPE
,
#else
0
,
0
,
#endif
client_socket_config_
,
client_socket_config_data_
);
shutdown_context_and_server_side
(
ctx
,
zap_thread
,
server
,
server_mon
,
handler
);
// ZAP handler does not send reply
fprintf
(
stderr
,
"test_zap_unsuccessful ZAP handler does not write reply
\n
"
);
setup_context_and_server_side
(
&
ctx
,
&
handler
,
&
zap_thread
,
&
server
,
&
server_mon
,
my_endpoint
,
&
zap_handler_do_not_send
,
server_socket_config_
);
test_zap_unsuccessful_no_handler
(
ctx
,
my_endpoint
,
server
,
server_mon
,
#ifdef ZMQ_BUILD_DRAFT_API
ZMQ_EVENT_HANDSHAKE_FAILED_NO_DETAIL
,
EPIPE
,
#else
0
,
0
,
#endif
client_socket_config_
,
client_socket_config_data_
);
shutdown_context_and_server_side
(
ctx
,
zap_thread
,
server
,
server_mon
,
handler
);
}
int
main
(
void
)
...
...
tests/testutil_security.hpp
View file @
77f76a49
...
...
@@ -154,7 +154,9 @@ enum zap_protocol_t
zap_wrong_request_id
,
zap_status_invalid
,
zap_too_many_parts
,
zap_disconnect
zap_disconnect
,
zap_do_not_recv
,
zap_do_not_send
};
void
*
zap_requests_handled
;
...
...
@@ -182,8 +184,11 @@ void zap_handler_generic (void *ctx,
{
handler
,
0
,
ZMQ_POLLIN
,
0
},
};
// if ordered not to receive the request, ignore the second poll item
const
int
numitems
=
(
zap_protocol
==
zap_do_not_recv
)
?
1
:
2
;
// Process ZAP requests forever
while
(
zmq_poll
(
items
,
2
,
-
1
)
>=
0
)
{
while
(
zmq_poll
(
items
,
numitems
,
-
1
)
>=
0
)
{
if
(
items
[
0
].
revents
&
ZMQ_POLLIN
)
{
char
*
buf
=
s_recv
(
control
);
assert
(
buf
);
...
...
@@ -198,7 +203,10 @@ void zap_handler_generic (void *ctx,
if
(
!
version
)
break
;
// Terminating - peer's socket closed
if
(
zap_protocol
==
zap_disconnect
)
{
free
(
version
);
break
;
}
char
*
sequence
=
s_recv
(
handler
);
char
*
domain
=
s_recv
(
handler
);
...
...
@@ -268,12 +276,14 @@ void zap_handler_generic (void *ctx,
if
(
zap_protocol
==
zap_too_many_parts
)
{
s_sendmore
(
handler
,
""
);
}
s_send
(
handler
,
""
);
if
(
zap_protocol
!=
zap_do_not_send
)
s_send
(
handler
,
""
);
}
else
{
s_sendmore
(
handler
,
"400"
);
s_sendmore
(
handler
,
"Invalid client public key"
);
s_sendmore
(
handler
,
""
);
s_send
(
handler
,
""
);
if
(
zap_protocol
!=
zap_do_not_send
)
s_send
(
handler
,
""
);
}
free
(
version
);
free
(
sequence
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment