test-getaddrinfo: skip (don't fail) this test when there's no network
[pspp] / tests / test-getaddrinfo.c
1 /* Test the getaddrinfo module.
2
3    Copyright (C) 2006-2009 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* Written by Simon Josefsson.  */
19
20 #include <config.h>
21 #include <netdb.h>
22 #include <arpa/inet.h>
23 #include <netinet/in.h>
24 #include <stdio.h>
25 #include <string.h>
26
27 /* Whether to print debugging messages.  */
28 #define ENABLE_DEBUGGING 0
29
30 #if ENABLE_DEBUGGING
31 # define dbgprintf printf
32 #else
33 # define dbgprintf if (0) printf
34 #endif
35
36 /* BeOS does not have AF_UNSPEC.  */
37 #ifndef AF_UNSPEC
38 # define AF_UNSPEC 0
39 #endif
40
41 #ifndef EAI_SERVICE
42 # define EAI_SERVICE 0
43 #endif
44
45 int simple (char *host, char *service)
46 {
47   char buf[BUFSIZ];
48   struct addrinfo hints;
49   struct addrinfo *ai0, *ai;
50   int res;
51
52   dbgprintf ("Finding %s service %s...\n", host, service);
53
54   /* This initializes "hints" but does not use it.  Is there a reason
55      for this?  If so, please fix this comment.  */
56   memset (&hints, 0, sizeof (hints));
57   hints.ai_flags = AI_CANONNAME;
58   hints.ai_family = AF_UNSPEC;
59   hints.ai_socktype = SOCK_STREAM;
60
61   res = getaddrinfo (host, service, 0, &ai0);
62
63   dbgprintf ("res %d: %s\n", res, gai_strerror (res));
64
65   if (res != 0)
66     {
67       /* EAI_AGAIN is returned if no network is available. Don't fail
68          the test merely because someone is down the country on their
69          in-law's farm. */
70       if (res == EAI_AGAIN)
71         {
72           fprintf (stderr, "skipping getaddrinfo test: no network?\n");
73           return 77;
74         }
75       /* IRIX reports EAI_NONAME for "https".  Don't fail the test
76          merely because of this.  */
77       if (res == EAI_NONAME)
78         return 0;
79       /* Solaris reports EAI_SERVICE for "http" and "https".  Don't
80          fail the test merely because of this.  */
81       if (res == EAI_SERVICE)
82         return 0;
83       /* AIX reports EAI_NODATA for "https".  Don't fail the test
84          merely because of this.  */
85       if (res == EAI_NODATA)
86         return 0;
87
88       return 1;
89     }
90
91   for (ai = ai0; ai; ai = ai->ai_next)
92     {
93       dbgprintf ("\tflags %x\n", ai->ai_flags);
94       dbgprintf ("\tfamily %x\n", ai->ai_family);
95       dbgprintf ("\tsocktype %x\n", ai->ai_socktype);
96       dbgprintf ("\tprotocol %x\n", ai->ai_protocol);
97       dbgprintf ("\taddrlen %ld: ", (unsigned long) ai->ai_addrlen);
98       dbgprintf ("\tFound %s\n",
99                  inet_ntop (ai->ai_family,
100                             &((struct sockaddr_in *)
101                               ai->ai_addr)->sin_addr,
102                             buf, sizeof (buf) - 1));
103       if (ai->ai_canonname)
104         dbgprintf ("\tFound %s...\n", ai->ai_canonname);
105
106       {
107         char ipbuf[BUFSIZ];
108         char portbuf[BUFSIZ];
109
110         res = getnameinfo (ai->ai_addr, ai->ai_addrlen,
111                            ipbuf, sizeof (ipbuf) - 1,
112                            portbuf, sizeof (portbuf) - 1,
113                            NI_NUMERICHOST|NI_NUMERICSERV);
114         dbgprintf ("\t\tgetnameinfo %d: %s\n", res, gai_strerror (res));
115         if (res == 0)
116           {
117             dbgprintf ("\t\tip %s\n", ipbuf);
118             dbgprintf ("\t\tport %s\n", portbuf);
119           }
120       }
121
122     }
123
124   freeaddrinfo (ai0);
125
126   return 0;
127 }
128
129 #define HOST1 "www.gnu.org"
130 #define SERV1 "http"
131 #define HOST2 "www.ibm.com"
132 #define SERV2 "https"
133 #define HOST3 "microsoft.com"
134 #define SERV3 "http"
135 #define HOST4 "google.org"
136 #define SERV4 "ldap"
137
138 int main (void)
139 {
140 #if _WIN32
141   {
142     WORD requested;
143     WSADATA data;
144     int err;
145
146     requested = MAKEWORD (1, 1);
147     err = WSAStartup (requested, &data);
148     if (err != 0)
149       return 1;
150
151     if (data.wVersion < requested)
152       {
153         WSACleanup ();
154         return 2;
155       }
156   }
157 #endif
158
159   return simple (HOST1, SERV1)
160     + simple (HOST2, SERV2)
161     + simple (HOST3, SERV3)
162     + simple (HOST4, SERV4);
163 }