2023-06-05 01:16:05 +02:00
|
|
|
/* SPDX-License-Identifier: MPL-2.0 */
|
2016-04-21 12:23:44 +02:00
|
|
|
|
|
|
|
#include "testutil.hpp"
|
2018-12-12 11:27:50 +01:00
|
|
|
#include "testutil_unity.hpp"
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2019-03-24 17:51:28 +01:00
|
|
|
SETUP_TEARDOWN_TESTCONTEXT
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
void test_scatter_gather_multipart_fails ()
|
|
|
|
{
|
|
|
|
void *scatter = test_context_socket (ZMQ_SCATTER);
|
|
|
|
void *gather = test_context_socket (ZMQ_GATHER);
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_bind (scatter, "inproc://test-scatter-gather"));
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_connect (gather, "inproc://test-scatter-gather"));
|
2016-04-21 12:23:44 +02:00
|
|
|
|
|
|
|
// Should fail, multipart is not supported
|
2019-03-24 18:02:50 +01:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EINVAL,
|
|
|
|
zmq_send_const (scatter, "1", 1, ZMQ_SNDMORE));
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
test_context_socket_close (scatter);
|
|
|
|
test_context_socket_close (gather);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_scatter_gather ()
|
|
|
|
{
|
|
|
|
void *scatter = test_context_socket (ZMQ_SCATTER);
|
|
|
|
void *gather = test_context_socket (ZMQ_GATHER);
|
|
|
|
void *gather2 = test_context_socket (ZMQ_GATHER);
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_bind (scatter, "inproc://test-scatter-gather"));
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_connect (gather, "inproc://test-scatter-gather"));
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_connect (gather2, "inproc://test-scatter-gather"));
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
send_string_expect_success (scatter, "1", 0);
|
|
|
|
send_string_expect_success (scatter, "2", 0);
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
recv_string_expect_success (gather, "1", 0);
|
|
|
|
recv_string_expect_success (gather2, "2", 0);
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
test_context_socket_close (scatter);
|
|
|
|
test_context_socket_close (gather);
|
|
|
|
test_context_socket_close (gather2);
|
|
|
|
}
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
setup_test_environment ();
|
2016-04-21 12:23:44 +02:00
|
|
|
|
2018-12-12 11:27:50 +01:00
|
|
|
UNITY_BEGIN ();
|
|
|
|
RUN_TEST (test_scatter_gather);
|
|
|
|
RUN_TEST (test_scatter_gather_multipart_fails);
|
|
|
|
return UNITY_END ();
|
2016-04-21 12:23:44 +02:00
|
|
|
}
|