summaryrefslogtreecommitdiff
path: root/src/protocol
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2020-02-05 00:17:52 -0800
committerGarrett D'Amore <garrett@damore.org>2020-02-05 00:31:11 -0800
commitb46d532dc90b52eec42376e8c75bed5c6c7416a4 (patch)
treea93bffc9e0643190648a770ad96af43a4f00a4e7 /src/protocol
parentbd13268f356f83d541c4bce09eae02287d4ddbd9 (diff)
downloadnng-b46d532dc90b52eec42376e8c75bed5c6c7416a4.tar.gz
nng-b46d532dc90b52eec42376e8c75bed5c6c7416a4.tar.bz2
nng-b46d532dc90b52eec42376e8c75bed5c6c7416a4.zip
Survey test rewrite.
This bumps the coverage for survey up. While here fixed a few nits in req test, and removed the now pointless legacy survey and respond tests.
Diffstat (limited to 'src/protocol')
-rw-r--r--src/protocol/reqrep0/req_test.c4
-rw-r--r--src/protocol/survey0/CMakeLists.txt1
-rw-r--r--src/protocol/survey0/survey.c7
-rw-r--r--src/protocol/survey0/survey_test.c686
4 files changed, 690 insertions, 8 deletions
diff --git a/src/protocol/reqrep0/req_test.c b/src/protocol/reqrep0/req_test.c
index 6cb06f62..fa685e52 100644
--- a/src/protocol/reqrep0/req_test.c
+++ b/src/protocol/reqrep0/req_test.c
@@ -921,8 +921,8 @@ test_req_validate_peer(void)
}
TEST_LIST = {
- { "req rep identity", test_req_identity },
- { "req resend option", test_req_ttl_option },
+ { "req identity", test_req_identity },
+ { "req ttl option", test_req_ttl_option },
{ "req resend option", test_req_resend_option },
{ "req recv bad state", test_req_recv_bad_state },
{ "req recv garbage", test_req_recv_garbage },
diff --git a/src/protocol/survey0/CMakeLists.txt b/src/protocol/survey0/CMakeLists.txt
index a180a196..6b3c8277 100644
--- a/src/protocol/survey0/CMakeLists.txt
+++ b/src/protocol/survey0/CMakeLists.txt
@@ -24,5 +24,6 @@ nng_headers_if(NNG_PROTO_RESPONDENT0 nng/protocol/survey0/respond.h)
nng_defines_if(NNG_PROTO_RESPONDENT0 NNG_HAVE_RESPONDENT0)
nng_test(respond_test)
+nng_test(survey_test)
nng_test(xrespond_test)
nng_test(xsurvey_test) \ No newline at end of file
diff --git a/src/protocol/survey0/survey.c b/src/protocol/survey0/survey.c
index dcf92e07..999b8a56 100644
--- a/src/protocol/survey0/survey.c
+++ b/src/protocol/survey0/survey.c
@@ -384,12 +384,7 @@ surv0_pipe_recv_cb(void *arg)
return;
}
id = nni_msg_trim_u32(msg);
- if (nni_msg_header_append_u32(msg, id) != 0) {
- // Should be NNG_ENOMEM - discard and try again.
- nni_msg_free(msg);
- nni_pipe_recv(p->npipe, p->aio_recv);
- return;
- }
+ nni_msg_header_must_append_u32(msg ,id);
nni_mtx_lock(&sock->mtx);
diff --git a/src/protocol/survey0/survey_test.c b/src/protocol/survey0/survey_test.c
new file mode 100644
index 00000000..65395eee
--- /dev/null
+++ b/src/protocol/survey0/survey_test.c
@@ -0,0 +1,686 @@
+//
+// Copyright 2020 Staysail Systems, Inc. <info@staysail.tech>
+// Copyright 2018 Capitar IT Group BV <info@capitar.com>
+//
+// This software is supplied under the terms of the MIT License, a
+// copy of which should be located in the distribution where this
+// file was obtained (LICENSE.txt). A copy of the license may also be
+// found online at https://opensource.org/licenses/MIT.
+//
+
+#include <string.h>
+
+#include <nng/nng.h>
+#include <nng/protocol/survey0/respond.h>
+#include <nng/protocol/survey0/survey.h>
+
+#include <acutest.h>
+#include <testutil.h>
+
+static void
+test_surv_identity(void)
+{
+ nng_socket s;
+ int p;
+ char * n;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&s));
+ TEST_NNG_PASS(nng_getopt_int(s, NNG_OPT_PROTO, &p));
+ TEST_CHECK(p == NNG_SURVEYOR0_SELF);
+ TEST_NNG_PASS(nng_getopt_int(s, NNG_OPT_PEER, &p));
+ TEST_CHECK(p == NNG_SURVEYOR0_PEER); // 49
+ TEST_NNG_PASS(nng_getopt_string(s, NNG_OPT_PROTONAME, &n));
+ TEST_CHECK(strcmp(n, NNG_SURVEYOR0_SELF_NAME) == 0);
+ nng_strfree(n);
+ TEST_NNG_PASS(nng_getopt_string(s, NNG_OPT_PEERNAME, &n));
+ TEST_CHECK(strcmp(n, NNG_SURVEYOR0_PEER_NAME) == 0);
+ nng_strfree(n);
+ TEST_NNG_PASS(nng_close(s));
+}
+
+static void
+test_surv_ttl_option(void)
+{
+ nng_socket surv;
+ int v;
+ bool b;
+ size_t sz;
+ const char *opt = NNG_OPT_MAXTTL;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+
+ TEST_NNG_PASS(nng_setopt_int(surv, opt, 1));
+ TEST_NNG_FAIL(nng_setopt_int(surv, opt, 0), NNG_EINVAL);
+ TEST_NNG_FAIL(nng_setopt_int(surv, opt, -1), NNG_EINVAL);
+ // This test will fail if the NNI_MAX_MAX_TTL is changed from the
+ // builtin default of 15.
+ TEST_NNG_FAIL(nng_setopt_int(surv, opt, 16), NNG_EINVAL);
+ TEST_NNG_FAIL(nng_setopt_int(surv, opt, 256), NNG_EINVAL);
+ TEST_NNG_PASS(nng_setopt_int(surv, opt, 3));
+ TEST_NNG_PASS(nng_getopt_int(surv, opt, &v));
+ TEST_CHECK(v == 3);
+ v = 0;
+ sz = sizeof(v);
+ TEST_NNG_PASS(nng_getopt(surv, opt, &v, &sz));
+ TEST_CHECK(v == 3);
+ TEST_CHECK(sz == sizeof(v));
+
+ TEST_NNG_FAIL(nng_setopt(surv, opt, "", 1), NNG_EINVAL);
+ sz = 1;
+ TEST_NNG_FAIL(nng_getopt(surv, opt, &v, &sz), NNG_EINVAL);
+ TEST_NNG_FAIL(nng_setopt_bool(surv, opt, true), NNG_EBADTYPE);
+ TEST_NNG_FAIL(nng_getopt_bool(surv, opt, &b), NNG_EBADTYPE);
+
+ TEST_NNG_PASS(nng_close(surv));
+}
+
+static void
+test_surv_survey_time_option(void)
+{
+ nng_socket surv;
+ nng_duration d;
+ bool b;
+ size_t sz = sizeof(b);
+ const char * opt = NNG_OPT_SURVEYOR_SURVEYTIME;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+
+ TEST_NNG_PASS(nng_setopt_ms(surv, opt, 10));
+ TEST_NNG_FAIL(nng_setopt(surv, opt, "", 1), NNG_EINVAL);
+ TEST_NNG_FAIL(nng_getopt(surv, opt, &b, &sz), NNG_EINVAL);
+ TEST_NNG_FAIL(nng_setopt_bool(surv, opt, true), NNG_EBADTYPE);
+ TEST_NNG_FAIL(nng_getopt_bool(surv, opt, &b), NNG_EBADTYPE);
+
+ TEST_NNG_PASS(nng_getopt_ms(surv, opt, &d));
+ TEST_CHECK(d == 10);
+ TEST_NNG_PASS(nng_close(surv));
+}
+
+void
+test_surv_recv_bad_state(void)
+{
+ nng_socket surv;
+ nng_msg * msg = NULL;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_FAIL(nng_recvmsg(surv, &msg, 0), NNG_ESTATE);
+ TEST_CHECK(msg == NULL);
+ TEST_NNG_PASS(nng_close(surv));
+}
+
+static void
+test_surv_recv_garbage(void)
+{
+ nng_socket resp;
+ nng_socket surv;
+ nng_msg * m;
+ uint32_t surv_id;
+
+ TEST_NNG_PASS(nng_respondent0_open_raw(&resp));
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_RECVTIMEO, 100));
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_SENDTIMEO, 1000));
+ TEST_NNG_PASS(nng_setopt_ms(resp, NNG_OPT_SENDTIMEO, 1000));
+ TEST_NNG_PASS(nng_setopt_ms(resp, NNG_OPT_SENDTIMEO, 1000));
+
+ TEST_NNG_PASS(testutil_marry(surv, resp));
+
+ TEST_NNG_PASS(nng_msg_alloc(&m, 0));
+ TEST_NNG_PASS(nng_sendmsg(surv, m, 0));
+
+ TEST_NNG_PASS(nng_recvmsg(resp, &m, 0));
+
+ // The message will have a header that contains the 32-bit pipe ID,
+ // followed by the 32-bit request ID. We will discard the request
+ // ID before sending it out.
+ TEST_CHECK(nng_msg_header_len(m) == 8);
+ TEST_NNG_PASS(nng_msg_header_chop_u32(m, &surv_id));
+
+ TEST_NNG_PASS(nng_sendmsg(resp, m, 0));
+ TEST_NNG_FAIL(nng_recvmsg(surv, &m, 0), NNG_ETIMEDOUT);
+
+ TEST_NNG_PASS(nng_close(surv));
+ TEST_NNG_PASS(nng_close(resp));
+}
+
+#define SECOND 1000
+
+void
+test_surv_resp_exchange(void)
+{
+ nng_socket surv;
+ nng_socket resp;
+ nng_msg * msg = NULL;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_respondent0_open(&resp));
+
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_RECVTIMEO, SECOND));
+ TEST_NNG_PASS(nng_setopt_ms(resp, NNG_OPT_RECVTIMEO, SECOND));
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_SENDTIMEO, SECOND));
+ TEST_NNG_PASS(nng_setopt_ms(resp, NNG_OPT_SENDTIMEO, SECOND));
+
+ TEST_NNG_PASS(testutil_marry(resp, surv));
+
+ TEST_NNG_PASS(nng_msg_alloc(&msg, 0));
+ TEST_NNG_PASS(nng_msg_append(msg, "ping", 5));
+ TEST_CHECK(nng_msg_len(msg) == 5);
+ TEST_CHECK(strcmp(nng_msg_body(msg), "ping") == 0);
+ TEST_NNG_PASS(nng_sendmsg(surv, msg, 0));
+ msg = NULL;
+ TEST_NNG_PASS(nng_recvmsg(resp, &msg, 0));
+ TEST_CHECK(msg != NULL);
+ TEST_CHECK(nng_msg_len(msg) == 5);
+ TEST_CHECK(strcmp(nng_msg_body(msg), "ping") == 0);
+ nng_msg_trim(msg, 5);
+ TEST_NNG_PASS(nng_msg_append(msg, "pong", 5));
+ TEST_NNG_PASS(nng_sendmsg(resp, msg, 0));
+ msg = NULL;
+ TEST_NNG_PASS(nng_recvmsg(surv, &msg, 0));
+ TEST_CHECK(msg != NULL);
+ TEST_CHECK(nng_msg_len(msg) == 5);
+ TEST_CHECK(strcmp(nng_msg_body(msg), "pong") == 0);
+ nng_msg_free(msg);
+
+ TEST_NNG_PASS(nng_close(surv));
+ TEST_NNG_PASS(nng_close(resp));
+}
+
+void
+test_surv_cancel(void)
+{
+ nng_msg * abc;
+ nng_msg * def;
+ nng_msg * cmd;
+ nng_socket surv;
+ nng_socket resp;
+
+ TEST_NNG_PASS(nng_respondent0_open(&resp));
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_RECVTIMEO, SECOND));
+ TEST_NNG_PASS(nng_setopt_ms(resp, NNG_OPT_RECVTIMEO, SECOND));
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_SENDTIMEO, 5 * SECOND));
+ TEST_NNG_PASS(nng_setopt_ms(resp, NNG_OPT_SENDTIMEO, 5 * SECOND));
+ TEST_NNG_PASS(nng_setopt_int(surv, NNG_OPT_SENDBUF, 16));
+
+ TEST_NNG_PASS(nng_msg_alloc(&abc, 0));
+ TEST_NNG_PASS(nng_msg_append(abc, "abc", 4));
+ TEST_NNG_PASS(nng_msg_alloc(&def, 0));
+ TEST_NNG_PASS(nng_msg_append(def, "def", 4));
+
+ TEST_NNG_PASS(testutil_marry(resp, surv));
+
+ // Send req #1 (abc).
+ TEST_CHECK(nng_sendmsg(surv, abc, 0) == 0);
+
+ // Sleep a bit. This is so that we ensure that our request gets
+ // to the far side. (If we cancel too fast, then our outgoing send
+ // will be canceled before it gets to the peer.)
+ testutil_sleep(100);
+
+ // Send the next next request ("def"). Note that
+ // the RESP side server will have already buffered the receive
+ // request, and should simply be waiting for us to reply to abc.
+ TEST_NNG_PASS(nng_sendmsg(surv, def, 0));
+
+ // Receive the first request (should be abc) on the REP server.
+ TEST_NNG_PASS(nng_recvmsg(resp, &cmd, 0));
+ TEST_ASSERT(cmd != NULL);
+ TEST_CHECK(nng_msg_len(cmd) == 4);
+ TEST_CHECK(strcmp(nng_msg_body(cmd), "abc") == 0);
+
+ // RESP sends the reply to first command. This will be discarded
+ // by the SURV socket.
+ TEST_NNG_PASS(nng_sendmsg(resp, cmd, 0));
+
+ // Now get the next command from the REP; should be "def".
+ TEST_NNG_PASS(nng_recvmsg(resp, &cmd, 0));
+ TEST_ASSERT(cmd != NULL);
+ TEST_CHECK(nng_msg_len(cmd) == 4);
+ TEST_CHECK(strcmp(nng_msg_body(cmd), "def") == 0);
+ TEST_MSG("Received body was %s", nng_msg_body(cmd));
+
+ // And send it back to REQ.
+ TEST_NNG_PASS(nng_sendmsg(resp, cmd, 0));
+
+ // Try a req command. This should give back "def"
+ TEST_NNG_PASS(nng_recvmsg(surv, &cmd, 0));
+ TEST_CHECK(nng_msg_len(cmd) == 4);
+ TEST_CHECK(strcmp(nng_msg_body(cmd), "def") == 0);
+ nng_msg_free(cmd);
+
+ TEST_NNG_PASS(nng_close(surv));
+ TEST_NNG_PASS(nng_close(resp));
+}
+
+void
+test_surv_cancel_abort_recv(void)
+{
+
+ nng_msg * abc;
+ nng_msg * def;
+ nng_msg * cmd;
+ nng_aio * aio;
+ nng_duration time = SECOND * 10; // 10s (kind of never)
+ nng_socket surv;
+ nng_socket resp;
+
+ TEST_NNG_PASS(nng_respondent0_open(&resp));
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_aio_alloc(&aio, NULL, NULL));
+
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_SURVEYOR_SURVEYTIME, time));
+ TEST_NNG_PASS(nng_setopt_int(surv, NNG_OPT_SENDBUF, 16));
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_RECVTIMEO, 5 * SECOND));
+ TEST_NNG_PASS(nng_setopt_ms(resp, NNG_OPT_RECVTIMEO, 5 * SECOND));
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_SENDTIMEO, 5 * SECOND));
+ TEST_NNG_PASS(nng_setopt_ms(resp, NNG_OPT_SENDTIMEO, 5 * SECOND));
+
+ TEST_NNG_PASS(nng_msg_alloc(&abc, 0));
+ TEST_NNG_PASS(nng_msg_append(abc, "abc", 4));
+ TEST_NNG_PASS(nng_msg_alloc(&def, 0));
+ TEST_NNG_PASS(nng_msg_append(def, "def", 4));
+
+ TEST_NNG_PASS(testutil_marry(resp, surv));
+
+ // Send survey #1 (abc).
+ TEST_NNG_PASS(nng_sendmsg(surv, abc, 0));
+
+ // Wait for it to get ot the other side.
+ testutil_sleep(100);
+
+ nng_aio_set_timeout(aio, 5 * SECOND);
+ nng_recv_aio(surv, aio);
+
+ // Give time for this recv to post properly.
+ testutil_sleep(100);
+
+ // Send the next next request ("def"). Note that
+ // the respondent side server will have already buffered the receive
+ // request, and should simply be waiting for us to reply to
+ // abc.
+ TEST_NNG_PASS(nng_sendmsg(surv, def, 0));
+
+ // Our pending I/O should have been canceled.
+ nng_aio_wait(aio);
+ TEST_NNG_FAIL(nng_aio_result(aio), NNG_ECANCELED);
+
+ // Receive the first request (should be abc) on the respondent.
+ TEST_NNG_PASS(nng_recvmsg(resp, &cmd, 0));
+ TEST_CHECK(nng_msg_len(cmd) == 4);
+ TEST_CHECK(strcmp(nng_msg_body(cmd), "abc") == 0);
+
+ // Respondent sends the reply to first survey. This will be
+ // discarded by the SURV socket.
+ TEST_CHECK(nng_sendmsg(resp, cmd, 0) == 0);
+
+ // Now get the next survey from the RESP; should be "def".
+ TEST_NNG_PASS(nng_recvmsg(resp, &cmd, 0));
+ TEST_CHECK(nng_msg_len(cmd) == 4);
+ TEST_CHECK(strcmp(nng_msg_body(cmd), "def") == 0);
+
+ // And send it back to REQ.
+ TEST_NNG_PASS(nng_sendmsg(resp, cmd, 0));
+
+ // Try a req command. This should give back "def"
+ TEST_NNG_PASS(nng_recvmsg(surv, &cmd, 0));
+ TEST_CHECK(nng_msg_len(cmd) == 4);
+ TEST_CHECK(strcmp(nng_msg_body(cmd), "def") == 0);
+ nng_msg_free(cmd);
+
+ nng_aio_free(aio);
+ TEST_NNG_PASS(nng_close(surv));
+ TEST_NNG_PASS(nng_close(resp));
+}
+
+static void
+test_surv_cancel_post_recv(void)
+{
+ nng_socket surv;
+ nng_socket resp;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_respondent0_open(&resp));
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_SENDTIMEO, 1000));
+ TEST_NNG_PASS(nng_setopt_ms(resp, NNG_OPT_SENDTIMEO, 1000));
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_RECVTIMEO, 1000));
+ TEST_NNG_PASS(nng_setopt_ms(resp, NNG_OPT_RECVTIMEO, 1000));
+ TEST_NNG_PASS(testutil_marry(surv, resp));
+
+ TEST_NNG_SEND_STR(surv, "ONE");
+ TEST_NNG_RECV_STR(resp, "ONE");
+ TEST_NNG_SEND_STR(resp, "one");
+ testutil_sleep(100); // Make sure reply arrives!
+ TEST_NNG_SEND_STR(surv, "TWO");
+ TEST_NNG_RECV_STR(resp, "TWO");
+ TEST_NNG_SEND_STR(resp, "two");
+ TEST_NNG_RECV_STR(surv, "two");
+
+ TEST_NNG_PASS(nng_close(surv));
+ TEST_NNG_PASS(nng_close(resp));
+}
+
+static void
+test_surv_poll_writeable(void)
+{
+ int fd;
+ nng_socket surv;
+ nng_socket resp;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_respondent0_open(&resp));
+ TEST_NNG_PASS(nng_getopt_int(surv, NNG_OPT_SENDFD, &fd));
+ TEST_CHECK(fd >= 0);
+
+ // Survey is broadcast, so we can always write.
+ TEST_CHECK(testutil_pollfd(fd) == true);
+
+ TEST_NNG_PASS(testutil_marry(surv, resp));
+
+ // Now it's writable.
+ TEST_CHECK(testutil_pollfd(fd) == true);
+
+ TEST_NNG_PASS(nng_close(surv));
+ TEST_NNG_PASS(nng_close(resp));
+}
+
+void
+test_surv_poll_readable(void)
+{
+ int fd;
+ nng_socket surv;
+ nng_socket resp;
+ nng_msg * msg;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_respondent0_open(&resp));
+ TEST_NNG_PASS(nng_getopt_int(surv, NNG_OPT_RECVFD, &fd));
+ TEST_CHECK(fd >= 0);
+
+ // Not readable if not connected!
+ TEST_CHECK(testutil_pollfd(fd) == false);
+
+ // Even after connect (no message yet)
+ TEST_NNG_PASS(testutil_marry(surv, resp));
+ TEST_CHECK(testutil_pollfd(fd) == false);
+
+ // But once we send messages, it is.
+ // We have to send a request, in order to send a reply.
+
+ TEST_NNG_PASS(nng_msg_alloc(&msg, 0));
+ TEST_NNG_PASS(nng_msg_append(msg, "xyz", 3));
+ TEST_NNG_PASS(nng_sendmsg(surv, msg, 0));
+ TEST_NNG_PASS(nng_recvmsg(resp, &msg, 0)); // recv on rep
+ TEST_NNG_PASS(nng_sendmsg(resp, msg, 0)); // echo it back
+ testutil_sleep(200); // give time for message to arrive
+
+ TEST_CHECK(testutil_pollfd(fd) == true);
+
+ // and receiving makes it no longer ready
+ TEST_NNG_PASS(nng_recvmsg(surv, &msg, 0));
+ nng_msg_free(msg);
+ TEST_CHECK(testutil_pollfd(fd) == false);
+
+ // TODO verify unsolicited response
+
+ TEST_NNG_PASS(nng_close(surv));
+ TEST_NNG_PASS(nng_close(resp));
+}
+
+static void
+test_surv_ctx_no_poll(void)
+{
+ int fd;
+ nng_socket surv;
+ nng_ctx ctx;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_ctx_open(&ctx, surv));
+ TEST_NNG_FAIL(
+ nng_ctx_getopt_int(ctx, NNG_OPT_SENDFD, &fd), NNG_ENOTSUP);
+ TEST_NNG_FAIL(
+ nng_ctx_getopt_int(ctx, NNG_OPT_RECVFD, &fd), NNG_ENOTSUP);
+ TEST_NNG_PASS(nng_ctx_close(ctx));
+ TEST_NNG_PASS(nng_close(surv));
+}
+
+static void
+test_surv_ctx_recv_nonblock(void)
+{
+ nng_socket surv;
+ nng_socket resp;
+ nng_ctx ctx;
+ nng_aio * aio;
+ nng_msg * msg;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_respondent0_open(&resp));
+ TEST_NNG_PASS(nng_ctx_open(&ctx, surv));
+ TEST_NNG_PASS(nng_aio_alloc(&aio, NULL, NULL));
+ TEST_NNG_PASS(nng_msg_alloc(&msg, 0));
+
+ TEST_NNG_PASS(testutil_marry(surv, resp));
+
+ nng_aio_set_msg(aio, msg);
+ nng_ctx_send(ctx, aio);
+ nng_aio_wait(aio);
+ TEST_NNG_PASS(nng_aio_result(aio));
+ nng_aio_set_timeout(aio, 0); // Instant timeout
+ nng_ctx_recv(ctx, aio);
+
+ nng_aio_wait(aio);
+ TEST_NNG_FAIL(nng_aio_result(aio), NNG_ETIMEDOUT);
+ TEST_NNG_PASS(nng_close(surv));
+ TEST_NNG_PASS(nng_close(resp));
+ nng_aio_free(aio);
+}
+
+static void
+test_surv_ctx_send_nonblock(void)
+{
+ nng_socket surv;
+ nng_ctx ctx;
+ nng_aio * aio;
+ nng_msg * msg;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_ctx_open(&ctx, surv));
+ TEST_NNG_PASS(nng_aio_alloc(&aio, NULL, NULL));
+ TEST_NNG_PASS(nng_msg_alloc(&msg, 0));
+
+ nng_aio_set_msg(aio, msg);
+ nng_aio_set_timeout(aio, 0); // Instant timeout
+ nng_ctx_send(ctx, aio);
+ nng_aio_wait(aio);
+ TEST_NNG_PASS(nng_aio_result(aio)); // We never block
+ TEST_NNG_PASS(nng_close(surv));
+ nng_aio_free(aio);
+}
+
+static void
+test_surv_send_best_effort(void)
+{
+ nng_socket surv;
+ nng_socket resp;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_respondent0_open(&resp));
+ TEST_NNG_PASS(testutil_marry(surv, resp));
+
+ for (int i = 0; i < 200; i++) {
+ TEST_NNG_SEND_STR(surv, "junk");
+ }
+
+ TEST_NNG_PASS(nng_close(surv));
+ TEST_NNG_PASS(nng_close(resp));
+}
+
+static void
+test_surv_survey_timeout(void)
+{
+ nng_socket surv;
+ nng_socket resp;
+ char buf[16];
+ size_t sz;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_respondent0_open(&resp));
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_SURVEYOR_SURVEYTIME, 50));
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_RECVTIMEO, 100));
+
+ TEST_NNG_PASS(testutil_marry(surv, resp));
+
+ TEST_NNG_SEND_STR(surv, "hello");
+ TEST_NNG_RECV_STR(resp, "hello");
+
+ sz = sizeof(buf);
+ TEST_NNG_FAIL(nng_recv(surv, buf, &sz, 0), NNG_ETIMEDOUT);
+ TEST_NNG_SEND_STR(resp, "world");
+ TEST_NNG_FAIL(nng_recv(surv, buf, &sz, 0), NNG_ESTATE);
+
+ TEST_NNG_PASS(nng_close(surv));
+ TEST_NNG_PASS(nng_close(resp));
+}
+
+static void
+test_surv_ctx_recv_close_socket(void)
+{
+ nng_socket surv;
+ nng_socket resp;
+ nng_ctx ctx;
+ nng_aio * aio;
+ nng_msg * m;
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_respondent0_open(&resp));
+ TEST_NNG_PASS(nng_ctx_open(&ctx, surv));
+ TEST_NNG_PASS(nng_aio_alloc(&aio, NULL, NULL));
+ TEST_NNG_PASS(testutil_marry(surv, resp));
+ TEST_NNG_PASS(nng_msg_alloc(&m, 0));
+ nng_aio_set_msg(aio, m);
+ nng_ctx_send(ctx, aio);
+ nng_aio_wait(aio);
+ TEST_NNG_PASS(nng_aio_result(aio));
+
+ nng_ctx_recv(ctx, aio);
+ nng_close(surv);
+
+ TEST_NNG_FAIL(nng_aio_result(aio), NNG_ECLOSED);
+ nng_aio_free(aio);
+ TEST_NNG_PASS(nng_close(resp));
+}
+
+static void
+test_surv_context_multi(void)
+{
+ nng_socket surv;
+ nng_socket resp;
+ nng_ctx c[5];
+ nng_aio * aio;
+ nng_msg * m;
+ int cnt = sizeof(c) / sizeof(c[0]);
+
+ TEST_NNG_PASS(nng_surveyor0_open(&surv));
+ TEST_NNG_PASS(nng_respondent0_open(&resp));
+ TEST_NNG_PASS(testutil_marry(surv, resp));
+ TEST_NNG_PASS(nng_setopt_ms(surv, NNG_OPT_SURVEYOR_SURVEYTIME, 200));
+ TEST_NNG_PASS(nng_aio_alloc(&aio, NULL, NULL));
+
+ for (int i = 0; i < cnt; i++) {
+ TEST_NNG_PASS(nng_ctx_open(&c[i], surv));
+ }
+
+ for (int i = 0; i < cnt; i++) {
+ TEST_NNG_PASS(nng_msg_alloc(&m, 0));
+ TEST_NNG_PASS(nng_msg_append_u32(m, i));
+ nng_aio_set_msg(aio, m);
+ nng_ctx_send(c[i], aio);
+ nng_aio_wait(aio);
+ TEST_NNG_PASS(nng_aio_result(aio));
+ }
+
+ for (int i = 0; i < cnt; i++) {
+ TEST_NNG_PASS(nng_recvmsg(resp, &m, 0));
+ TEST_NNG_PASS(nng_sendmsg(resp, m, 0));
+ }
+
+ for (int i = cnt - 1; i >= 0; i--) {
+ uint32_t x;
+ nng_ctx_recv(c[i], aio);
+ nng_aio_wait(aio);
+ TEST_NNG_PASS(nng_aio_result(aio));
+ m = nng_aio_get_msg(aio);
+ TEST_ASSERT(m != NULL);
+ TEST_NNG_PASS(nng_msg_trim_u32(m, &x));
+ TEST_CHECK(x == (uint32_t)i);
+ nng_msg_free(m);
+ }
+
+ for (int i = 0; i < cnt; i++) {
+ nng_ctx_recv(c[i], aio);
+ nng_aio_wait(aio);
+ TEST_CHECK(nng_aio_result(aio) != 0);
+ }
+ for (int i = 0; i < cnt; i++) {
+ nng_ctx_close(c[i]);
+ }
+ TEST_NNG_PASS(nng_close(surv));
+ TEST_NNG_PASS(nng_close(resp));
+ nng_aio_free(aio);
+}
+
+static void
+test_surv_validate_peer(void)
+{
+ nng_socket s1, s2;
+ nng_stat * stats;
+ nng_stat * reject;
+ char addr[64];
+
+ testutil_scratch_addr("inproc", sizeof(addr), addr);
+
+ TEST_NNG_PASS(nng_surveyor0_open(&s1));
+ TEST_NNG_PASS(nng_surveyor0_open(&s2));
+
+ TEST_NNG_PASS(nng_listen(s1, addr, NULL, 0));
+ TEST_NNG_PASS(nng_dial(s2, addr, NULL, NNG_FLAG_NONBLOCK));
+
+ testutil_sleep(100);
+ TEST_NNG_PASS(nng_stats_get(&stats));
+
+ TEST_CHECK(stats != NULL);
+ TEST_CHECK((reject = nng_stat_find_socket(stats, s1)) != NULL);
+ TEST_CHECK((reject = nng_stat_find(reject, "reject")) != NULL);
+
+ TEST_CHECK(nng_stat_type(reject) == NNG_STAT_COUNTER);
+ TEST_CHECK(nng_stat_value(reject) > 0);
+
+ TEST_NNG_PASS(nng_close(s1));
+ TEST_NNG_PASS(nng_close(s2));
+ nng_stats_free(stats);
+}
+
+TEST_LIST = {
+ { "survey identity", test_surv_identity },
+ { "survey ttl option", test_surv_ttl_option },
+ { "survey survey time option", test_surv_survey_time_option },
+ { "survey recv bad state", test_surv_recv_bad_state },
+ { "survey recv garbage", test_surv_recv_garbage },
+ { "survey respondent exchange", test_surv_resp_exchange },
+ { "survey cancel", test_surv_cancel },
+ { "survey cancel abort recv", test_surv_cancel_abort_recv },
+ { "survey cancel post recv", test_surv_cancel_post_recv },
+ { "survey poll writable", test_surv_poll_writeable },
+ { "survey poll readable", test_surv_poll_readable },
+ { "survey context does not poll", test_surv_ctx_no_poll },
+ { "survey context recv close socket",
+ test_surv_ctx_recv_close_socket },
+ { "survey context recv nonblock", test_surv_ctx_recv_nonblock },
+ { "survey context send nonblock", test_surv_ctx_send_nonblock },
+ { "survey timeout", test_surv_survey_timeout },
+ { "survey send best effort", test_surv_send_best_effort },
+ { "survey context multi", test_surv_context_multi },
+ { "survey validate peer", test_surv_validate_peer },
+ { NULL, NULL },
+};