commit 5ba4b7709fc13ee3bbcb65083afa456be6fe3c7e
parent 299fdcd226842fee254b13b4ae5a098836e5130a
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Wed, 22 Jun 2022 20:50:49 +0300
test_digestauth{._with_arguments}: do test really with arguments
Diffstat:
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/testcurl/test_digestauth.c b/src/testcurl/test_digestauth.c
@@ -216,7 +216,7 @@ _checkCURLE_OK_func (CURLcode code, const char *curlFunc,
/* Could be increased to facilitate debugging */
#define TIMEOUTS_VAL 5
-#define MHD_URI_BASE_PATH "/bar%20foo%3Fkey%3Dvalue"
+#define MHD_URI_BASE_PATH "/bar%20foo?key=value"
#define PAGE \
"<html><head><title>libmicrohttpd demo</title></head><body>Access granted</body></html>"
diff --git a/src/testcurl/test_digestauth_with_arguments.c b/src/testcurl/test_digestauth_with_arguments.c
@@ -234,7 +234,8 @@ testDigestAuth ()
}
snprintf (url,
sizeof (url),
- "http://127.0.0.1:%d/bar%%20foo%%3Fkey%%3Dvalue",
+ "http://127.0.0.1:%d/bar%%20foo?"
+ "key=value&more=even%%20more&empty&=no_key&&same=one&&same=two",
port);
c = curl_easy_init ();
curl_easy_setopt (c, CURLOPT_URL, url);