File: test_scatter_gather.cpp

package info (click to toggle)
zeromq3 4.3.5-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,548 kB
  • sloc: cpp: 56,475; ansic: 4,968; makefile: 1,607; sh: 1,400; xml: 196; python: 40
file content (61 lines) | stat: -rw-r--r-- 1,696 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* SPDX-License-Identifier: MPL-2.0 */

#include "testutil.hpp"
#include "testutil_unity.hpp"

SETUP_TEARDOWN_TESTCONTEXT

void test_scatter_gather_multipart_fails ()
{
    void *scatter = test_context_socket (ZMQ_SCATTER);
    void *gather = test_context_socket (ZMQ_GATHER);

    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_bind (scatter, "inproc://test-scatter-gather"));

    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_connect (gather, "inproc://test-scatter-gather"));

    //  Should fail, multipart is not supported
    TEST_ASSERT_FAILURE_ERRNO (EINVAL,
                               zmq_send_const (scatter, "1", 1, ZMQ_SNDMORE));

    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);

    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_bind (scatter, "inproc://test-scatter-gather"));

    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_connect (gather, "inproc://test-scatter-gather"));

    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_connect (gather2, "inproc://test-scatter-gather"));

    send_string_expect_success (scatter, "1", 0);
    send_string_expect_success (scatter, "2", 0);

    recv_string_expect_success (gather, "1", 0);
    recv_string_expect_success (gather2, "2", 0);

    test_context_socket_close (scatter);
    test_context_socket_close (gather);
    test_context_socket_close (gather2);
}

int main ()
{
    setup_test_environment ();

    UNITY_BEGIN ();
    RUN_TEST (test_scatter_gather);
    RUN_TEST (test_scatter_gather_multipart_fails);
    return UNITY_END ();
}