]> git.ipfire.org Git - thirdparty/glibc.git/blame - inet/tst-network.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / inet / tst-network.c
CommitLineData
a1d84548 1/* Test for inet_network.
04277e02 2 Copyright (C) 2000-2019 Free Software Foundation, Inc.
a1d84548
UD
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
41bdb6e2
AJ
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.
a1d84548
UD
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
41bdb6e2 14 Lesser General Public License for more details.
a1d84548 15
41bdb6e2 16 You should have received a copy of the GNU Lesser General Public
59ba27a6 17 License along with the GNU C Library; if not, see
5a82c748 18 <https://www.gnu.org/licenses/>. */
a1d84548
UD
19
20#include <stdio.h>
e054f494 21#include <stdint.h>
a1d84548
UD
22#include <sys/socket.h>
23#include <netinet/in.h>
24#include <arpa/inet.h>
25
26struct
27{
28 const char *network;
29 uint32_t number;
30} tests [] =
31{
32 {"1.0.0.0", 0x1000000},
33 {"1.0.0", 0x10000},
34 {"1.0", 0x100},
35 {"1", 0x1},
36 {"192.168.0.0", 0xC0A80000},
874aa523
UD
37 {"0", 0},
38 {"0x0", 0},
a1d84548 39 /* Now some invalid addresses. */
874aa523 40 {"0x", INADDR_NONE},
264aad1e 41 {"1 bar", INADDR_NONE}, /* Bug 15277. */
a1d84548
UD
42 {"141.30.225.2800", INADDR_NONE},
43 {"141.76.1.1.1", INADDR_NONE},
44 {"141.76.1.11.", INADDR_NONE},
45 {"1410", INADDR_NONE},
46 {"1.1410", INADDR_NONE},
47 {"1.1410.", INADDR_NONE},
48 {"1.1410", INADDR_NONE},
49 {"141.76.1111", INADDR_NONE},
50 {"141.76.1111.", INADDR_NONE}
51};
52
53
29955b5d
AS
54static int
55do_test (void)
a1d84548
UD
56{
57 int errors = 0;
57b36a0a 58 size_t i;
a1d84548
UD
59 uint32_t res;
60
61 for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i)
62 {
63 printf ("Testing: %s\n", tests[i].network);
64 res = inet_network (tests[i].network);
65
66 if (res != tests[i].number)
67 {
def514c2 68 ++errors;
a1d84548
UD
69 printf ("Test failed for inet_network (\"%s\"):\n",
70 tests[i].network);
71 printf ("Expected return value %u (0x%x) but got %u (0x%x).\n",
72 tests[i].number, tests[i].number, res, res);
73 }
74
75 }
76
77 return errors != 0;
78}
29955b5d
AS
79
80#define TEST_FUNCTION do_test ()
81#include "../test-skeleton.c"