OSDN Git Service

Replace FSF snail mail address with URLs
[uclinux-h8/uClibc.git] / test / inet / tst-network.c
1 /* Test for inet_network.
2    Copyright (C) 2000, 2002 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Andreas Jaeger <aj@suse.de>, 2000.
5
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
10
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, see
18    <http://www.gnu.org/licenses/>.  */
19
20 #include <stdio.h>
21 #include <sys/socket.h>
22 #include <netinet/in.h>
23 #include <arpa/inet.h>
24
25 struct
26 {
27   const char *network;
28   uint32_t number;
29 } tests [] =
30 {
31   {"1.0.0.0", 0x1000000},
32   {"1.0.0", 0x10000},
33   {"1.0", 0x100},
34   {"1", 0x1},
35   {"192.168.0.0", 0xC0A80000},
36   /* Now some invalid addresses.  */
37   {"141.30.225.2800", INADDR_NONE},
38   {"141.76.1.1.1", INADDR_NONE},
39   {"141.76.1.11.", INADDR_NONE},
40   {"1410", INADDR_NONE},
41   {"1.1410", INADDR_NONE},
42   {"1.1410.", INADDR_NONE},
43   {"1.1410", INADDR_NONE},
44   {"141.76.1111", INADDR_NONE},
45   {"141.76.1111.", INADDR_NONE},
46   {"1.1.1.257", INADDR_NONE},
47   /* Now some from BSD */
48   {"0x12", 0x00000012},
49   {"127.1", 0x00007f01},
50   {"127.1.2.3", 0x7f010203},
51   {"0x123456", INADDR_NONE},
52   {"0x12.0x34", 0x00001234},
53   {"0x12.0x345", INADDR_NONE},
54   {"1.2.3.4.5", INADDR_NONE},
55   {"1..3.4", INADDR_NONE},
56   {".", INADDR_NONE},
57   {"1.", INADDR_NONE},
58   {".1", INADDR_NONE},
59   {"x", INADDR_NONE},
60   {"0x", INADDR_NONE},
61   {"0", 0x00000000},
62   {"0x0", 0x00000000},
63   {"01.02.07.077", 0x0102073f},
64   {"0x1.23.045.0", 0x01172500},
65   {"", INADDR_NONE},
66   {" ", INADDR_NONE},
67   {"bar", INADDR_NONE},
68   {"1.2bar", INADDR_NONE},
69   {"1.", INADDR_NONE},
70   {"ÊÃÕËÅÎ", INADDR_NONE},
71   {"255.255.255.255", INADDR_NONE},
72   {"x", INADDR_NONE},
73   {"0X12", 0x00000012},
74   {"078", INADDR_NONE},
75   {"1 bar", INADDR_NONE},
76   {"127.0xfff", INADDR_NONE},
77 };
78
79
80 int
81 main (void)
82 {
83   int errors = 0;
84   size_t i;
85   uint32_t res;
86
87   for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i)
88     {
89       printf ("Testing: %s\n", tests[i].network);
90       res = inet_network (tests[i].network);
91
92       if (res != tests[i].number)
93         {
94           ++errors;
95           printf ("Test failed for inet_network (\"%s\"):\n",
96                   tests[i].network);
97           printf ("Expected return value %u (0x%x) but got %u (0x%x).\n",
98                   tests[i].number, tests[i].number, res, res);
99         }
100
101     }
102
103   return errors != 0;
104 }