/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Copyright (C) 2008 Red Hat, Inc. */ #include "test-utils.h" SoupURI *base_uri; char *server2_uri; SoupSession *async_session, *sync_session; typedef struct { const char *method; const char *path; guint status_code; gboolean repeat; } TestRequest; typedef struct { TestRequest requests[3]; guint final_status; const char *bugref; } TestCase; static TestCase tests[] = { /* A redirecty response to a GET or HEAD should cause a redirect */ { { { "GET", "/301", 301 }, { "GET", "/", 200 }, { NULL } }, 200, NULL }, { { { "GET", "/302", 302 }, { "GET", "/", 200 }, { NULL } }, 200, NULL }, { { { "GET", "/303", 303 }, { "GET", "/", 200 }, { NULL } }, 200, NULL }, { { { "GET", "/307", 307 }, { "GET", "/", 200 }, { NULL } }, 200, NULL }, { { { "HEAD", "/301", 301 }, { "HEAD", "/", 200 }, { NULL } }, 200, "551190" }, { { { "HEAD", "/302", 302 }, { "HEAD", "/", 200 }, { NULL } }, 200, "551190" }, /* 303 is a nonsensical response to HEAD, but some sites do * it anyway. :-/ */ { { { "HEAD", "/303", 303 }, { "HEAD", "/", 200 }, { NULL } }, 200, "600830" }, { { { "HEAD", "/307", 307 }, { "HEAD", "/", 200 }, { NULL } }, 200, "551190" }, /* A non-redirecty response to a GET or HEAD should not */ { { { "GET", "/300", 300 }, { NULL } }, 300, NULL }, { { { "GET", "/304", 304 }, { NULL } }, 304, NULL }, { { { "GET", "/305", 305 }, { NULL } }, 305, NULL }, { { { "GET", "/306", 306 }, { NULL } }, 306, NULL }, { { { "GET", "/308", 308 }, { NULL } }, 308, NULL }, { { { "HEAD", "/300", 300 }, { NULL } }, 300, "551190" }, { { { "HEAD", "/304", 304 }, { NULL } }, 304, "551190" }, { { { "HEAD", "/305", 305 }, { NULL } }, 305, "551190" }, { { { "HEAD", "/306", 306 }, { NULL } }, 306, "551190" }, { { { "HEAD", "/308", 308 }, { NULL } }, 308, "551190" }, /* Test double-redirect */ { { { "GET", "/301/302", 301 }, { "GET", "/302", 302 }, { "GET", "/", 200 } }, 200, NULL }, { { { "HEAD", "/301/302", 301 }, { "HEAD", "/302", 302 }, { "HEAD", "/", 200 } }, 200, "551190" }, /* POST should only automatically redirect on 301, 302 and 303 */ { { { "POST", "/301", 301 }, { "GET", "/", 200 }, { NULL } }, 200, "586692" }, { { { "POST", "/302", 302 }, { "GET", "/", 200 }, { NULL } }, 200, NULL }, { { { "POST", "/303", 303 }, { "GET", "/", 200 }, { NULL } }, 200, NULL }, { { { "POST", "/307", 307 }, { NULL } }, 307, NULL }, /* Test behavior with recoverably-bad Location header */ { { { "GET", "/bad", 302 }, { "GET", "/bad%20with%20spaces", 200 }, { NULL } }, 200, "566530" }, /* Test behavior with irrecoverably-bad Location header */ { { { "GET", "/bad-no-host", 302 }, { NULL } }, SOUP_STATUS_MALFORMED, "528882" }, /* Test infinite redirection */ { { { "GET", "/bad-recursive", 302, TRUE }, { NULL } }, SOUP_STATUS_TOO_MANY_REDIRECTS, "604383" }, /* Test redirection to a different server */ { { { "GET", "/server2", 302 }, { "GET", "/on-server2", 200 }, { NULL } }, 200, NULL }, }; static const int n_tests = G_N_ELEMENTS (tests); static void got_headers (SoupMessage *msg, gpointer user_data) { TestRequest **treq = user_data; const char *location; debug_printf (2, " -> %d %s\n", msg->status_code, msg->reason_phrase); location = soup_message_headers_get_one (msg->response_headers, "Location"); if (location) debug_printf (2, " Location: %s\n", location); if (!(*treq)->method) return; soup_test_assert_message_status (msg, (*treq)->status_code); } static void restarted (SoupMessage *msg, gpointer user_data) { TestRequest **treq = user_data; SoupURI *uri = soup_message_get_uri (msg); debug_printf (2, " %s %s\n", msg->method, uri->path); if ((*treq)->method && !(*treq)->repeat) (*treq)++; soup_test_assert ((*treq)->method, "Expected to be done"); g_assert_cmpstr (msg->method, ==, (*treq)->method); g_assert_cmpstr (uri->path, ==, (*treq)->path); } static void do_message_api_test (SoupSession *session, TestCase *test) { SoupURI *uri; SoupMessage *msg; TestRequest *treq; if (test->bugref) g_test_bug (test->bugref); uri = soup_uri_new_with_base (base_uri, test->requests[0].path); msg = soup_message_new_from_uri (test->requests[0].method, uri); soup_uri_free (uri); if (msg->method == SOUP_METHOD_POST) { soup_message_set_request (msg, "text/plain", SOUP_MEMORY_STATIC, "post body", strlen ("post body")); } treq = &test->requests[0]; g_signal_connect (msg, "got_headers", G_CALLBACK (got_headers), &treq); g_signal_connect (msg, "restarted", G_CALLBACK (restarted), &treq); soup_session_send_message (session, msg); soup_test_assert_message_status (msg, test->final_status); g_object_unref (msg); } static void do_request_api_test (SoupSession *session, TestCase *test) { SoupURI *uri; SoupRequestHTTP *reqh; SoupMessage *msg; TestRequest *treq; GInputStream *stream; GError *error = NULL; if (test->bugref) g_test_bug (test->bugref); uri = soup_uri_new_with_base (base_uri, test->requests[0].path); reqh = soup_session_request_http_uri (session, test->requests[0].method, uri, &error); soup_uri_free (uri); g_assert_no_error (error); if (error) { g_error_free (error); return; } msg = soup_request_http_get_message (reqh); if (msg->method == SOUP_METHOD_POST) { soup_message_set_request (msg, "text/plain", SOUP_MEMORY_STATIC, "post body", strlen ("post body")); } treq = &test->requests[0]; g_signal_connect (msg, "got_headers", G_CALLBACK (got_headers), &treq); g_signal_connect (msg, "restarted", G_CALLBACK (restarted), &treq); stream = soup_test_request_send (SOUP_REQUEST (reqh), NULL, 0, &error); if (SOUP_STATUS_IS_TRANSPORT_ERROR (test->final_status) && test->final_status != SOUP_STATUS_MALFORMED) { g_assert_error (error, SOUP_HTTP_ERROR, test->final_status); g_clear_error (&error); g_assert_null (stream); g_clear_object (&stream); g_object_unref (msg); g_object_unref (reqh); return; } g_assert_no_error (error); if (error) { g_error_free (error); g_object_unref (msg); g_object_unref (reqh); return; } soup_test_request_read_all (SOUP_REQUEST (reqh), stream, NULL, &error); g_assert_no_error (error); g_clear_error (&error); soup_test_request_close_stream (SOUP_REQUEST (reqh), stream, NULL, &error); g_assert_no_error (error); g_clear_error (&error); g_object_unref (stream); if (test->final_status == SOUP_STATUS_MALFORMED) g_assert_cmpint (msg->status_code, ==, test->requests[0].status_code); else g_assert_cmpint (msg->status_code, ==, test->final_status); g_object_unref (msg); g_object_unref (reqh); } static void do_async_msg_api_test (gconstpointer test) { do_message_api_test (async_session, (TestCase *)test); } static void do_async_req_api_test (gconstpointer test) { do_request_api_test (async_session, (TestCase *)test); } static void do_sync_msg_api_test (gconstpointer test) { do_message_api_test (sync_session, (TestCase *)test); } static void do_sync_req_api_test (gconstpointer test) { do_request_api_test (sync_session, (TestCase *)test); } static void server_callback (SoupServer *server, SoupMessage *msg, const char *path, GHashTable *query, SoupClientContext *context, gpointer data) { char *remainder; guint status_code; /* Make sure that a HTTP/1.0 redirect doesn't cause an * HTTP/1.0 re-request. (#521848) */ if (soup_message_get_http_version (msg) == SOUP_HTTP_1_0) { soup_message_set_status (msg, SOUP_STATUS_BAD_REQUEST); return; } if (g_str_has_prefix (path, "/bad")) { if (!strcmp (path, "/bad")) { soup_message_set_status (msg, SOUP_STATUS_FOUND); soup_message_headers_replace (msg->response_headers, "Location", "/bad with spaces"); } else if (!strcmp (path, "/bad-recursive")) { soup_message_set_status (msg, SOUP_STATUS_FOUND); soup_message_headers_replace (msg->response_headers, "Location", "/bad-recursive"); } else if (!strcmp (path, "/bad-no-host")) { soup_message_set_status (msg, SOUP_STATUS_FOUND); soup_message_headers_replace (msg->response_headers, "Location", "about:blank"); } else if (!strcmp (path, "/bad with spaces")) soup_message_set_status (msg, SOUP_STATUS_OK); else soup_message_set_status (msg, SOUP_STATUS_NOT_FOUND); return; } else if (!strcmp (path, "/server2")) { soup_message_set_status (msg, SOUP_STATUS_FOUND); soup_message_headers_replace (msg->response_headers, "Location", server2_uri); return; } else if (!strcmp (path, "/")) { if (msg->method != SOUP_METHOD_GET && msg->method != SOUP_METHOD_HEAD) { soup_message_set_status (msg, SOUP_STATUS_METHOD_NOT_ALLOWED); return; } /* Make sure that redirecting a POST clears the body */ if (msg->request_body->length) { soup_message_set_status (msg, SOUP_STATUS_BAD_REQUEST); return; } soup_message_set_status (msg, SOUP_STATUS_OK); /* FIXME: this is wrong, though it doesn't matter for * the purposes of this test, and to do the right * thing currently we'd have to set Content-Length by * hand. */ if (msg->method != SOUP_METHOD_HEAD) { soup_message_set_response (msg, "text/plain", SOUP_MEMORY_STATIC, "OK\r\n", 4); } return; } status_code = strtoul (path + 1, &remainder, 10); if (!SOUP_STATUS_IS_REDIRECTION (status_code) || (*remainder && *remainder != '/')) { soup_message_set_status (msg, SOUP_STATUS_NOT_FOUND); return; } /* See above comment re bug 521848. We only test this on the * double-redirects so that we get connection-reuse testing * the rest of the time. */ if (*remainder == '/') soup_message_set_http_version (msg, SOUP_HTTP_1_0); soup_message_set_redirect (msg, status_code, *remainder ? remainder : "/"); } static void server2_callback (SoupServer *server, SoupMessage *msg, const char *path, GHashTable *query, SoupClientContext *context, gpointer data) { soup_message_set_status (msg, SOUP_STATUS_OK); } int main (int argc, char **argv) { GMainLoop *loop; SoupServer *server, *server2; SoupURI *uri2; char *path; int n, 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); base_uri = soup_test_server_get_uri (server, "http", NULL); server2 = soup_test_server_new (SOUP_TEST_SERVER_IN_THREAD); soup_server_add_handler (server2, NULL, server2_callback, NULL, NULL); uri2 = soup_test_server_get_uri (server2, "http", NULL); soup_uri_set_path (uri2, "/on-server2"); server2_uri = soup_uri_to_string (uri2, FALSE); soup_uri_free (uri2); loop = g_main_loop_new (NULL, TRUE); async_session = soup_test_session_new (SOUP_TYPE_SESSION_ASYNC, SOUP_SESSION_USE_THREAD_CONTEXT, TRUE, NULL); sync_session = soup_test_session_new (SOUP_TYPE_SESSION_SYNC, NULL); for (n = 0; n < n_tests; n++) { path = g_strdup_printf ("/redirect/async/msg/%d-%s-%d", n, tests[n].requests[0].method, tests[n].requests[0].status_code); g_test_add_data_func (path, &tests[n], do_async_msg_api_test); g_free (path); path = g_strdup_printf ("/redirect/async/req/%d-%s-%d", n, tests[n].requests[0].method, tests[n].requests[0].status_code); g_test_add_data_func (path, &tests[n], do_async_req_api_test); g_free (path); path = g_strdup_printf ("/redirect/sync/msg/%d-%s-%d", n, tests[n].requests[0].method, tests[n].requests[0].status_code); g_test_add_data_func (path, &tests[n], do_sync_msg_api_test); g_free (path); path = g_strdup_printf ("/redirect/sync/req/%d-%s-%d", n, tests[n].requests[0].method, tests[n].requests[0].status_code); g_test_add_data_func (path, &tests[n], do_sync_req_api_test); g_free (path); } ret = g_test_run (); g_main_loop_unref (loop); soup_uri_free (base_uri); soup_test_server_quit_unref (server); g_free (server2_uri); soup_test_server_quit_unref (server2); soup_test_session_abort_unref (async_session); soup_test_session_abort_unref (sync_session); test_cleanup (); return ret; }