[libsoup] http2-test: add a sync variant of large test
- From: Carlos Garcia Campos <carlosgc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libsoup] http2-test: add a sync variant of large test
- Date: Fri, 21 May 2021 05:44:53 +0000 (UTC)
commit 2b61f6135c0dd366cc2c0e50ce3965fa1da4a03c
Author: Carlos Garcia Campos <cgarcia igalia com>
Date: Fri May 21 07:43:50 2021 +0200
http2-test: add a sync variant of large test
tests/http2-test.c | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
---
diff --git a/tests/http2-test.c b/tests/http2-test.c
index e483b679..dc0a5538 100644
--- a/tests/http2-test.c
+++ b/tests/http2-test.c
@@ -85,20 +85,25 @@ do_no_content_async_test (Test *test, gconstpointer data)
}
static void
-do_large_async_test (Test *test, gconstpointer data)
+do_large_test (Test *test, gconstpointer data)
{
- test->msg = soup_message_new (SOUP_METHOD_GET, "https://127.0.0.1:5000/large");
+ gboolean async = GPOINTER_TO_INT (data);
+ SoupMessage *msg = soup_message_new (SOUP_METHOD_GET, "https://127.0.0.1:5000/large");
+ GBytes *response;
GError *error = NULL;
/* This is both large and read in chunks */
- GBytes *response = soup_test_session_async_send (test->session, test->msg, NULL, &error);
+ if (async)
+ response = soup_test_session_async_send (test->session, msg, NULL, &error);
+ else
+ response = soup_session_send_and_read (test->session, msg, NULL, &error);
g_assert_no_error (error);
/* Size hardcoded to match http2-server.py's response */
g_assert_cmpuint (g_bytes_get_size (response), ==, (1024 * 24) + 1);
g_bytes_unref (response);
- g_object_unref (test->msg);
+ g_object_unref (msg);
}
static GBytes *
@@ -626,9 +631,13 @@ main (int argc, char **argv)
setup_session,
do_no_content_async_test,
teardown_session);
- g_test_add ("/http2/large/async", Test, NULL,
+ g_test_add ("/http2/large/async", Test, GINT_TO_POINTER (FALSE),
+ setup_session,
+ do_large_test,
+ teardown_session);
+ g_test_add ("/http2/large/sync", Test, GINT_TO_POINTER (TRUE),
setup_session,
- do_large_async_test,
+ do_large_test,
teardown_session);
g_test_add ("/http2/multiplexing/async", Test, NULL,
setup_session,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]