summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2008-09-12 14:52:33 +0200
committerPaolo Bonzini <bonzini@gnu.org>2008-09-12 15:05:20 +0200
commitf9f61e25aee8cf75e4cf084c66e82993dbf35c47 (patch)
treee9a63cec051d27462b30ad0069450ea6bc36524c
parent314fcbb7de94709b92edf1b68f62ca6aed8d4dbc (diff)
downloadgnulib-f9f61e25aee8cf75e4cf084c66e82993dbf35c47.tar.gz
add a minimal testsuite for the poll module
2008-09-12 Paolo Bonzini <bonzini@gnu.org> * modules/poll-tests: New. * tests/test-poll.c: New.
-rw-r--r--ChangeLog5
-rw-r--r--modules/poll-tests15
-rw-r--r--tests/test-poll.c372
3 files changed, 392 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 414b8e403f..4575ca9d42 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-09-12 Paolo Bonzini <bonzini@gnu.org>
+
+ * modules/poll-tests: New.
+ * tests/test-poll.c: New.
+
2008-09-12 Eric Blake <ebb9@byu.net>
frexp: test for NetBSD failure on -0.0
diff --git a/modules/poll-tests b/modules/poll-tests
new file mode 100644
index 0000000000..1484aaa363
--- /dev/null
+++ b/modules/poll-tests
@@ -0,0 +1,15 @@
+Files:
+tests/test-poll.c
+
+Depends-on:
+sys_socket
+netinet_in
+arpa_inet
+extensions
+
+configure.ac:
+AC_CHECK_HEADERS_ONCE([io.h unistd.h sys/wait.h])
+
+Makefile.am:
+TESTS += test-poll
+check_PROGRAMS += test-poll
diff --git a/tests/test-poll.c b/tests/test-poll.c
new file mode 100644
index 0000000000..cacb3a238f
--- /dev/null
+++ b/tests/test-poll.c
@@ -0,0 +1,372 @@
+/* Test of poll() function.
+ Copyright (C) 2008 Free Software Foundation, Inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3, or (at your option)
+ any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+
+/* Written by Paolo Bonzini. */
+
+#include <config.h>
+
+#include <stdio.h>
+#include <string.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include <poll.h>
+#include <fcntl.h>
+#include <stdlib.h>
+#include <errno.h>
+
+#ifdef HAVE_IO_H
+#include <io.h>
+#endif
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+#ifdef HAVE_SYS_WAIT_H
+#include <sys/wait.h>
+#endif
+
+enum { FALSE, TRUE };
+
+#ifndef SO_REUSEPORT
+#define SO_REUSEPORT SO_REUSEADDR
+#endif
+
+#define TEST_PORT 12345
+
+
+/* Minimal testing infrastructure. */
+
+static int failures;
+
+static void
+failed (const char *reason)
+{
+ if (++failures > 1)
+ printf (" ");
+ printf ("failed (%s)\n", reason);
+}
+
+static int
+test (void (*fn) (void), const char *msg)
+{
+ failures = 0;
+ printf ("%s... ", msg);
+ fflush (stdout);
+ fn ();
+
+ if (!failures)
+ printf ("passed\n");
+
+ return failures;
+}
+
+
+/* Funny socket code. */
+
+static int
+open_server_socket ()
+{
+ int s, x;
+ struct sockaddr_in ia;
+
+ s = socket (AF_INET, SOCK_STREAM, 0);
+
+ memset (&ia, 0, sizeof (ia));
+ ia.sin_family = AF_INET;
+ inet_aton ("127.0.0.1", &ia.sin_addr);
+ ia.sin_port = htons (TEST_PORT);
+ if (bind (s, (struct sockaddr *) &ia, sizeof (ia)) < 0)
+ {
+ perror ("bind");
+ exit (77);
+ }
+
+ x = 1;
+ setsockopt (s, SOL_SOCKET, SO_REUSEPORT, &x, sizeof (x));
+
+ if (listen (s, 1) < 0)
+ {
+ perror ("listen");
+ exit (77);
+ }
+
+ return s;
+}
+
+static int
+connect_to_socket (int blocking)
+{
+ int s;
+ struct sockaddr_in ia;
+
+ s = socket (AF_INET, SOCK_STREAM, 0);
+
+ memset (&ia, 0, sizeof (ia));
+ ia.sin_family = AF_INET;
+ inet_aton ("127.0.0.1", &ia.sin_addr);
+ ia.sin_port = htons (TEST_PORT);
+
+ if (!blocking)
+ {
+#ifdef __MSVCRT__
+ unsigned long iMode = 1;
+ ioctl (s, FIONBIO, &iMode);
+
+#elif defined F_GETFL
+ int oldflags = fcntl (s, F_GETFL, NULL);
+
+ if (!(oldflags & O_NONBLOCK))
+ fcntl (s, F_SETFL, oldflags | O_NONBLOCK);
+#endif
+ }
+
+ if (connect (s, (struct sockaddr *) &ia, sizeof (ia)) < 0)
+ {
+ if (errno != EINPROGRESS)
+ {
+ perror ("connect");
+ exit (77);
+ }
+ }
+ else if (!blocking)
+ failed ("huh, connect succeeded?");
+
+ return s;
+}
+
+
+/* A slightly more convenient interface to poll(2). */
+
+static int
+poll1 (int fd, int ev, int time)
+{
+ struct pollfd pfd;
+ int r;
+
+ pfd.fd = fd;
+ pfd.events = ev;
+ pfd.revents = 0;
+ r = poll (&pfd, 1, time);
+ if (r < 0)
+ return r;
+
+ if (pfd.revents & ~(POLLHUP | POLLERR | POLLNVAL | ev))
+ failed ("invalid flag combination (unrequested events)");
+
+ return pfd.revents;
+}
+
+static int
+poll1_nowait (int fd, int ev)
+{
+ return poll1 (fd, ev, 0);
+}
+
+static int
+poll1_wait (int fd, int ev)
+{
+ return poll1 (fd, ev, -1);
+}
+
+
+/* Test poll(2) for TTYs. */
+
+#ifdef INTERACTIVE
+static void
+test_tty (void)
+{
+ if (poll1_nowait (0, POLLIN | POLLRDNORM) != 0)
+ failed ("can read");
+ if (poll1_nowait (0, POLLOUT) == 0)
+ failed ("cannot write");
+
+ if (poll1_wait (0, POLLIN | POLLRDNORM) == 0)
+ failed ("return with infinite timeout");
+
+ getchar ();
+ if (poll1_nowait (0, POLLIN | POLLRDNORM) != 0)
+ failed ("can read after getc");
+}
+#endif
+
+
+/* Test poll(2) for unconnected nonblocking sockets. */
+
+static void
+test_connect_first (void)
+{
+ int s = open_server_socket ();
+ struct sockaddr_in ia;
+ socklen_t addrlen;
+
+ int c1, c2;
+
+ if (poll1_nowait (s, POLLIN | POLLRDNORM | POLLRDBAND) != 0)
+ failed ("can read, socket not connected");
+
+ c1 = connect_to_socket (FALSE);
+
+ if (poll1_wait (s, POLLIN | POLLRDNORM | POLLRDBAND) != (POLLIN | POLLRDNORM))
+ failed ("expecting POLLIN | POLLRDNORM on passive socket");
+ if (poll1_nowait (s, POLLIN | POLLRDBAND) != POLLIN)
+ failed ("expecting POLLIN on passive socket");
+ if (poll1_nowait (s, POLLRDNORM | POLLRDBAND) != POLLRDNORM)
+ failed ("expecting POLLRDNORM on passive socket");
+
+ addrlen = sizeof (ia);
+ c2 = accept (s, (struct sockaddr *) &ia, &addrlen);
+ close (s);
+ close (c1);
+ close (c2);
+}
+
+
+/* Test poll(2) for unconnected blocking sockets. */
+
+static void
+test_accept_first (void)
+{
+#ifndef __MSVCRT__
+ int s = open_server_socket ();
+ struct sockaddr_in ia;
+ socklen_t addrlen;
+ char buf[3];
+ int c, pid;
+
+ pid = fork ();
+ if (pid < 0)
+ return;
+
+ if (pid == 0)
+ {
+ addrlen = sizeof (ia);
+ c = accept (s, (struct sockaddr *) &ia, &addrlen);
+ close (s);
+ write (c, "foo", 3);
+ read (c, buf, 3);
+ shutdown (c, SHUT_RD);
+ close (c);
+ exit (0);
+ }
+ else
+ {
+ close (s);
+ c = connect_to_socket (TRUE);
+ if (poll1_nowait (c, POLLOUT | POLLWRNORM | POLLRDBAND)
+ != (POLLOUT | POLLWRNORM))
+ failed ("cannot write after blocking connect");
+ write (c, "foo", 3);
+ wait (&pid);
+ if (poll1_wait (c, POLLIN) != POLLIN)
+ failed ("cannot read data left in the socket by closed process");
+ read (c, buf, 3);
+ write (c, "foo", 3);
+ if ((poll1_wait (c, POLLIN | POLLOUT) & (POLLHUP | POLLERR)) == 0)
+ failed ("expecting POLLHUP after shutdown");
+ close (c);
+ }
+#endif
+}
+
+
+/* Common code for pipes and connected sockets. */
+
+static void
+test_pair (int rd, int wd)
+{
+ char buf[3];
+ if (poll1_wait (wd, POLLIN | POLLRDNORM | POLLOUT | POLLWRNORM | POLLRDBAND)
+ != (POLLOUT | POLLWRNORM))
+ failed ("expecting POLLOUT | POLLWRNORM before writing");
+ if (poll1_nowait (wd, POLLIN | POLLRDNORM | POLLOUT | POLLRDBAND) != POLLOUT)
+ failed ("expecting POLLOUT before writing");
+ if (poll1_nowait (wd, POLLIN | POLLRDNORM | POLLWRNORM | POLLRDBAND)
+ != POLLWRNORM)
+ failed ("expecting POLLWRNORM before writing");
+
+ write (wd, "foo", 3);
+ if (poll1_wait (rd, POLLIN | POLLRDNORM) != (POLLIN | POLLRDNORM))
+ failed ("expecting POLLIN | POLLRDNORM after writing");
+ if (poll1_nowait (rd, POLLIN) != POLLIN)
+ failed ("expecting POLLIN after writing");
+ if (poll1_nowait (rd, POLLRDNORM) != POLLRDNORM)
+ failed ("expecting POLLRDNORM after writing");
+
+ read (rd, buf, 3);
+}
+
+
+/* Test poll(2) on connected sockets. */
+
+static void
+test_socket_pair (void)
+{
+ struct sockaddr_in ia;
+
+ socklen_t addrlen = sizeof (ia);
+ int s = open_server_socket ();
+ int c1 = connect_to_socket (FALSE);
+ int c2 = accept (s, (struct sockaddr *) &ia, &addrlen);
+
+ close (s);
+
+ test_pair (c1, c2);
+ close (c1);
+ write (c2, "foo", 3);
+ if ((poll1_nowait (c2, POLLIN | POLLOUT) & (POLLHUP | POLLERR)) == 0)
+ failed ("expecting POLLHUP after shutdown");
+
+ close (c2);
+}
+
+
+/* Test poll(2) on pipes. */
+
+static void
+test_pipe (void)
+{
+ int fd[2];
+
+ pipe (fd);
+ test_pair (fd[0], fd[1]);
+ close (fd[0]);
+ if ((poll1_wait (fd[1], POLLIN | POLLOUT) & (POLLHUP | POLLERR)) == 0)
+ failed ("expecting POLLHUP after shutdown");
+
+ close (fd[1]);
+}
+
+
+/* Do them all. */
+
+int
+main ()
+{
+ int result;
+
+#ifdef INTERACTIVE
+ printf ("Please press Enter\n");
+ test (test_tty, "TTY");
+#endif
+
+ result = test (test_connect_first, "Unconnected socket test");
+ result += test (test_socket_pair, "Connected sockets test");
+ result += test (test_accept_first, "General socket test with fork");
+ result += test (test_pipe, "Pipe test");
+
+ exit (result);
+}