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
|
// SPDX-License-Identifier: MIT
/*
* Behavior Correctness Test for HX_strquote
*/
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <libHX/string.h>
static const char input1[] = "\"Good\" ol' \\'escaped\\' strings";
static const char output1a[] = "\"Good\" ol\\' \\\\\\'escaped\\\\\\' strings";
static const char output1b[] = "\\\"Good\\\" ol' \\\\'escaped\\\\' strings";
static const char output1c[] = "\"Good\" ol'' \\''escaped\\'' strings";
static const char input2[] = "<p style=\"height: 1;\">Foo & \"bar\"</p>";
static const char output2[] =
"<p style="height: 1;">Foo &amp; "bar"</p>";
static const char input3[] = " #o=foo(*),ba\\r ";
static const char output3a[] = " #o=foo\\28\\2A\\29,ba\\5Cr ";
static const char output3b[] = "\\20\\23o\\3Dfoo(*)\\2Cba\\5Cr\\20";
static const char output3c[] = "ICNvPWZvbygqKSxiYVxyIA==";
static const char input4[] = "http://user:pass@host.de/~path/file(msvc);stuff.php?query[phpindex]=value&another=one;stuff";
static const char output4[] = "http%3A%2F%2Fuser%3Apass%40host.de%2F~path%2Ffile%28msvc%29%3Bstuff.php%3Fquery%5Bphpindex%5D%3Dvalue%26another%3Done%3Bstuff";
static const char input5[] = "echo hello `echo world`";
static const char output5[] = "echo hello ``echo world``";
static const char input6[] = "\xfb\xef\xff";
static const char output6[] = "++//";
static const char input7[] = "\xfb\xef\xff";
static const char output7[] = "--__";
static int test(const char *input, unsigned int mode, const char *expect)
{
char *output = HX_strquote(input, mode, NULL);
if (output == NULL) {
fprintf(stderr, "HX_strquote returned NULL\n");
return EXIT_FAILURE;
}
if (strcmp(output, expect) != 0) {
fprintf(stderr, "Input: %s\nOutput: %s\nExpected: %s\n",
input, output, expect);
free(output);
return EXIT_FAILURE;
}
free(output);
return EXIT_SUCCESS;
}
int main(void)
{
#define tst(a, b, c) \
do { \
int ret = test((a), (b), (c)); \
if (ret != EXIT_SUCCESS) \
return ret; \
} while (false);
if (HX_strquote(input1, ~0U, NULL) != NULL)
return EXIT_FAILURE;
tst(input1, HXQUOTE_SQUOTE, output1a);
tst(input1, HXQUOTE_DQUOTE, output1b);
tst(input1, HXQUOTE_SQLSQUOTE, output1c);
tst(input2, HXQUOTE_HTML, output2);
tst(input3, HXQUOTE_LDAPFLT, output3a);
tst(input3, HXQUOTE_LDAPRDN, output3b);
tst(input3, HXQUOTE_BASE64, output3c);
tst(input4, HXQUOTE_URIENC, output4);
tst(input5, HXQUOTE_SQLBQUOTE, output5);
tst(input6, HXQUOTE_BASE64, output6);
tst(input7, HXQUOTE_BASE64URL, output7);
return 0;
#undef tst
}
|