xref: /netbsd-src/external/bsd/ntp/dist/sntp/libevent/test/test-eof.c (revision 32d1c65c71fbdb65a012e8392a62a757dd6853e9)
1 /*	$NetBSD: test-eof.c,v 1.6 2024/08/18 20:47:23 christos Exp $	*/
2 
3 /*
4  * Copyright (c) 2002-2007 Niels Provos <provos@citi.umich.edu>
5  * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 #include "../util-internal.h"
30 #include "event2/event-config.h"
31 
32 #ifdef _WIN32
33 #include <winsock2.h>
34 #else
35 #include <unistd.h>
36 #endif
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #ifdef EVENT__HAVE_SYS_TIME_H
40 #include <sys/time.h>
41 #endif
42 #ifdef EVENT__HAVE_SYS_SOCKET_H
43 #include <sys/socket.h>
44 #endif
45 #include <fcntl.h>
46 #include <stdlib.h>
47 #include <stdio.h>
48 #include <string.h>
49 #include <errno.h>
50 
51 #include <event.h>
52 #include <evutil.h>
53 
54 int test_okay = 1;
55 int called = 0;
56 struct timeval timeout = {60, 0};
57 
58 static void
59 read_cb(evutil_socket_t fd, short event, void *arg)
60 {
61 	char buf[256];
62 	int len;
63 
64 	if (EV_TIMEOUT & event) {
65 		printf("%s: Timeout!\n", __func__);
66 		exit(1);
67 	}
68 
69 	len = recv(fd, buf, sizeof(buf), 0);
70 
71 	printf("%s: read %d%s\n", __func__,
72 	    len, len ? "" : " - means EOF");
73 
74 	if (len) {
75 		if (!called)
76 			event_add(arg, &timeout);
77 	} else if (called == 1)
78 		test_okay = 0;
79 
80 	called++;
81 }
82 
83 int
84 main(int argc, char **argv)
85 {
86 	struct event ev;
87 	const char *test = "test string";
88 	evutil_socket_t pair[2];
89 
90 #ifdef _WIN32
91 	WORD wVersionRequested;
92 	WSADATA wsaData;
93 
94 	wVersionRequested = MAKEWORD(2, 2);
95 
96 	(void) WSAStartup(wVersionRequested, &wsaData);
97 #endif
98 
99 	if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
100 		return (1);
101 
102 
103 	if (send(pair[0], test, (int)strlen(test)+1, 0) < 0)
104 		return (1);
105 	shutdown(pair[0], EVUTIL_SHUT_WR);
106 
107 	/* Initialize the event library */
108 	event_init();
109 
110 	/* Initialize one event */
111 	event_set(&ev, pair[1], EV_READ | EV_TIMEOUT, read_cb, &ev);
112 
113 	event_add(&ev, &timeout);
114 
115 	event_dispatch();
116 
117 	return (test_okay);
118 }
119 
120