// // Copyright 2019 Staysail Systems, Inc. // // 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. // #ifndef TESTUTIL_H #define TESTUTIL_H #include #include // The following headers are provided for test code convenience. #include #ifdef __cplusplus extern "C" { #endif // testutil_clock returns the current time in milliseconds. // The reference clock may be any point in the past (typically since // the program started running.) extern uint64_t testutil_clock(void); // testutil_pollfd tests if the given file descriptor polls as readable. extern bool testutil_pollfd(int); // testutil_htons is just htons portably. extern uint16_t testutil_htons(uint16_t); // testutil_htonl is just htonl portably. extern uint32_t testutil_htonl(uint32_t); // testutil_sleep sleeps the specified number of msec extern void testutil_sleep(int); // testutil_next_port returns a new port number (presumably unique) extern uint16_t testutil_next_port(void); // testutil_scratch_addr makes a scratch address for the given scheme. // The address buffer must be supplied, and the size should be at least // 64 bytes to ensure no truncation occurs. extern void testutil_scratch_addr(const char *, size_t, char *); // testutil_marry connects two sockets using inproc. It uses socket // pipe hooks to ensure that it does not return before both sockets // are fully connected. extern int testutil_marry(nng_socket, nng_socket); // TEST_NNG_PASS tests for NNG success. It reports the failure if it // did not. #define TEST_NNG_PASS(cond) \ do { \ int result_ = (cond); \ TEST_CHECK_(result_ == 0, "%s succeeds", #cond); \ TEST_MSG("%s: expected success, got %s (%d)", #cond, \ nng_strerror(result_), result_); \ } while (0) #define TEST_NNG_FAIL(cond, expect) \ do { \ int result_ = (cond); \ TEST_CHECK_(result_ == expect, "%s fails with %s", #cond, \ nng_strerror(expect)); \ TEST_MSG("%s: expected %s (%d), got %s (%d)", #cond, \ nng_strerror(expect), expect, nng_strerror(result_), \ result_); \ } while (0) #define TEST_NNG_SEND_STR(sock, string) \ TEST_NNG_PASS(nng_send(sock, string, strlen(string) + 1, 0)) #define TEST_NNG_RECV_STR(sock, string) \ do { \ char * buf_; \ size_t sz_; \ int rv_ = nng_recv(sock, &buf_, &sz_, NNG_FLAG_ALLOC); \ TEST_CHECK_( \ rv_ == 0, "nng_recv (%d %s)", rv_, nng_strerror(rv_)); \ TEST_CHECK(sz_ == strlen(string) + 1); \ TEST_CHECK(strcmp(string, buf_) == 0); \ nng_free(buf_, sz_); \ } while (0) #ifdef __cplusplus }; #endif #endif // TESTUTIL_H