/src/libc/sys/socket/recvmsg_test.cc
https://github.com/NuxiNL/cloudlibc · C++ · 88 lines · 64 code · 13 blank · 11 comment · 3 complexity · 440d4e963a4723fc0f1120f0e0a7f3d7 MD5 · raw file
- // Copyright (c) 2015-2017 Nuxi, https://nuxi.nl/
- //
- // SPDX-License-Identifier: BSD-2-Clause
- #include <sys/socket.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <pthread.h>
- #include <unistd.h>
- #include "gtest/gtest.h"
- #include "src/gtest_with_tmpdir/gtest_with_tmpdir.h"
- TEST(recvmsg, bad) {
- int fd_tmp = gtest_with_tmpdir::CreateTemporaryDirectory();
- // Bad file descriptor.
- char b;
- struct iovec biov = {.iov_base = &b, .iov_len = 1};
- struct msghdr message = {
- .msg_iov = &biov,
- .msg_iovlen = 1,
- };
- ASSERT_EQ(-1, recvmsg(-1, &message, 0));
- ASSERT_EQ(EBADF, errno);
- // Not a socket.
- {
- ASSERT_EQ(-1, recvmsg(fd_tmp, &message, 0));
- ASSERT_EQ(ENOTSOCK, errno);
- }
- {
- // Blocking recvmsg() on non-blocking file descriptor.
- int fds[2];
- ASSERT_EQ(0, socketpair(AF_UNIX, SOCK_STREAM, 0, fds));
- ASSERT_EQ(0, fcntl(fds[0], F_SETFL, O_NONBLOCK));
- ASSERT_EQ(-1, recvmsg(fds[0], &message, 0));
- ASSERT_TRUE(errno == EAGAIN || errno == EWOULDBLOCK);
- // Bad flags.
- ASSERT_EQ(-1, recvmsg(fds[0], &message, 0xdeadc0de));
- ASSERT_EQ(EOPNOTSUPP, errno);
- ASSERT_EQ(0, close(fds[0]));
- ASSERT_EQ(0, close(fds[1]));
- }
- }
- TEST(recvmsg, msg_trunc) {
- // Prepare a socket with a five-byte message.
- int fds[2];
- ASSERT_EQ(0, socketpair(AF_UNIX, SOCK_DGRAM, 0, fds));
- ASSERT_EQ(5, send(fds[0], "Hello", 5, 0));
- // Four-byte read should return a truncated message with MSG_TRUNC set.
- {
- char buf[5];
- struct iovec iov = {.iov_base = buf, .iov_len = sizeof(buf) - 1};
- struct msghdr msg = {
- .msg_iov = &iov,
- .msg_iovlen = 1,
- };
- ASSERT_EQ(4, recvmsg(fds[1], &msg, MSG_PEEK));
- buf[4] = '\0';
- ASSERT_STREQ("Hell", buf);
- ASSERT_EQ(MSG_TRUNC, msg.msg_flags);
- }
- // Five-byte read should return the entire message with MSG_TRUNC clear.
- {
- char buf[6];
- struct iovec iov = {.iov_base = buf, .iov_len = sizeof(buf) - 1};
- struct msghdr msg = {
- .msg_iov = &iov,
- .msg_iovlen = 1,
- };
- ASSERT_EQ(5, recvmsg(fds[1], &msg, 0));
- buf[5] = '\0';
- ASSERT_STREQ("Hello", buf);
- ASSERT_EQ(0, msg.msg_flags);
- }
- ASSERT_EQ(0, close(fds[0]));
- ASSERT_EQ(0, close(fds[1]));
- }
- // TODO(ed): Add more tests.