diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/libzmq21.cpp | 10 | ||||
| -rw-r--r-- | tests/wireformat.cpp | 19 | 
2 files changed, 10 insertions, 19 deletions
| diff --git a/tests/libzmq21.cpp b/tests/libzmq21.cpp index 3323ef0..ecf271b 100644 --- a/tests/libzmq21.cpp +++ b/tests/libzmq21.cpp @@ -53,9 +53,8 @@ int XS_TEST_MAIN ()      assert (ctx);      void *pub = xs_socket (ctx, XS_PUB);      assert (pub); -    int pattern_version = 1; -    int rc = xs_setsockopt (pub, XS_PATTERN_VERSION, &pattern_version, -        sizeof (pattern_version)); +    int protocol = 1; +    int rc = xs_setsockopt (pub, XS_PROTOCOL, &protocol, sizeof (protocol));      assert (rc == 0);      rc = xs_bind (pub, "tcp://127.0.0.1:5560");      assert (rc != -1); @@ -100,9 +99,8 @@ int XS_TEST_MAIN ()      assert (ctx);      void *sub = xs_socket (ctx, XS_SUB);      assert (sub); -    pattern_version = 1; -    rc = xs_setsockopt (sub, XS_PATTERN_VERSION, &pattern_version, -        sizeof (pattern_version)); +    protocol = 1; +    rc = xs_setsockopt (sub, XS_PROTOCOL, &protocol, sizeof (protocol));      assert (rc == 0);      rc = xs_setsockopt (sub, XS_SUBSCRIBE, "", 0);      assert (rc == 0); diff --git a/tests/wireformat.cpp b/tests/wireformat.cpp index f12f5aa..f3e0f96 100644 --- a/tests/wireformat.cpp +++ b/tests/wireformat.cpp @@ -49,11 +49,7 @@ int XS_TEST_MAIN ()      assert (push);      //  Bind the peer and get the message. -    int service_id = 0x1234; -    int rc = xs_setsockopt (pull, XS_SERVICE_ID, &service_id, -        sizeof service_id); -    assert (rc == 0); -    rc = xs_bind (pull, "tcp://127.0.0.1:5560"); +    int rc = xs_bind (pull, "tcp://127.0.0.1:5560");      assert (rc != -1);      rc = xs_bind (push, "tcp://127.0.0.1:5561");      assert (rc != -1); @@ -75,10 +71,10 @@ int XS_TEST_MAIN ()      assert (rc == 0);      // Let's send some data and check if it arrived -    rc = send (rpush, "\0SP\0\x12\x34\x04\x31\x04\0abc", 13, 0); -    assert (rc == 13); +    rc = send (rpush, "\x04\0abc", 5, 0); +    assert (rc == 5);      unsigned char buf [3]; -    unsigned char buf2 [8]; +	unsigned char buf2 [3];      rc = xs_recv (pull, buf, sizeof (buf), 0);      assert (rc == 3);      assert (!memcmp (buf, "abc", 3)); @@ -87,11 +83,8 @@ int XS_TEST_MAIN ()      rc = xs_send (push, buf, sizeof (buf), 0);      assert (rc == 3);      rc = recv (rpull, (char*) buf2, sizeof (buf2), 0); -    assert (rc == 8); -    assert (!memcmp (buf2, "\0SP\0\0\0\x04\x31", 8)); -    rc = recv (rpull, (char*) buf2, 5, 0); -    assert (rc == 5); -    assert (!memcmp (buf2, "\x04\0abc", 5)); +    assert (rc == 3); +    assert (!memcmp (buf2, "\x04\0abc", 3));  #if defined XS_HAVE_WINDOWS      rc = closesocket (rpush); | 
