From 088f2d9c1940e9bf1828cc1c899b4c63a41be768 Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Mon, 21 Oct 2013 22:19:54 +0000 Subject: [PATCH] add inet_pton (and inet_ntop) functional tests --- src/functional/inet_pton.c | 88 ++++++++++++++++++++++ src/regression/inet_pton-invalid-address.c | 14 ---- 2 files changed, 88 insertions(+), 14 deletions(-) create mode 100644 src/functional/inet_pton.c delete mode 100644 src/regression/inet_pton-invalid-address.c diff --git a/src/functional/inet_pton.c b/src/functional/inet_pton.c new file mode 100644 index 0000000..d220118 --- /dev/null +++ b/src/functional/inet_pton.c @@ -0,0 +1,88 @@ +// inet_pton and inet_ntop tests with roundtrip check +#include +#include +#include +#include "test.h" + +static int digit(int c) +{ + c-='0'; + if (c>9) c-='a'-'0'-10; + return c; +} + +static void tobin(char *d, char *s) +{ + int i; + for (i=0; s[2*i]; i++) d[i] = digit(s[2*i])*16+digit(s[2*i+1]); +} + +static void tohex(char *d, char *s, int n) +{ + int i; + for (i=0; i, buf, size) did not return buf\n"); \ + if (af==AF_INET && strcmp(txtaddr,src)) \ + t_error("inet_ntop("#af", <"#hex">, buf, size) got %s, want %s\n", txtaddr, src); \ + if (af!=AF_INET6) break; \ + if (inet_pton(af,txtaddr,binaddr)!=1) \ + t_error("inet_ntop("#af", <"#hex">, buf, size) got %s, it is rejected by inet_pton\n", txtaddr); \ + tohex(hexaddr,binaddr,16); \ + if (strcmp(hexaddr,hex)) \ + t_error("inet_ntop("#af", <"#hex">, buf, size) got %s that is %s, want %s\n", txtaddr, hexaddr, hex); \ + if (strncmp(hex,"00000000000000000000ffff",24)==0 && !strchr(txtaddr,'.')) \ + t_error("inet_ntop("#af", <"#hex">, buf, size) got %s, should be ipv4 mapped\n", txtaddr); \ +}while(0); + +int main(void) +{ +T(AF_INET+AF_INET6, "0.0.0.0", -1, "") +T(AF_INET, "0.0.0.0", 1, "00000000") +T(AF_INET, "127.0.0.1", 1, "7f000001") +T(AF_INET, "255.255.255.255", 1, "ffffffff") +T(AF_INET, "1.2.3.", 0, "") +T(AF_INET, "1.2.3.4.5", 0, "") +T(AF_INET, ".1.2.3", 0, "") +T(AF_INET, "1.2.03.4", 0, "") +T(AF_INET, "1.2.3.a", 0, "") +T(AF_INET, "1.256.2.3", 0, "") +T(AF_INET, "1.2.4294967296.3", 0, "") +T(AF_INET, "1.2.-4294967295.3", 0, "") +T(AF_INET, "1.2. 3.4", 0, "") +T(AF_INET6, ":", 0, "") +T(AF_INET6, "::", 1, "00000000000000000000000000000000") +T(AF_INET6, "::1", 1, "00000000000000000000000000000001") +T(AF_INET6, ":::", 0, "") +T(AF_INET6, "192.168.1.1", 0, "") +T(AF_INET6, ":192.168.1.1", 0, "") +T(AF_INET6, "::192.168.1.1", 1, "000000000000000000000000c0a80101") +T(AF_INET6, ":ffff:192.168.1.1", 0, "") +T(AF_INET6, "::ffff:192.168.1.1", 1, "00000000000000000000ffffc0a80101") +T(AF_INET6, ".192.168.1.1", 0, "") +T(AF_INET6, ":.192.168.1.1", 0, "") +T(AF_INET6, "a:0b:00c:000d:0000e:f::", 1, "000a000b000c000d000e000f00000000") +T(AF_INET6, "ffff:c0a8:5e4", 0, "") +T(AF_INET6, ":ffff:c0a8:5e4", 0, "") +T(AF_INET6, "0:0:0:0:0:ffff:c0a8:5e4", 1, "00000000000000000000ffffc0a805e4") +T(AF_INET6, "0:0:0:0:ffff:c0a8:5e4", 0, "") +T(AF_INET6, "0::ffff:c0a8:5e4", 1, "00000000000000000000ffffc0a805e4") +T(AF_INET6, "::0::ffff:c0a8:5e4", 0, "") +T(AF_INET6, "c0a8", 0, "") +return t_status; +} diff --git a/src/regression/inet_pton-invalid-address.c b/src/regression/inet_pton-invalid-address.c deleted file mode 100644 index 7f181f4..0000000 --- a/src/regression/inet_pton-invalid-address.c +++ /dev/null @@ -1,14 +0,0 @@ -// inet_pton should return 0 on invalid address format -#include -#include -#include "test.h" - -int main(void) -{ - int r; - char addr[16]; - - if ((r=inet_pton(AF_INET6, "192.168.1.1", addr)) != 0) - t_error("inet_pton(AF_INET6, \"192.168.1.1\", addr) should return 0, got %d\n", r); - return t_status; -} -- 2.20.1