mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 08:46:58 +08:00
tests: added basic checks for URL escaping/unescaping
This commit is contained in:
@@ -66,6 +66,9 @@ kkdcp_parsing_LDADD = ../gl/libgnu.a $(LIBTALLOC_LIBS) ../src/ccan/libccan.a
|
||||
json_escape_SOURCES = json-escape.c
|
||||
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
|
||||
|
||||
ipv4_prefix_SOURCES = ipv4-prefix.c
|
||||
ipv4_prefix_LDADD = ../gl/libgnu.a $(LIBTALLOC_LIBS) ../src/ccan/libccan.a
|
||||
|
||||
@@ -91,7 +94,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
|
||||
port-parsing human_addr valid-hostname url-escape
|
||||
|
||||
|
||||
TESTS = $(dist_check_SCRIPTS) $(check_PROGRAMS)
|
||||
|
||||
65
tests/url-escape.c
Normal file
65
tests/url-escape.c
Normal file
@@ -0,0 +1,65 @@
|
||||
/*
|
||||
* 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[] =
|
||||
{
|
||||
"Laguna%20Beach",
|
||||
"%20",
|
||||
"Laguna%25%2B%40Beach"
|
||||
};
|
||||
|
||||
static char *decoded_strings[] =
|
||||
{
|
||||
"Laguna Beach",
|
||||
" ",
|
||||
"Laguna%+@Beach"
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
char *dec, *url;
|
||||
unsigned i;
|
||||
unsigned len;
|
||||
|
||||
for (i=0;i<sizeof(strings)/sizeof(strings[0]);i++) {
|
||||
dec = unescape_url(NULL, strings[i], strlen(strings[i]), &len);
|
||||
if (strcmp(dec, decoded_strings[i]) != 0) {
|
||||
fprintf(stderr, "string %d, fails decoding:\n\tinput: '%s'\n\toutput: '%s'\n", i, decoded_strings[i], dec);
|
||||
exit(1);
|
||||
}
|
||||
talloc_free(dec);
|
||||
|
||||
url = escape_url(NULL, decoded_strings[i], strlen(decoded_strings[i]), &len);
|
||||
if (strcmp(url, strings[i]) != 0) {
|
||||
fprintf(stderr, "string %d, fails encoding:\n\tinput: '%s'\n\toutput: '%s'\n", i, decoded_strings[i], url);
|
||||
exit(1);
|
||||
}
|
||||
talloc_free(url);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user