2023-06-05 01:16:05 +02:00
|
|
|
/* SPDX-License-Identifier: MPL-2.0 */
|
2013-12-20 14:28:54 +01:00
|
|
|
|
|
|
|
#include "testutil.hpp"
|
2018-12-25 13:20:04 +01:00
|
|
|
#include "testutil_unity.hpp"
|
2013-12-20 14:28:54 +01:00
|
|
|
|
2019-03-24 17:51:28 +01:00
|
|
|
SETUP_TEARDOWN_TESTCONTEXT
|
2018-12-25 13:20:04 +01:00
|
|
|
|
|
|
|
void test_ipc_wildcard ()
|
|
|
|
{
|
|
|
|
void *sb = test_context_socket (ZMQ_PAIR);
|
2013-12-20 14:28:54 +01:00
|
|
|
char endpoint[200];
|
2019-03-24 18:19:36 +01:00
|
|
|
bind_loopback_ipc (sb, endpoint, sizeof endpoint);
|
2013-12-20 14:28:54 +01:00
|
|
|
|
2018-12-25 13:20:04 +01:00
|
|
|
void *sc = test_context_socket (ZMQ_PAIR);
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc, endpoint));
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2013-12-20 14:28:54 +01:00
|
|
|
bounce (sb, sc);
|
|
|
|
|
2018-12-25 13:20:04 +01:00
|
|
|
test_context_socket_close (sc);
|
|
|
|
test_context_socket_close (sb);
|
|
|
|
}
|
2013-12-20 14:28:54 +01:00
|
|
|
|
2018-12-25 13:20:04 +01:00
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
setup_test_environment ();
|
2013-12-20 14:28:54 +01:00
|
|
|
|
2018-12-25 13:20:04 +01:00
|
|
|
UNITY_BEGIN ();
|
|
|
|
RUN_TEST (test_ipc_wildcard);
|
|
|
|
return UNITY_END ();
|
2013-12-20 14:28:54 +01:00
|
|
|
}
|