mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 00:37:00 +08:00
tests: added basic checks for HTML escaping/unescaping
This commit is contained in:
@@ -69,6 +69,9 @@ json_escape_LDADD = ../gl/libgnu.a $(LIBTALLOC_LIBS) ../src/ccan/libccan.a
|
||||
url_escape_SOURCES = url-escape.c
|
||||
url_escape_LDADD = ../gl/libgnu.a $(LIBTALLOC_LIBS) ../src/ccan/libccan.a
|
||||
|
||||
html_escape_SOURCES = html-escape.c
|
||||
html_escape_LDADD = ../gl/libgnu.a $(LIBTALLOC_LIBS) ../src/ccan/libccan.a
|
||||
|
||||
ipv4_prefix_SOURCES = ipv4-prefix.c
|
||||
ipv4_prefix_LDADD = ../gl/libgnu.a $(LIBTALLOC_LIBS) ../src/ccan/libccan.a
|
||||
|
||||
@@ -94,7 +97,7 @@ valid_hostname_LDADD = ../gl/libgnu.a
|
||||
port_parsing_LDADD = ../gl/libgnu.a $(LIBTALLOC_LIBS) ../src/ccan/libccan.a
|
||||
|
||||
check_PROGRAMS = str-test str-test2 ipv4-prefix ipv6-prefix kkdcp-parsing json-escape ban-ips \
|
||||
port-parsing human_addr valid-hostname url-escape
|
||||
port-parsing human_addr valid-hostname url-escape html-escape
|
||||
|
||||
|
||||
TESTS = $(dist_check_SCRIPTS) $(check_PROGRAMS)
|
||||
|
||||
72
tests/html-escape.c
Normal file
72
tests/html-escape.c
Normal file
@@ -0,0 +1,72 @@
|
||||
/*
|
||||
* Copyright (C) 2016 Nikos Mavrogiannopoulos
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netdb.h>
|
||||
#include "../src/html.h"
|
||||
#include "../src/html.c"
|
||||
|
||||
static char *strings[] =
|
||||
{
|
||||
"hello there",
|
||||
"hi bro\n",
|
||||
"small ascii\x10\x01\x03\x04\x18\x20\x21\x1f end",
|
||||
"try to escape \"quotes",
|
||||
"try to escape \\escapes",
|
||||
"\tbig pile \b\b of stuff\r\n",
|
||||
"<hi there>",
|
||||
"\"hi there\""
|
||||
};
|
||||
|
||||
static char *encoded_strings[] =
|
||||
{
|
||||
"hello there",
|
||||
"hi bro
",
|
||||
"small ascii ! end",
|
||||
"try to escape "quotes",
|
||||
"try to escape \\escapes",
|
||||
"	big pile  of stuff
",
|
||||
"<hi there>",
|
||||
""hi there""
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
char *dec;
|
||||
unsigned i;
|
||||
unsigned len;
|
||||
|
||||
for (i=0;i<sizeof(encoded_strings)/sizeof(encoded_strings[0]);i++) {
|
||||
dec = unescape_html(NULL, encoded_strings[i], strlen(encoded_strings[i]), &len);
|
||||
if (dec == NULL) {
|
||||
fprintf(stderr, "failed to unescape %s\n", encoded_strings[i]);
|
||||
exit(1);
|
||||
}
|
||||
if (strcmp(dec, strings[i]) != 0) {
|
||||
fprintf(stderr, "string %d, fails decoding:\n\tinput: '%s'\n\toutput: '%s'\n", i, strings[i], dec);
|
||||
exit(1);
|
||||
}
|
||||
talloc_free(dec);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user