1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* $OpenBSD: test_hpdelim.c,v 1.2 2022/02/06 22:58:33 dtucker Exp $ */
/*
* Regress test for misc hpdelim() and co
*
* Placed in the public domain.
*/
#include "includes.h"
#include <sys/types.h>
#include <stdio.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <stdlib.h>
#include <string.h>
#include "../test_helper/test_helper.h"
#include "log.h"
#include "misc.h"
#include "xmalloc.h"
void test_hpdelim(void);
void
test_hpdelim(void)
{
char *orig, *str, *cp, *port;
#define START_STRING(x) orig = str = xstrdup(x)
#define DONE_STRING() free(orig)
TEST_START("hpdelim host only");
START_STRING("host");
cp = hpdelim(&str);
ASSERT_STRING_EQ(cp, "host");
ASSERT_PTR_EQ(str, NULL);
DONE_STRING();
TEST_DONE();
TEST_START("hpdelim :port");
START_STRING(":1234");
cp = hpdelim(&str);
ASSERT_STRING_EQ(cp, "");
ASSERT_PTR_NE(str, NULL);
port = hpdelim(&str);
ASSERT_STRING_EQ(port, "1234");
ASSERT_PTR_EQ(str, NULL);
DONE_STRING();
TEST_DONE();
TEST_START("hpdelim host:port");
START_STRING("host:1234");
cp = hpdelim(&str);
ASSERT_STRING_EQ(cp, "host");
ASSERT_PTR_NE(str, NULL);
port = hpdelim(&str);
ASSERT_STRING_EQ(port, "1234");
ASSERT_PTR_EQ(str, NULL);
DONE_STRING();
TEST_DONE();
TEST_START("hpdelim [host]:port");
START_STRING("[::1]:1234");
cp = hpdelim(&str);
ASSERT_STRING_EQ(cp, "[::1]");
ASSERT_PTR_NE(str, NULL);
port = hpdelim(&str);
ASSERT_STRING_EQ(port, "1234");
ASSERT_PTR_EQ(str, NULL);
DONE_STRING();
TEST_DONE();
TEST_START("hpdelim missing ] error");
START_STRING("[::1:1234");
cp = hpdelim(&str);
ASSERT_PTR_EQ(cp, NULL);
DONE_STRING();
TEST_DONE();
}
|