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
21879abb
Commit
21879abb
authored
Feb 04, 2018
by
sigiesec
Committed by
Luca Boccassi
Feb 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: test_socket_null not using test framework
Solution: rewrite test_socket_null to use unity
parent
61a28a26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
96 additions
and
32 deletions
+96
-32
test_socket_null.cpp
tests/test_socket_null.cpp
+96
-32
No files found.
tests/test_socket_null.cpp
View file @
21879abb
...
...
@@ -29,54 +29,118 @@
#include "testutil.hpp"
#include <unity.h>
void
setUp
()
{
}
void
tearDown
()
{
}
// tests all socket-related functions with a NULL socket argument
int
main
(
void
)
void
test_zmq_socket_null_context
(
)
{
void
*
s
=
zmq_socket
(
NULL
,
ZMQ_PAIR
);
assert
(
s
==
NULL
);
assert
(
errno
==
EFAULT
);
// TODO use EINVAL instead?
TEST_ASSERT_NULL
(
s
);
TEST_ASSERT_EQUAL_INT
(
EFAULT
,
errno
);
// TODO use EINVAL instead?
}
void
test_zmq_close_null_socket
()
{
int
rc
=
zmq_close
(
NULL
);
assert
(
rc
==
-
1
);
assert
(
errno
==
ENOTSOCK
);
// TODO use EINVAL instead?
TEST_ASSERT_EQUAL_INT
(
-
1
,
rc
);
TEST_ASSERT_EQUAL_INT
(
ENOTSOCK
,
errno
);
// TODO use EINVAL instead?
}
void
test_zmq_setsockopt_null_socket
()
{
int
hwm
=
100
;
size_t
hwm_size
=
sizeof
hwm
;
rc
=
zmq_setsockopt
(
NULL
,
ZMQ_SNDHWM
,
&
hwm
,
hwm_size
);
assert
(
rc
==
-
1
);
assert
(
errno
==
ENOTSOCK
);
// TODO use EINVAL instead?
int
rc
=
zmq_setsockopt
(
NULL
,
ZMQ_SNDHWM
,
&
hwm
,
hwm_size
);
TEST_ASSERT_EQUAL_INT
(
-
1
,
rc
);
TEST_ASSERT_EQUAL_INT
(
ENOTSOCK
,
errno
);
// TODO use EINVAL instead?
}
rc
=
zmq_getsockopt
(
NULL
,
ZMQ_SNDHWM
,
&
hwm
,
&
hwm_size
);
assert
(
rc
==
-
1
);
assert
(
errno
==
ENOTSOCK
);
// TODO use EINVAL instead?
void
test_zmq_getsockopt_null_socket
()
{
int
hwm
;
size_t
hwm_size
=
sizeof
hwm
;
int
rc
=
zmq_getsockopt
(
NULL
,
ZMQ_SNDHWM
,
&
hwm
,
&
hwm_size
);
TEST_ASSERT_EQUAL_INT
(
-
1
,
rc
);
TEST_ASSERT_EQUAL_INT
(
ENOTSOCK
,
errno
);
// TODO use EINVAL instead?
}
rc
=
zmq_socket_monitor
(
NULL
,
"inproc://monitor"
,
ZMQ_EVENT_ALL
);
assert
(
rc
==
-
1
);
assert
(
errno
==
ENOTSOCK
);
// TODO use EINVAL instead?
void
test_zmq_socket_monitor_null_socket
()
{
int
rc
=
zmq_socket_monitor
(
NULL
,
"inproc://monitor"
,
ZMQ_EVENT_ALL
);
TEST_ASSERT_EQUAL_INT
(
-
1
,
rc
);
TEST_ASSERT_EQUAL_INT
(
ENOTSOCK
,
errno
);
// TODO use EINVAL instead?
}
#ifdef ZMQ_BUILD_DRAFT_API
rc
=
zmq_join
(
NULL
,
"group"
);
assert
(
rc
==
-
1
);
assert
(
errno
==
ENOTSOCK
);
// TODO use EINVAL instead?
void
test_zmq_join_null_socket
()
{
int
rc
=
zmq_join
(
NULL
,
"group"
);
TEST_ASSERT_EQUAL_INT
(
-
1
,
rc
);
TEST_ASSERT_EQUAL_INT
(
ENOTSOCK
,
errno
);
// TODO use EINVAL instead?
}
rc
=
zmq_leave
(
NULL
,
"group"
);
assert
(
rc
==
-
1
);
assert
(
errno
==
ENOTSOCK
);
// TODO use EINVAL instead?
void
test_zmq_leave_null_socket
()
{
int
rc
=
zmq_leave
(
NULL
,
"group"
);
TEST_ASSERT_EQUAL_INT
(
-
1
,
rc
);
TEST_ASSERT_EQUAL_INT
(
ENOTSOCK
,
errno
);
// TODO use EINVAL instead?
}
#endif
rc
=
zmq_bind
(
NULL
,
"inproc://socket"
);
assert
(
rc
==
-
1
);
assert
(
errno
==
ENOTSOCK
);
// TODO use EINVAL instead?
rc
=
zmq_connect
(
NULL
,
"inproc://socket"
);
assert
(
rc
==
-
1
);
assert
(
errno
==
ENOTSOCK
);
// TODO use EINVAL instead?
void
test_zmq_bind_null_socket
()
{
int
rc
=
zmq_bind
(
NULL
,
"inproc://socket"
);
TEST_ASSERT_EQUAL_INT
(
-
1
,
rc
);
TEST_ASSERT_EQUAL_INT
(
ENOTSOCK
,
errno
);
// TODO use EINVAL instead?
}
void
test_zmq_connect_null_socket
()
{
int
rc
=
zmq_connect
(
NULL
,
"inproc://socket"
);
TEST_ASSERT_EQUAL_INT
(
-
1
,
rc
);
TEST_ASSERT_EQUAL_INT
(
ENOTSOCK
,
errno
);
// TODO use EINVAL instead?
}
rc
=
zmq_unbind
(
NULL
,
"inproc://socket"
);
assert
(
rc
==
-
1
);
assert
(
errno
==
ENOTSOCK
);
// TODO use EINVAL instead?
void
test_zmq_unbind_null_socket
()
{
int
rc
=
zmq_unbind
(
NULL
,
"inproc://socket"
);
TEST_ASSERT_EQUAL_INT
(
-
1
,
rc
);
TEST_ASSERT_EQUAL_INT
(
ENOTSOCK
,
errno
);
// TODO use EINVAL instead?
}
void
test_zmq_disconnect_null_socket
()
{
int
rc
=
zmq_disconnect
(
NULL
,
"inproc://socket"
);
TEST_ASSERT_EQUAL_INT
(
-
1
,
rc
);
TEST_ASSERT_EQUAL_INT
(
ENOTSOCK
,
errno
);
// TODO use EINVAL instead?
}
int
main
(
void
)
{
UNITY_BEGIN
();
RUN_TEST
(
test_zmq_socket_null_context
);
RUN_TEST
(
test_zmq_close_null_socket
);
RUN_TEST
(
test_zmq_setsockopt_null_socket
);
RUN_TEST
(
test_zmq_getsockopt_null_socket
);
RUN_TEST
(
test_zmq_socket_monitor_null_socket
);
RUN_TEST
(
test_zmq_bind_null_socket
);
RUN_TEST
(
test_zmq_connect_null_socket
);
RUN_TEST
(
test_zmq_unbind_null_socket
);
RUN_TEST
(
test_zmq_disconnect_null_socket
);
#ifdef ZMQ_BUILD_DRAFT_API
RUN_TEST
(
test_zmq_join_null_socket
);
RUN_TEST
(
test_zmq_leave_null_socket
);
#endif
rc
=
zmq_disconnect
(
NULL
,
"inproc://socket"
);
assert
(
rc
==
-
1
);
assert
(
errno
==
ENOTSOCK
);
// TODO use EINVAL instead?
return
UNITY_END
();
}
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