2023-06-05 01:16:05 +02:00
|
|
|
/* SPDX-License-Identifier: MPL-2.0 */
|
2015-02-10 23:01:50 +01:00
|
|
|
|
|
|
|
#include "testutil.hpp"
|
2018-03-15 13:44:24 +01:00
|
|
|
#include "testutil_unity.hpp"
|
|
|
|
|
2019-03-24 17:51:28 +01:00
|
|
|
SETUP_TEARDOWN_TESTCONTEXT
|
2015-02-10 23:01:50 +01:00
|
|
|
|
2015-09-11 23:01:27 +02:00
|
|
|
// Client threads loop on send/recv until told to exit
|
2018-05-27 13:01:36 +02:00
|
|
|
void client_thread (void *client_)
|
2015-09-11 23:01:27 +02:00
|
|
|
{
|
2016-05-13 05:04:08 +02:00
|
|
|
for (int count = 0; count < 15000; count++) {
|
2018-05-27 13:01:36 +02:00
|
|
|
send_string_expect_success (client_, "0", 0);
|
2015-09-11 23:01:27 +02:00
|
|
|
}
|
2018-05-27 13:01:36 +02:00
|
|
|
send_string_expect_success (client_, "1", 0);
|
2015-09-11 23:01:27 +02:00
|
|
|
}
|
2015-02-10 23:01:50 +01:00
|
|
|
|
2018-03-15 13:44:24 +01:00
|
|
|
void test_thread_safe ()
|
2015-02-10 23:01:50 +01:00
|
|
|
{
|
2017-05-01 13:11:11 +02:00
|
|
|
char my_endpoint[MAX_SOCKET_STRING];
|
2015-02-10 23:01:50 +01:00
|
|
|
|
2018-03-15 13:44:24 +01:00
|
|
|
void *server = test_context_socket (ZMQ_SERVER);
|
2019-03-24 18:17:22 +01:00
|
|
|
bind_loopback_ipv4 (server, my_endpoint, sizeof my_endpoint);
|
2015-02-10 23:01:50 +01:00
|
|
|
|
2018-03-15 13:44:24 +01:00
|
|
|
void *client = test_context_socket (ZMQ_CLIENT);
|
|
|
|
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (client, my_endpoint));
|
2015-02-10 23:01:50 +01:00
|
|
|
|
2015-09-11 23:01:27 +02:00
|
|
|
void *t1 = zmq_threadstart (client_thread, client);
|
|
|
|
void *t2 = zmq_threadstart (client_thread, client);
|
2015-02-10 23:01:50 +01:00
|
|
|
|
2015-09-11 23:01:27 +02:00
|
|
|
char data;
|
|
|
|
int threads_completed = 0;
|
|
|
|
while (threads_completed < 2) {
|
2018-03-15 13:44:24 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_recv (server, &data, 1, 0));
|
|
|
|
if (data == '1')
|
2015-09-11 23:01:27 +02:00
|
|
|
threads_completed++; // Thread ended
|
2015-08-20 16:46:34 +02:00
|
|
|
}
|
2015-09-11 23:01:27 +02:00
|
|
|
zmq_threadclose (t1);
|
|
|
|
zmq_threadclose (t2);
|
2015-02-10 23:01:50 +01:00
|
|
|
|
2018-03-15 13:44:24 +01:00
|
|
|
test_context_socket_close (server);
|
|
|
|
test_context_socket_close (client);
|
|
|
|
}
|
2015-02-10 23:01:50 +01:00
|
|
|
|
2018-05-27 13:01:36 +02:00
|
|
|
void test_getsockopt_thread_safe (void *const socket_)
|
2018-03-15 13:44:24 +01:00
|
|
|
{
|
|
|
|
int thread_safe;
|
|
|
|
size_t size = sizeof (int);
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
2018-05-27 13:01:36 +02:00
|
|
|
zmq_getsockopt (socket_, ZMQ_THREAD_SAFE, &thread_safe, &size));
|
2018-03-15 13:44:24 +01:00
|
|
|
TEST_ASSERT_EQUAL_INT (1, thread_safe);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_client_getsockopt_thread_safe ()
|
|
|
|
{
|
|
|
|
void *client = test_context_socket (ZMQ_CLIENT);
|
|
|
|
test_getsockopt_thread_safe (client);
|
|
|
|
test_context_socket_close (client);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_server_getsockopt_thread_safe ()
|
|
|
|
{
|
|
|
|
void *server = test_context_socket (ZMQ_SERVER);
|
|
|
|
test_getsockopt_thread_safe (server);
|
|
|
|
test_context_socket_close (server);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main (void)
|
|
|
|
{
|
|
|
|
setup_test_environment ();
|
2015-02-10 23:01:50 +01:00
|
|
|
|
2018-03-15 13:44:24 +01:00
|
|
|
// TODO this file could be merged with test_client_server
|
|
|
|
UNITY_BEGIN ();
|
|
|
|
RUN_TEST (test_client_getsockopt_thread_safe);
|
|
|
|
RUN_TEST (test_server_getsockopt_thread_safe);
|
|
|
|
RUN_TEST (test_thread_safe);
|
2015-02-10 23:01:50 +01:00
|
|
|
|
2018-03-15 13:44:24 +01:00
|
|
|
return UNITY_END ();
|
2015-02-10 23:01:50 +01:00
|
|
|
}
|