X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/7affb40735592998dc047f216b48f9b771e4df1a..7bdf42d0ac1f501bbb32e1ea3f502f7355865cb5:/libtests/t-cgi.c?ds=sidebyside diff --git a/libtests/t-cgi.c b/libtests/t-cgi.c index de44fcb..109a38a 100644 --- a/libtests/t-cgi.c +++ b/libtests/t-cgi.c @@ -2,20 +2,18 @@ * This file is part of DisOrder. * Copyright (C) 2008 Richard Kettlewell * - * This program is free software; you can redistribute it and/or modify + * 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 + * the Free Software Foundation, either version 3 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. - * + * + * 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, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA + * along with this program. If not, see . */ #include "test.h" #include "cgi.h" @@ -37,7 +35,6 @@ static void input_from(const char *s) { } static void test_cgi(void) { - struct dynstr d[1]; setenv("REQUEST_METHOD", "GET", 1); setenv("QUERY_STRING", "foo=bar&a=b+c&c=x%7ey", 1); @@ -114,27 +111,6 @@ static void test_cgi(void) { check_string(cgi_sgmlquote("\"&\""), ""&""); check_string(cgi_sgmlquote("\xC2\xA3"), "£"); - dynstr_init(d); - cgi_opentag(sink_dynstr(d), "element", - "foo", "bar", - "foo", "has space", - "foo", "has \"quotes\"", - (char *)NULL); - dynstr_terminate(d); - check_string(d->vec, ""); - - dynstr_init(d); - cgi_opentag(sink_dynstr(d), "element", - "foo", (char *)NULL, - (char *)NULL); - dynstr_terminate(d); - check_string(d->vec, ""); - - dynstr_init(d); - cgi_closetag(sink_dynstr(d), "element"); - dynstr_terminate(d); - check_string(d->vec, ""); - check_string(cgi_makeurl("http://example.com/", (char *)NULL), "http://example.com/"); check_string(cgi_makeurl("http://example.com/",