summaryrefslogtreecommitdiff
path: root/tests/header-parsing-test.c
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2020-08-31 17:24:21 -0500
committerPatrick Griffis <pgriffis@igalia.com>2020-09-19 15:41:25 -0700
commit4b43e158799689666bcbe186045ddee356601f1c (patch)
tree7034aeb51657f2326ce1d7de3876a974b76fb711 /tests/header-parsing-test.c
parent73cd3c7dc4207cacf5eb4311584201bf7133ff0f (diff)
downloadlibsoup-4b43e158799689666bcbe186045ddee356601f1c.tar.gz
Replace SoupBuffer with GBytes
Diffstat (limited to 'tests/header-parsing-test.c')
-rw-r--r--tests/header-parsing-test.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/header-parsing-test.c b/tests/header-parsing-test.c
index 31edfd02..40b5fd37 100644
--- a/tests/header-parsing-test.c
+++ b/tests/header-parsing-test.c
@@ -1040,7 +1040,7 @@ do_content_disposition_tests (void)
GHashTable *params;
const char *header, *filename;
char *disposition;
- SoupBuffer *buffer;
+ GBytes *buffer;
SoupMultipart *multipart;
SoupMessageBody *body;
@@ -1106,10 +1106,10 @@ do_content_disposition_tests (void)
/* Ensure that soup-multipart always quotes filename */
g_test_bug ("641280");
multipart = soup_multipart_new (SOUP_FORM_MIME_TYPE_MULTIPART);
- buffer = soup_buffer_new (SOUP_MEMORY_STATIC, "foo", 3);
+ buffer = g_bytes_new_static ("foo", 3);
soup_multipart_append_form_file (multipart, "test", "token",
"text/plain", buffer);
- soup_buffer_free (buffer);
+ g_bytes_unref (buffer);
hdrs = soup_message_headers_new (SOUP_MESSAGE_HEADERS_MULTIPART);
body = soup_message_body_new ();
@@ -1120,9 +1120,9 @@ do_content_disposition_tests (void)
buffer = soup_message_body_flatten (body);
soup_message_body_free (body);
- g_assert_true (strstr (buffer->data, "filename=\"token\""));
+ g_assert_nonnull (strstr (g_bytes_get_data (buffer, NULL), "filename=\"token\""));
- soup_buffer_free (buffer);
+ g_bytes_unref (buffer);
}
#define CONTENT_TYPE_TEST_MIME_TYPE "text/plain"