X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/7affb40735592998dc047f216b48f9b771e4df1a..ad0c0f361be0:/libtests/t-cgi.c
diff --git a/libtests/t-cgi.c b/libtests/t-cgi.c
index de44fcb..f621495 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"
@@ -28,7 +26,7 @@ static void input_from(const char *s) {
|| fputs("wibble wibble\r\nspong", fp) < 0 /* ensure CONTENT_LENGTH
* honored */
|| fflush(fp) < 0)
- fatal(errno, "writing to temporary file");
+ disorder_fatal(errno, "writing to temporary file");
rewind(fp);
xdup2(fileno(fp), 0);
lseek(0, 0/*offset*/, SEEK_SET);
@@ -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/",