/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Copyright (C) 2007 Red Hat, Inc. */ #include "test-utils.h" #include "soup-misc.h" static char *base_uri; typedef struct { SoupServer *server; SoupMessage *msg; GSource *timeout; } SlowData; static void request_finished (SoupMessage *msg, gpointer data) { SlowData *sd = data; g_source_destroy (sd->timeout); g_source_unref (sd->timeout); g_free (sd); } static gboolean add_body_chunk (gpointer data) { SlowData *sd = data; soup_message_body_append (sd->msg->response_body, SOUP_MEMORY_STATIC, "OK\r\n", 4); soup_message_body_complete (sd->msg->response_body); soup_server_unpause_message (sd->server, sd->msg); g_object_unref (sd->msg); return FALSE; } static void server_callback (SoupServer *server, SoupMessage *msg, const char *path, GHashTable *query, SoupClientContext *context, gpointer data) { SlowData *sd; if (msg->method != SOUP_METHOD_GET) { soup_message_set_status (msg, SOUP_STATUS_NOT_IMPLEMENTED); return; } soup_message_set_status (msg, SOUP_STATUS_OK); if (!strcmp (path, "/fast")) { soup_message_set_response (msg, "text/plain", SOUP_MEMORY_STATIC, "OK\r\n", 4); return; } soup_message_headers_set_encoding (msg->response_headers, SOUP_ENCODING_CHUNKED); g_object_ref (msg); soup_server_pause_message (server, msg); sd = g_new (SlowData, 1); sd->server = server; sd->msg = msg; sd->timeout = soup_add_timeout ( g_main_context_get_thread_default (), 200, add_body_chunk, sd); g_source_ref (sd->timeout); g_signal_connect (msg, "finished", G_CALLBACK (request_finished), sd); } /* Test 1: An async session in another thread with its own * async_context can complete a request while the main thread's main * loop is stopped. */ static gboolean idle_start_test1_thread (gpointer loop); static gpointer test1_thread (gpointer user_data); static GCond test1_cond; static GMutex test1_mutex; static GMainLoop *test1_loop; static void do_test1 (void) { test1_loop = g_main_loop_new (NULL, FALSE); g_idle_add (idle_start_test1_thread, NULL); g_main_loop_run (test1_loop); g_main_loop_unref (test1_loop); } static gboolean idle_start_test1_thread (gpointer user_data) { guint64 time; GThread *thread; g_mutex_lock (&test1_mutex); thread = g_thread_new ("test1_thread", test1_thread, NULL); time = g_get_monotonic_time () + 5000000; if (g_cond_wait_until (&test1_cond, &test1_mutex, time)) g_thread_join (thread); else { soup_test_assert (FALSE, "timeout"); g_thread_unref (thread); } g_mutex_unlock (&test1_mutex); g_main_loop_quit (test1_loop); return FALSE; } static void test1_finished (SoupMessage *msg, GMainLoop *loop) { g_main_loop_quit (loop); } static gpointer test1_thread (gpointer user_data) { SoupSession *session; GMainContext *async_context; char *uri; SoupMessage *msg; GInputStream *stream; GMainLoop *loop; /* Wait for main thread to be waiting on test1_cond */ g_mutex_lock (&test1_mutex); g_mutex_unlock (&test1_mutex); async_context = g_main_context_new (); g_main_context_push_thread_default (async_context); session = soup_test_session_new (SOUP_TYPE_SESSION, NULL); g_main_context_unref (async_context); uri = g_build_filename (base_uri, "slow", NULL); debug_printf (1, " send_message\n"); msg = soup_message_new ("GET", uri); stream = soup_session_send (session, msg, NULL, NULL); soup_test_assert_message_status (msg, SOUP_STATUS_OK); g_object_unref (stream); g_object_unref (msg); debug_printf (1, " queue_message\n"); msg = soup_message_new ("GET", uri); loop = g_main_loop_new (async_context, FALSE); g_signal_connect (msg, "finished", G_CALLBACK (test1_finished), loop); soup_session_send_async (session, msg, NULL, NULL, NULL); g_main_loop_run (loop); /* We need one more iteration, because SoupMessage::finished is emitted * right before the message is unqueued. */ g_main_context_iteration (async_context, TRUE); g_main_loop_unref (loop); soup_test_assert_message_status (msg, SOUP_STATUS_OK); g_object_unref (msg); soup_test_session_abort_unref (session); g_free (uri); g_cond_signal (&test1_cond); g_main_context_pop_thread_default (async_context); return NULL; } /* Test 2: An async session in the main thread with its own * async_context runs independently of the default main loop. */ static gboolean idle_test2_fail (gpointer user_data); static void do_test2 (void) { guint idle; GMainContext *async_context; SoupSession *session; char *uri; SoupMessage *msg; idle = g_idle_add_full (G_PRIORITY_HIGH, idle_test2_fail, NULL, NULL); async_context = g_main_context_new (); g_main_context_push_thread_default (async_context); session = soup_test_session_new (SOUP_TYPE_SESSION, NULL); g_main_context_unref (async_context); uri = g_build_filename (base_uri, "slow", NULL); debug_printf (1, " send_message\n"); msg = soup_message_new ("GET", uri); soup_session_send_message (session, msg); soup_test_assert_message_status (msg, SOUP_STATUS_OK); g_object_unref (msg); soup_test_session_abort_unref (session); g_free (uri); g_source_remove (idle); g_main_context_pop_thread_default (async_context); } static gboolean idle_test2_fail (gpointer user_data) { soup_test_assert (FALSE, "idle ran"); return FALSE; } static void request_started (SoupMessage *msg, gpointer user_data) { g_object_set_data (G_OBJECT (msg), "started", GUINT_TO_POINTER (TRUE)); } static void msg1_got_headers (SoupMessage *msg, gpointer user_data) { GMainLoop *loop = user_data; g_main_loop_quit (loop); } static void multi_msg_finished (SoupSession *session, SoupMessage *msg, gpointer user_data) { GMainLoop *loop = user_data; g_object_set_data (G_OBJECT (msg), "finished", GUINT_TO_POINTER (TRUE)); g_main_loop_quit (loop); } static void do_multicontext_test (void) { SoupSession *session; SoupMessage *msg1, *msg2; GMainContext *context1, *context2; GMainLoop *loop1, *loop2; session = soup_test_session_new (SOUP_TYPE_SESSION, NULL); context1 = g_main_context_new (); loop1 = g_main_loop_new (context1, FALSE); context2 = g_main_context_new (); loop2 = g_main_loop_new (context2, FALSE); g_main_context_push_thread_default (context1); msg1 = soup_message_new ("GET", base_uri); g_object_ref (msg1); g_signal_connect (msg1, "starting", G_CALLBACK (request_started), NULL); soup_session_queue_message (session, msg1, multi_msg_finished, loop1); g_signal_connect (msg1, "got-headers", G_CALLBACK (msg1_got_headers), loop1); g_object_set_data (G_OBJECT (msg1), "session", session); g_main_context_pop_thread_default (context1); g_main_context_push_thread_default (context2); msg2 = soup_message_new ("GET", base_uri); g_object_ref (msg2); g_signal_connect (msg2, "starting", G_CALLBACK (request_started), NULL); soup_session_queue_message (session, msg2, multi_msg_finished, loop2); g_main_context_pop_thread_default (context2); g_main_context_push_thread_default (context1); g_main_loop_run (loop1); g_main_context_pop_thread_default (context1); if (!g_object_get_data (G_OBJECT (msg1), "started")) soup_test_assert (FALSE, "msg1 not started"); if (g_object_get_data (G_OBJECT (msg2), "started")) soup_test_assert (FALSE, "msg2 started while loop1 was running"); g_main_context_push_thread_default (context2); g_main_loop_run (loop2); g_main_context_pop_thread_default (context2); if (g_object_get_data (G_OBJECT (msg1), "finished")) soup_test_assert (FALSE, "msg1 finished while loop2 was running"); if (!g_object_get_data (G_OBJECT (msg2), "finished")) soup_test_assert (FALSE, "msg2 not finished"); g_main_context_push_thread_default (context1); g_main_loop_run (loop1); g_main_context_pop_thread_default (context1); if (!g_object_get_data (G_OBJECT (msg1), "finished")) soup_test_assert (FALSE, "msg1 not finished"); g_object_unref (msg1); g_object_unref (msg2); soup_test_session_abort_unref (session); g_main_loop_unref (loop1); g_main_loop_unref (loop2); g_main_context_unref (context1); g_main_context_unref (context2); } int main (int argc, char **argv) { SoupServer *server; SoupURI *uri; int ret; test_init (argc, argv, NULL); server = soup_test_server_new (SOUP_TEST_SERVER_IN_THREAD); soup_server_add_handler (server, NULL, server_callback, NULL, NULL); uri = soup_test_server_get_uri (server, "http", NULL); base_uri = soup_uri_to_string (uri, FALSE); soup_uri_free (uri); g_test_add_func ("/context/blocking/thread-default", do_test1); g_test_add_func ("/context/nested/thread-default", do_test2); g_test_add_func ("/context/multiple", do_multicontext_test); ret = g_test_run (); g_free (base_uri); soup_test_server_quit_unref (server); test_cleanup (); return ret; }