lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 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, write to the Free |
| 18 | Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
| 19 | 02111-1307 USA. */ |
| 20 | |
| 21 | #include <stdio.h> |
| 22 | #include <sys/socket.h> |
| 23 | #include <netinet/in.h> |
| 24 | #include <arpa/inet.h> |
| 25 | |
| 26 | struct |
| 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}, |
| 37 | /* Now some invalid addresses. */ |
| 38 | {"141.30.225.2800", INADDR_NONE}, |
| 39 | {"141.76.1.1.1", INADDR_NONE}, |
| 40 | {"141.76.1.11.", INADDR_NONE}, |
| 41 | {"1410", INADDR_NONE}, |
| 42 | {"1.1410", INADDR_NONE}, |
| 43 | {"1.1410.", INADDR_NONE}, |
| 44 | {"1.1410", INADDR_NONE}, |
| 45 | {"141.76.1111", INADDR_NONE}, |
| 46 | {"141.76.1111.", INADDR_NONE}, |
| 47 | {"1.1.1.257", INADDR_NONE}, |
| 48 | /* Now some from BSD */ |
| 49 | {"0x12", 0x00000012}, |
| 50 | {"127.1", 0x00007f01}, |
| 51 | {"127.1.2.3", 0x7f010203}, |
| 52 | {"0x123456", INADDR_NONE}, |
| 53 | {"0x12.0x34", 0x00001234}, |
| 54 | {"0x12.0x345", INADDR_NONE}, |
| 55 | {"1.2.3.4.5", INADDR_NONE}, |
| 56 | {"1..3.4", INADDR_NONE}, |
| 57 | {".", INADDR_NONE}, |
| 58 | {"1.", INADDR_NONE}, |
| 59 | {".1", INADDR_NONE}, |
| 60 | {"x", INADDR_NONE}, |
| 61 | {"0x", INADDR_NONE}, |
| 62 | {"0", 0x00000000}, |
| 63 | {"0x0", 0x00000000}, |
| 64 | {"01.02.07.077", 0x0102073f}, |
| 65 | {"0x1.23.045.0", 0x01172500}, |
| 66 | {"", INADDR_NONE}, |
| 67 | {" ", INADDR_NONE}, |
| 68 | {"bar", INADDR_NONE}, |
| 69 | {"1.2bar", INADDR_NONE}, |
| 70 | {"1.", INADDR_NONE}, |
| 71 | {"ÊÃÕËÅÎ", INADDR_NONE}, |
| 72 | {"255.255.255.255", INADDR_NONE}, |
| 73 | {"x", INADDR_NONE}, |
| 74 | {"0X12", 0x00000012}, |
| 75 | {"078", INADDR_NONE}, |
| 76 | {"1 bar", INADDR_NONE}, |
| 77 | {"127.0xfff", INADDR_NONE}, |
| 78 | }; |
| 79 | |
| 80 | |
| 81 | int |
| 82 | main (void) |
| 83 | { |
| 84 | int errors = 0; |
| 85 | size_t i; |
| 86 | uint32_t res; |
| 87 | |
| 88 | for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i) |
| 89 | { |
| 90 | printf ("Testing: %s\n", tests[i].network); |
| 91 | res = inet_network (tests[i].network); |
| 92 | |
| 93 | if (res != tests[i].number) |
| 94 | { |
| 95 | ++errors; |
| 96 | printf ("Test failed for inet_network (\"%s\"):\n", |
| 97 | tests[i].network); |
| 98 | printf ("Expected return value %u (0x%x) but got %u (0x%x).\n", |
| 99 | tests[i].number, tests[i].number, res, res); |
| 100 | } |
| 101 | |
| 102 | } |
| 103 | |
| 104 | return errors != 0; |
| 105 | } |