[libgdata] tests: Add trace file testing support to the PicasaWeb test suite



commit 65938c94908f13898f18a09f85f1ed84242aeae3
Author: Philip Withnall <philip tecnocode co uk>
Date:   Sun Jul 28 14:21:35 2013 +0200

    tests: Add trace file testing support to the PicasaWeb test suite

 gdata/tests/picasaweb.c                            |  289 ++++++++++++++------
 gdata/tests/traces/picasaweb/authentication        |   27 ++
 gdata/tests/traces/picasaweb/authentication-async  |   27 ++
 .../picasaweb/authentication-async-cancellation    |   41 +++
 gdata/tests/traces/picasaweb/comment-delete        |   26 ++
 gdata/tests/traces/picasaweb/comment-insert        |   34 +++
 gdata/tests/traces/picasaweb/comment-query         |   30 ++
 .../picasaweb/comment-query-async-progress-closure |   30 ++
 gdata/tests/traces/picasaweb/comment_delete-async  |   26 ++
 .../picasaweb/comment_delete-async-cancellation    |   26 ++
 gdata/tests/traces/picasaweb/comment_insert-async  |   34 +++
 .../picasaweb/comment_insert-async-cancellation    |   34 +++
 gdata/tests/traces/picasaweb/comment_query-async   |   30 ++
 .../picasaweb/comment_query-async-cancellation     |   30 ++
 gdata/tests/traces/picasaweb/download-photo        |   25 ++
 gdata/tests/traces/picasaweb/download-thumbnails   |  101 +++++++
 gdata/tests/traces/picasaweb/global-authentication |   27 ++
 gdata/tests/traces/picasaweb/insert-album          |   64 +++++
 gdata/tests/traces/picasaweb/insert_album-async    |   34 +++
 .../picasaweb/insert_album-async-cancellation      |   50 ++++
 gdata/tests/traces/picasaweb/query-all-albums      |   30 ++
 .../query-all-albums-async-progress-closure        |   30 ++
 .../traces/picasaweb/query-all-albums-with-limits  |   90 ++++++
 gdata/tests/traces/picasaweb/query-files           |   30 ++
 .../picasaweb/query-files-async-progress-closure   |   30 ++
 gdata/tests/traces/picasaweb/query-files-single    |   30 ++
 gdata/tests/traces/picasaweb/query-user            |   30 ++
 .../tests/traces/picasaweb/query_all_albums-async  |   30 ++
 .../picasaweb/query_all_albums-async-cancellation  |   98 +++++++
 gdata/tests/traces/picasaweb/query_files-async     |   30 ++
 .../picasaweb/query_files-async-cancellation       |   30 ++
 gdata/tests/traces/picasaweb/query_user-async      |   30 ++
 .../traces/picasaweb/query_user-async-cancellation |   90 ++++++
 .../traces/picasaweb/query_user_by_username-async  |   30 ++
 .../query_user_by_username-async-cancellation      |  120 ++++++++
 .../tests/traces/picasaweb/setup-query-all-albums  |  136 +++++++++
 gdata/tests/traces/picasaweb/setup-query-comments  |  102 +++++++
 gdata/tests/traces/picasaweb/setup-query-files     |  170 ++++++++++++
 gdata/tests/traces/picasaweb/teardown-insert-album |   27 ++
 .../tests/traces/picasaweb/teardown-insert-comment |   26 ++
 .../traces/picasaweb/teardown-query-all-albums     |  108 ++++++++
 .../tests/traces/picasaweb/teardown-query-comments |   78 ++++++
 gdata/tests/traces/picasaweb/teardown-query-files  |   57 ++++
 gdata/tests/traces/picasaweb/teardown-upload       |   27 ++
 gdata/tests/traces/picasaweb/upload-default-album  |   34 +++
 .../traces/picasaweb/upload_default_album-async    |   34 +++
 .../upload_default_album-async-cancellation        |   34 +++
 47 files changed, 2461 insertions(+), 85 deletions(-)
---
diff --git a/gdata/tests/picasaweb.c b/gdata/tests/picasaweb.c
index d289685..6512139 100644
--- a/gdata/tests/picasaweb.c
+++ b/gdata/tests/picasaweb.c
@@ -33,6 +33,8 @@
 
 #define PW_USERNAME "libgdata picasaweb gmail com"
 
+static GDataMockServer *mock_server = NULL;
+
 /* Assert that two albums have equal properties, but aren't the same object instance. For use in, e.g., 
comparing an inserted album from the server
  * to the original instance which was inserted. */
 static void
@@ -346,6 +348,8 @@ test_authentication (void)
        GDataClientLoginAuthorizer *authorizer;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "authentication");
+
        /* Create an authorizer */
        authorizer = gdata_client_login_authorizer_new (CLIENT_ID, GDATA_TYPE_PICASAWEB_SERVICE);
 
@@ -365,6 +369,8 @@ test_authentication (void)
                                                             
gdata_picasaweb_service_get_primary_authorization_domain ()) == TRUE);
 
        g_object_unref (authorizer);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_TEST_FUNCTIONS (authentication, void,
@@ -470,6 +476,8 @@ set_up_query_files (QueryFilesData *data, gconstpointer service)
 {
        GDataPicasaWebAlbum *album;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-query-files");
+
        /* Album */
        album = gdata_picasaweb_album_new (NULL);
        gdata_entry_set_title (GDATA_ENTRY (album), "Test album for QueryFiles");
@@ -484,6 +492,8 @@ set_up_query_files (QueryFilesData *data, gconstpointer service)
        data->file2 = upload_file (GDATA_PICASAWEB_SERVICE (service), "Test file 2", data->album);
        data->file3 = upload_file (GDATA_PICASAWEB_SERVICE (service), "Test file 3", data->album);
        data->file4 = upload_file (GDATA_PICASAWEB_SERVICE (service), "Test file 4", data->album);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -498,7 +508,11 @@ tear_down_query_files (QueryFilesData *data, gconstpointer service)
        g_object_unref (data->file1);
 
        /* HACK! Wait for the distributed Google servers to synchronise. */
-       sleep (10);
+       if (gdata_mock_server_get_enable_online (mock_server) == FALSE) {
+               sleep (10);
+       }
+
+       gdata_test_mock_server_start_trace (mock_server, "teardown-query-files");
 
        /* We have to re-query for the album, since its ETag will be out of date */
        album_feed = gdata_picasaweb_service_query_all_albums (GDATA_PICASAWEB_SERVICE (service), NULL, NULL, 
NULL, NULL, NULL, NULL);
@@ -510,6 +524,8 @@ tear_down_query_files (QueryFilesData *data, gconstpointer service)
 
        g_object_unref (album_feed);
        g_object_unref (data->album);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 /* Checks to perform on a photo feed from test_query_files() or test_query_files_async(). */
@@ -552,6 +568,8 @@ test_query_files (QueryFilesData *data, gconstpointer service)
        GDataFeed *photo_feed;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-files");
+
        photo_feed = gdata_picasaweb_service_query_files (GDATA_PICASAWEB_SERVICE (service), data->album, 
NULL, NULL, NULL, NULL, &error);
        g_assert_no_error (error);
        g_assert (GDATA_IS_FEED (photo_feed));
@@ -560,6 +578,8 @@ test_query_files (QueryFilesData *data, gconstpointer service)
        _test_query_files (photo_feed, data);
 
        g_object_unref (photo_feed);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (query_files, QueryFilesData);
@@ -592,6 +612,8 @@ test_query_files_async_progress_closure (QueryFilesData *query_data, gconstpoint
 {
        GDataAsyncProgressClosure *data = g_slice_new0 (GDataAsyncProgressClosure);
 
+       gdata_test_mock_server_start_trace (mock_server, "query-files-async-progress-closure");
+
        data->main_loop = g_main_loop_new (NULL, TRUE);
 
        gdata_picasaweb_service_query_files_async (GDATA_PICASAWEB_SERVICE (service), query_data->album, 
NULL, NULL,
@@ -607,6 +629,8 @@ test_query_files_async_progress_closure (QueryFilesData *query_data, gconstpoint
        g_assert_cmpuint (data->async_ready_notify_count, ==, 1);
 
        g_slice_free (GDataAsyncProgressClosure, data);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -615,6 +639,8 @@ test_query_files_single (QueryFilesData *data, gconstpointer service)
        GDataEntry *file;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-files-single");
+
        file = gdata_service_query_single_entry (GDATA_SERVICE (service), 
gdata_picasaweb_service_get_primary_authorization_domain (),
                                                 gdata_entry_get_id (GDATA_ENTRY (data->file1)), NULL, 
GDATA_TYPE_PICASAWEB_FILE, NULL, &error);
        g_assert_no_error (error);
@@ -624,6 +650,8 @@ test_query_files_single (QueryFilesData *data, gconstpointer service)
        assert_files_equal (GDATA_PICASAWEB_FILE (file), data->file1, TRUE);
 
        g_object_unref (file);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -639,6 +667,8 @@ test_download_thumbnails (QueryFilesData *data, gconstpointer service)
        gssize transfer_size;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "download-thumbnails");
+
        photo = GDATA_PICASAWEB_FILE (data->file3);
 
        thumbnails = gdata_picasaweb_file_get_thumbnails (photo);
@@ -681,6 +711,12 @@ test_download_thumbnails (QueryFilesData *data, gconstpointer service)
 
                thumbnail = GDATA_MEDIA_THUMBNAIL (node->data);
 
+               /* FIXME. The mock server currently doesn't support binary data, so we can't get JPEG files
+                * from it. Hence, only perform the GdkPixbuf tests when running tests online. */
+               if (gdata_mock_server_get_enable_online (mock_server) == FALSE) {
+                       break;
+               }
+
                /* Prepare a download stream */
                download_stream = gdata_media_thumbnail_download (thumbnail, GDATA_SERVICE (service), NULL, 
&error);
                g_assert_no_error (error);
@@ -700,6 +736,8 @@ test_download_thumbnails (QueryFilesData *data, gconstpointer service)
                g_object_unref (pixbuf);
        }
 #endif /* HAVE_GDK_PIXBUF */
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -715,6 +753,8 @@ test_download_photo (QueryFilesData *data, gconstpointer service)
        gssize transfer_size;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "download-photo");
+
        photo = GDATA_PICASAWEB_FILE (data->file3);
 
        media_contents = gdata_picasaweb_file_get_contents (photo);
@@ -749,6 +789,8 @@ test_download_photo (QueryFilesData *data, gconstpointer service)
        /* Delete the file (shouldn't cause the test to fail if this fails) */
        g_file_delete (destination_file, NULL, NULL);
        g_object_unref (destination_file);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -775,12 +817,16 @@ set_up_insert_album (InsertAlbumData *data, gconstpointer service)
 static void
 tear_down_insert_album (InsertAlbumData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-insert-album");
+
        /* Clean up the evidence */
        gdata_service_delete_entry (GDATA_SERVICE (service), 
gdata_picasaweb_service_get_primary_authorization_domain (),
                                    GDATA_ENTRY (data->inserted_album), NULL, NULL);
 
        g_object_unref (data->album);
        g_object_unref (data->inserted_album);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -790,6 +836,8 @@ test_insert_album (InsertAlbumData *data, gconstpointer service)
        GDataFeed *album_feed;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "insert-album");
+
        /* Insert the album synchronously */
        inserted_album = gdata_picasaweb_service_insert_album (GDATA_PICASAWEB_SERVICE (service), 
data->album, NULL, &error);
        g_assert_no_error (error);
@@ -811,6 +859,8 @@ test_insert_album (InsertAlbumData *data, gconstpointer service)
        g_object_unref (album_feed);
 
        g_object_unref (inserted_album);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (insert_album, InsertAlbumData);
@@ -849,6 +899,8 @@ set_up_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
 {
        GDataPicasaWebAlbum *album;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-query-all-albums");
+
        /* First album */
        album = gdata_picasaweb_album_new (NULL);
        gdata_entry_set_title (GDATA_ENTRY (album), "Test album 1 for QueryAllAlbums");
@@ -884,11 +936,15 @@ set_up_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
        g_assert (data->album4 != NULL);
 
        g_object_unref (album);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-query-all-albums");
+
        g_assert (gdata_service_delete_entry (GDATA_SERVICE (service), 
gdata_picasaweb_service_get_primary_authorization_domain (),
                                              GDATA_ENTRY (data->album1), NULL, NULL) == TRUE);
        g_object_unref (data->album1);
@@ -904,6 +960,8 @@ tear_down_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
        g_assert (gdata_service_delete_entry (GDATA_SERVICE (service), 
gdata_picasaweb_service_get_primary_authorization_domain (),
                                              GDATA_ENTRY (data->album4), NULL, NULL) == TRUE);
        g_object_unref (data->album4);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -983,6 +1041,8 @@ test_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
        GDataFeed *album_feed;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-all-albums");
+
        /* Try a proper query */
        album_feed = gdata_picasaweb_service_query_all_albums (GDATA_PICASAWEB_SERVICE (service), NULL, NULL, 
NULL, NULL, NULL, &error);
        g_assert_no_error (error);
@@ -991,6 +1051,8 @@ test_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
        _test_query_all_albums (album_feed, data);
 
        g_object_unref (album_feed);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1001,6 +1063,8 @@ test_query_all_albums_with_limits (QueryAllAlbumsData *data, gconstpointer servi
        GError *error = NULL;
        GList *albums_1, *albums_2;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-all-albums-with-limits");
+
        /* Test that two queries starting at different indices don't return the same content */
        query = GDATA_QUERY (gdata_picasaweb_query_new_with_limits (NULL, 1, 1));
        album_feed_1 = gdata_picasaweb_service_query_all_albums (GDATA_PICASAWEB_SERVICE (service), query, 
NULL, NULL, NULL, NULL, &error);
@@ -1036,6 +1100,8 @@ test_query_all_albums_with_limits (QueryAllAlbumsData *data, gconstpointer servi
        g_assert_cmpint (g_list_length (albums_1), ==, 3);
 
        g_object_unref (album_feed_1);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (query_all_albums, QueryAllAlbumsData);
@@ -1069,6 +1135,8 @@ test_query_all_albums_async_progress_closure (QueryAllAlbumsData *unused_data, g
 {
        GDataAsyncProgressClosure *data = g_slice_new0 (GDataAsyncProgressClosure);
 
+       gdata_test_mock_server_start_trace (mock_server, "query-all-albums-async-progress-closure");
+
        data->main_loop = g_main_loop_new (NULL, TRUE);
 
        gdata_picasaweb_service_query_all_albums_async (GDATA_PICASAWEB_SERVICE (service), NULL, NULL, NULL,
@@ -1084,6 +1152,8 @@ test_query_all_albums_async_progress_closure (QueryAllAlbumsData *unused_data, g
        g_assert_cmpuint (data->async_ready_notify_count, ==, 1);
 
        g_slice_free (GDataAsyncProgressClosure, data);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1117,6 +1187,8 @@ set_up_query_comments (QueryCommentsData *data, gconstpointer service)
        /* Set up some test albums and files. */
        set_up_query_files ((QueryFilesData*) data, service);
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-query-comments");
+
        /* Insert four test comments on the first test file. */
        comment_ = gdata_picasaweb_comment_new (NULL);
        gdata_entry_set_content (GDATA_ENTRY (comment_), "Test comment 1.");
@@ -1138,11 +1210,15 @@ set_up_query_comments (QueryCommentsData *data, gconstpointer service)
                                                                                    GDATA_COMMENT (comment_), 
NULL, NULL));
        g_assert (GDATA_IS_PICASAWEB_COMMENT (data->comment1));
        g_object_unref (comment_);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_query_comments (QueryCommentsData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-query-comments");
+
        /* Delete the test comments. */
        if (data->comment1 != NULL) {
                gdata_commentable_delete_comment (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service),
@@ -1162,6 +1238,8 @@ tear_down_query_comments (QueryCommentsData *data, gconstpointer service)
                g_object_unref (data->comment3);
        }
 
+       gdata_mock_server_end_trace (mock_server);
+
        /* Delete the test files and albums. */
        tear_down_query_files ((QueryFilesData*) data, service);
 }
@@ -1219,6 +1297,8 @@ test_comment_query (QueryCommentsData *data, gconstpointer service)
        GDataFeed *comments_feed;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "comment-query");
+
        comments_feed = gdata_commentable_query_comments (GDATA_COMMENTABLE (data->parent.file1), 
GDATA_SERVICE (service), NULL, NULL, NULL, NULL,
                                                          &error);
        g_assert_no_error (error);
@@ -1227,6 +1307,8 @@ test_comment_query (QueryCommentsData *data, gconstpointer service)
        assert_comments_feed (data, comments_feed);
 
        g_object_unref (comments_feed);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (query_comments, QueryCommentsData);
@@ -1260,6 +1342,8 @@ test_comment_query_async_progress_closure (QueryCommentsData *query_data, gconst
 {
        GDataAsyncProgressClosure *data = g_slice_new0 (GDataAsyncProgressClosure);
 
+       gdata_test_mock_server_start_trace (mock_server, "comment-query-async-progress-closure");
+
        data->main_loop = g_main_loop_new (NULL, TRUE);
 
        gdata_commentable_query_comments_async (GDATA_COMMENTABLE (query_data->parent.file1), GDATA_SERVICE 
(service), NULL, NULL,
@@ -1275,6 +1359,8 @@ test_comment_query_async_progress_closure (QueryCommentsData *query_data, gconst
        g_assert_cmpuint (data->async_ready_notify_count, ==, 1);
 
        g_slice_free (GDataAsyncProgressClosure, data);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -1300,6 +1386,8 @@ set_up_insert_comment (InsertCommentData *data, gconstpointer service)
 static void
 tear_down_insert_comment (InsertCommentData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-insert-comment");
+
        /* Delete the inserted comment. */
        if (data->new_comment != NULL) {
                g_assert (gdata_commentable_delete_comment (GDATA_COMMENTABLE (data->parent.file1), 
GDATA_SERVICE (service),
@@ -1311,6 +1399,8 @@ tear_down_insert_comment (InsertCommentData *data, gconstpointer service)
                g_object_unref (data->comment);
        }
 
+       gdata_mock_server_end_trace (mock_server);
+
        tear_down_query_files ((QueryFilesData*) data, service);
 }
 
@@ -1342,6 +1432,8 @@ test_comment_insert (InsertCommentData *data, gconstpointer service)
        GDataComment *new_comment;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "comment-insert");
+
        new_comment = gdata_commentable_insert_comment (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service), GDATA_COMMENT (data->comment),
                                                        NULL, &error);
        g_assert_no_error (error);
@@ -1350,6 +1442,8 @@ test_comment_insert (InsertCommentData *data, gconstpointer service)
        assert_comments_equal (new_comment, data->comment);
 
        data->new_comment = GDATA_PICASAWEB_COMMENT (new_comment);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (insert_comment, InsertCommentData);
@@ -1379,6 +1473,8 @@ test_comment_delete (QueryCommentsData *data, gconstpointer service)
        gboolean success;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "comment-delete");
+
        success = gdata_commentable_delete_comment (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service), GDATA_COMMENT (data->comment1),
                                                    NULL, &error);
        g_assert_no_error (error);
@@ -1387,6 +1483,8 @@ test_comment_delete (QueryCommentsData *data, gconstpointer service)
 
        g_object_unref (data->comment1);
        data->comment1 = NULL;
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_TEST_FUNCTIONS (comment_delete, QueryCommentsData,
@@ -1424,6 +1522,8 @@ test_query_user (gconstpointer service)
        GDataPicasaWebUser *user;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-user");
+
        user = gdata_picasaweb_service_get_user (GDATA_PICASAWEB_SERVICE (service), NULL, NULL, &error);
        g_assert_no_error (error);
        g_clear_error (&error);
@@ -1431,6 +1531,8 @@ test_query_user (gconstpointer service)
        check_authenticated_user_details (user);
 
        g_object_unref (user);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 /* Check that asynchronously querying for the currently authenticated user's details works and returns the 
correct details. */
@@ -1498,6 +1600,8 @@ set_up_upload (UploadData *data, gconstpointer service)
        const gchar * const tags[] = { "foo", "bar", ",,baz,baz", NULL };
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-upload");
+
        data->service = g_object_ref ((gpointer) service);
 
        /* Build the photo */
@@ -1525,11 +1629,15 @@ set_up_upload (UploadData *data, gconstpointer service)
        data->file_stream = g_file_read (data->photo_file, NULL, &error);
        g_assert_no_error (error);
        g_assert (G_IS_FILE_INPUT_STREAM (data->file_stream));
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_upload (UploadData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-upload");
+
        /* Delete the uploaded photo (don't worry if this fails) */
        if (data->updated_photo != NULL) {
                gdata_service_delete_entry (GDATA_SERVICE (service), 
gdata_picasaweb_service_get_primary_authorization_domain (),
@@ -1543,6 +1651,8 @@ tear_down_upload (UploadData *data, gconstpointer service)
        g_free (data->content_type);
        g_object_unref (data->file_stream);
        g_object_unref (data->service);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1553,6 +1663,8 @@ test_upload_default_album (UploadData *data, gconstpointer service)
        gssize transfer_size;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "upload-default-album");
+
        /* Prepare the upload stream */
        /* TODO right now, it will just go to the default album, we want an uploading one :| */
        upload_stream = gdata_picasaweb_service_upload_file (GDATA_PICASAWEB_SERVICE (service), NULL, 
data->photo, data->slug, data->content_type,
@@ -1582,6 +1694,8 @@ test_upload_default_album (UploadData *data, gconstpointer service)
        g_assert_cmpstr (tags2[0], ==, tags[0]);
        g_assert_cmpstr (tags2[1], ==, tags[1]);
        g_assert_cmpstr (tags2[2], ==, tags[2]);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (upload, UploadData);
@@ -1953,93 +2067,98 @@ main (int argc, char *argv[])
        gint retval;
        GDataAuthorizer *authorizer = NULL;
        GDataService *service = NULL;
+       GFile *trace_directory;
 
        gdata_test_init (argc, argv);
 
-       if (gdata_test_internet () == TRUE) {
-               authorizer = GDATA_AUTHORIZER (gdata_client_login_authorizer_new (CLIENT_ID, 
GDATA_TYPE_PICASAWEB_SERVICE));
-               gdata_client_login_authorizer_authenticate (GDATA_CLIENT_LOGIN_AUTHORIZER (authorizer), 
PW_USERNAME, PASSWORD, NULL, NULL);
-
-               service = GDATA_SERVICE (gdata_picasaweb_service_new (authorizer));
-
-               g_test_add_func ("/picasaweb/authentication", test_authentication);
-               g_test_add ("/picasaweb/authentication/async", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data, test_authentication_async,
-                           gdata_tear_down_async_test_data);
-               g_test_add ("/picasaweb/authentication/async/cancellation", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data,
-                           test_authentication_async_cancellation, gdata_tear_down_async_test_data);
-
-               g_test_add ("/picasaweb/query/all_albums", QueryAllAlbumsData, service, 
set_up_query_all_albums, test_query_all_albums,
-                           tear_down_query_all_albums);
-               g_test_add ("/picasaweb/query/all_albums/with_limits", QueryAllAlbumsData, service, 
set_up_query_all_albums,
-                           test_query_all_albums_with_limits, tear_down_query_all_albums);
-               g_test_add ("/picasaweb/query/all_albums/async", GDataAsyncTestData, service, 
set_up_query_all_albums_async,
-                           test_query_all_albums_async, tear_down_query_all_albums_async);
-               g_test_add ("/picasaweb/query/all_albums/async/progress_closure", QueryAllAlbumsData, 
service, set_up_query_all_albums,
-                           test_query_all_albums_async_progress_closure, tear_down_query_all_albums);
-               g_test_add ("/picasaweb/query/all_albums/async/cancellation", GDataAsyncTestData, service, 
set_up_query_all_albums_async,
-                           test_query_all_albums_async_cancellation, tear_down_query_all_albums_async);
-               g_test_add_data_func ("/picasaweb/query/all_albums/bad_query", service, 
test_query_all_albums_bad_query);
-               g_test_add_data_func ("/picasaweb/query/all_albums/bad_query/with_limits", service, 
test_query_all_albums_bad_query_with_limits);
-
-               g_test_add_data_func ("/picasaweb/query/user", service, test_query_user);
-               g_test_add ("/picasaweb/query/user/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data, test_query_user_async,
-                           gdata_tear_down_async_test_data);
-               g_test_add ("/picasaweb/query/user/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
-                           test_query_user_async_cancellation, gdata_tear_down_async_test_data);
-               g_test_add ("/picasaweb/query/user/by-username/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
-                           test_query_user_by_username_async, gdata_tear_down_async_test_data);
-               g_test_add ("/picasaweb/query/user/by-username/async/cancellation", GDataAsyncTestData, 
service, gdata_set_up_async_test_data,
-                           test_query_user_by_username_async_cancellation, gdata_tear_down_async_test_data);
-
-               g_test_add ("/picasaweb/insert/album", InsertAlbumData, service, set_up_insert_album, 
test_insert_album, tear_down_insert_album);
-               g_test_add ("/picasaweb/insert/album/async", GDataAsyncTestData, service, 
set_up_insert_album_async, test_insert_album_async,
-                           tear_down_insert_album_async);
-               g_test_add ("/picasaweb/insert/album/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_album_async,
-                           test_insert_album_async_cancellation, tear_down_insert_album_async);
-
-               g_test_add ("/picasaweb/query/files", QueryFilesData, service, set_up_query_files, 
test_query_files, tear_down_query_files);
-               g_test_add ("/picasaweb/query/files/async", GDataAsyncTestData, service, 
set_up_query_files_async, test_query_files_async,
-                           tear_down_query_files_async);
-               g_test_add ("/picasaweb/query/files/async/progress_closure", QueryFilesData, service, 
set_up_query_files,
-                           test_query_files_async_progress_closure, tear_down_query_files);
-               g_test_add ("/picasaweb/query/files/async/cancellation", GDataAsyncTestData, service, 
set_up_query_files_async,
-                           test_query_files_async_cancellation, tear_down_query_files_async);
-               g_test_add ("/picasaweb/query/files/single", QueryFilesData, service, set_up_query_files, 
test_query_files_single,
-                           tear_down_query_files);
-
-               g_test_add ("/picasaweb/comment/query", QueryCommentsData, service, set_up_query_comments, 
test_comment_query,
-                           tear_down_query_comments);
-               g_test_add ("/picasaweb/comment/query/async", GDataAsyncTestData, service, 
set_up_query_comments_async, test_comment_query_async,
-                           tear_down_query_comments_async);
-               g_test_add ("/picasaweb/comment/query/async/cancellation", GDataAsyncTestData, service, 
set_up_query_comments_async,
-                           test_comment_query_async_cancellation, tear_down_query_comments_async);
-               g_test_add ("/picasaweb/comment/query/progress_closure", QueryCommentsData, service, 
set_up_query_comments,
-                           test_comment_query_async_progress_closure, tear_down_query_comments);
-
-               g_test_add ("/picasaweb/comment/insert", InsertCommentData, service, set_up_insert_comment, 
test_comment_insert,
-                           tear_down_insert_comment);
-               g_test_add ("/picasaweb/comment/insert/async", GDataAsyncTestData, service, 
set_up_insert_comment_async, test_comment_insert_async,
-                           tear_down_insert_comment_async);
-               g_test_add ("/picasaweb/comment/insert/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_comment_async,
-                           test_comment_insert_async_cancellation, tear_down_insert_comment_async);
-
-               g_test_add ("/picasaweb/comment/delete", QueryCommentsData, service, set_up_query_comments, 
test_comment_delete,
-                           tear_down_query_comments);
-               g_test_add ("/picasaweb/comment/delete/async", GDataAsyncTestData, service, 
set_up_query_comments_async, test_comment_delete_async,
-                           tear_down_query_comments_async);
-               g_test_add ("/picasaweb/comment/delete/async/cancellation", GDataAsyncTestData, service, 
set_up_query_comments_async,
-                           test_comment_delete_async_cancellation, tear_down_query_comments_async);
-
-               g_test_add ("/picasaweb/upload/default_album", UploadData, service, set_up_upload, 
test_upload_default_album, tear_down_upload);
-               g_test_add ("/picasaweb/upload/default_album/async", GDataAsyncTestData, service, 
set_up_upload_async, test_upload_default_album_async,
-                           tear_down_upload_async);
-               g_test_add ("/picasaweb/upload/default_album/async/cancellation", GDataAsyncTestData, 
service, set_up_upload_async,
-                           test_upload_default_album_async_cancellation, tear_down_upload_async);
-
-               g_test_add ("/picasaweb/download/photo", QueryFilesData, service, set_up_query_files, 
test_download_photo, tear_down_query_files);
-               g_test_add ("/picasaweb/download/thumbnails", QueryFilesData, service, set_up_query_files, 
test_download_thumbnails,
-                           tear_down_query_files);
-       }
+       mock_server = gdata_test_get_mock_server ();
+       trace_directory = g_file_new_for_path ("traces/picasaweb");
+       gdata_mock_server_set_trace_directory (mock_server, trace_directory);
+       g_object_unref (trace_directory);
+
+       gdata_test_mock_server_start_trace (mock_server, "global-authentication");
+       authorizer = GDATA_AUTHORIZER (gdata_client_login_authorizer_new (CLIENT_ID, 
GDATA_TYPE_PICASAWEB_SERVICE));
+       gdata_client_login_authorizer_authenticate (GDATA_CLIENT_LOGIN_AUTHORIZER (authorizer), PW_USERNAME, 
PASSWORD, NULL, NULL);
+       gdata_mock_server_end_trace (mock_server);
+
+       service = GDATA_SERVICE (gdata_picasaweb_service_new (authorizer));
+
+       g_test_add_func ("/picasaweb/authentication", test_authentication);
+       g_test_add ("/picasaweb/authentication/async", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data, test_authentication_async,
+                   gdata_tear_down_async_test_data);
+       g_test_add ("/picasaweb/authentication/async/cancellation", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data,
+                   test_authentication_async_cancellation, gdata_tear_down_async_test_data);
+
+       g_test_add ("/picasaweb/query/all_albums", QueryAllAlbumsData, service, set_up_query_all_albums, 
test_query_all_albums,
+                   tear_down_query_all_albums);
+       g_test_add ("/picasaweb/query/all_albums/with_limits", QueryAllAlbumsData, service, 
set_up_query_all_albums,
+                   test_query_all_albums_with_limits, tear_down_query_all_albums);
+       g_test_add ("/picasaweb/query/all_albums/async", GDataAsyncTestData, service, 
set_up_query_all_albums_async,
+                   test_query_all_albums_async, tear_down_query_all_albums_async);
+       g_test_add ("/picasaweb/query/all_albums/async/progress_closure", QueryAllAlbumsData, service, 
set_up_query_all_albums,
+                   test_query_all_albums_async_progress_closure, tear_down_query_all_albums);
+       g_test_add ("/picasaweb/query/all_albums/async/cancellation", GDataAsyncTestData, service, 
set_up_query_all_albums_async,
+                   test_query_all_albums_async_cancellation, tear_down_query_all_albums_async);
+       g_test_add_data_func ("/picasaweb/query/all_albums/bad_query", service, 
test_query_all_albums_bad_query);
+       g_test_add_data_func ("/picasaweb/query/all_albums/bad_query/with_limits", service, 
test_query_all_albums_bad_query_with_limits);
+       g_test_add_data_func ("/picasaweb/query/user", service, test_query_user);
+       g_test_add ("/picasaweb/query/user/async", GDataAsyncTestData, service, gdata_set_up_async_test_data, 
test_query_user_async,
+                   gdata_tear_down_async_test_data);
+       g_test_add ("/picasaweb/query/user/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
+                   test_query_user_async_cancellation, gdata_tear_down_async_test_data);
+       g_test_add ("/picasaweb/query/user/by-username/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
+                   test_query_user_by_username_async, gdata_tear_down_async_test_data);
+       g_test_add ("/picasaweb/query/user/by-username/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
+                   test_query_user_by_username_async_cancellation, gdata_tear_down_async_test_data);
+
+       g_test_add ("/picasaweb/insert/album", InsertAlbumData, service, set_up_insert_album, 
test_insert_album, tear_down_insert_album);
+       g_test_add ("/picasaweb/insert/album/async", GDataAsyncTestData, service, set_up_insert_album_async, 
test_insert_album_async,
+                   tear_down_insert_album_async);
+       g_test_add ("/picasaweb/insert/album/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_album_async,
+                   test_insert_album_async_cancellation, tear_down_insert_album_async);
+
+       g_test_add ("/picasaweb/query/files", QueryFilesData, service, set_up_query_files, test_query_files, 
tear_down_query_files);
+       g_test_add ("/picasaweb/query/files/async", GDataAsyncTestData, service, set_up_query_files_async, 
test_query_files_async,
+                   tear_down_query_files_async);
+       g_test_add ("/picasaweb/query/files/async/progress_closure", QueryFilesData, service, 
set_up_query_files,
+                   test_query_files_async_progress_closure, tear_down_query_files);
+       g_test_add ("/picasaweb/query/files/async/cancellation", GDataAsyncTestData, service, 
set_up_query_files_async,
+                   test_query_files_async_cancellation, tear_down_query_files_async);
+       g_test_add ("/picasaweb/query/files/single", QueryFilesData, service, set_up_query_files, 
test_query_files_single,
+                   tear_down_query_files);
+
+       g_test_add ("/picasaweb/comment/query", QueryCommentsData, service, set_up_query_comments, 
test_comment_query,
+                   tear_down_query_comments);
+       g_test_add ("/picasaweb/comment/query/async", GDataAsyncTestData, service, 
set_up_query_comments_async, test_comment_query_async,
+                   tear_down_query_comments_async);
+       g_test_add ("/picasaweb/comment/query/async/cancellation", GDataAsyncTestData, service, 
set_up_query_comments_async,
+                   test_comment_query_async_cancellation, tear_down_query_comments_async);
+       g_test_add ("/picasaweb/comment/query/progress_closure", QueryCommentsData, service, 
set_up_query_comments,
+                   test_comment_query_async_progress_closure, tear_down_query_comments);
+
+       g_test_add ("/picasaweb/comment/insert", InsertCommentData, service, set_up_insert_comment, 
test_comment_insert,
+                   tear_down_insert_comment);
+       g_test_add ("/picasaweb/comment/insert/async", GDataAsyncTestData, service, 
set_up_insert_comment_async, test_comment_insert_async,
+                   tear_down_insert_comment_async);
+       g_test_add ("/picasaweb/comment/insert/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_comment_async,
+                   test_comment_insert_async_cancellation, tear_down_insert_comment_async);
+
+       g_test_add ("/picasaweb/comment/delete", QueryCommentsData, service, set_up_query_comments, 
test_comment_delete,
+                   tear_down_query_comments);
+       g_test_add ("/picasaweb/comment/delete/async", GDataAsyncTestData, service, 
set_up_query_comments_async, test_comment_delete_async,
+                   tear_down_query_comments_async);
+       g_test_add ("/picasaweb/comment/delete/async/cancellation", GDataAsyncTestData, service, 
set_up_query_comments_async,
+                   test_comment_delete_async_cancellation, tear_down_query_comments_async);
+
+       g_test_add ("/picasaweb/upload/default_album", UploadData, service, set_up_upload, 
test_upload_default_album, tear_down_upload);
+       g_test_add ("/picasaweb/upload/default_album/async", GDataAsyncTestData, service, 
set_up_upload_async, test_upload_default_album_async,
+                   tear_down_upload_async);
+       g_test_add ("/picasaweb/upload/default_album/async/cancellation", GDataAsyncTestData, service, 
set_up_upload_async,
+                   test_upload_default_album_async_cancellation, tear_down_upload_async);
+
+       g_test_add ("/picasaweb/download/photo", QueryFilesData, service, set_up_query_files, 
test_download_photo, tear_down_query_files);
+       g_test_add ("/picasaweb/download/thumbnails", QueryFilesData, service, set_up_query_files, 
test_download_thumbnails,
+                   tear_down_query_files);
 
        g_test_add_func ("/picasaweb/album/new", test_album_new);
        g_test_add_func ("/picasaweb/album/escaping", test_album_escaping);
diff --git a/gdata/tests/traces/picasaweb/authentication b/gdata/tests/traces/picasaweb/authentication
new file mode 100644
index 0000000..b715374
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/authentication
@@ -0,0 +1,27 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375193172
+> Soup-Debug: SoupSession 1 (0x6683f0), SoupMessage 1 (0x78d280), SoupSocket 1 (0x7cb970)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193172
+< Soup-Debug: SoupMessage 1 (0x78d280)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 14:06:12 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 947
+< Server: GSE
+< 
+< 
SID=DQAAANgAAAAm30JpMejldxrGZqDDBmyr9VzZMkWUTSlRiv_Sl1b5Nhv3adu8rz7j0dwxDtjA5M9sqauEWfWni0mRBPEIRJx8TLxjxcsXAfh9VoN5KWjIwCRevZYPM3QSoHHwFQK19y7Am4MNTa8NNPiYTkJJsJpltuX8e1XuNNg8PQiJ0_DkngQpWAsvU7dp9ZtiIP7cuDwq_7v_LoliaUmD-iX8xAyAshUsoJHCPUyh8tJS_C2-WW0pw3YWMwTQqvzjLw8T5bg4bwnmIWXnVoMOz3fxgFTGSWTrF69l1xG-ejYihsqDYA
+< 
LSID=DQAAANoAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J_yWJILe434pnCflE8X2wjIpLFHaZPla_0jkC-0S2HV1LxQ2reZNPMHmM2hTxKUopLEBAVhKcarP8veCJxVScfrah5pCMob1GPgleDwnAvakA-KKzvkRbyErNM8XinL4whxINfDK6UTeLg_v_5_qQ4EIXtQA_VZQMgPgkF_bNqKLrN-RH4zADh4Wv9kMKeNjtjwbuhwcP50yxD05oF_kz4M7EIx0hX4c4lFmU-9KG5Dww
+< 
Auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWHtpd0rV-Wgh5PAw5rtXmdEL9LPU4YSkIkBm6OGE-TFeUBby69BPDLKB15nntY_O_Q
+  
diff --git a/gdata/tests/traces/picasaweb/authentication-async 
b/gdata/tests/traces/picasaweb/authentication-async
new file mode 100644
index 0000000..300a29d
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/authentication-async
@@ -0,0 +1,27 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375193173
+> Soup-Debug: SoupSession 1 (0x668500), SoupMessage 1 (0x78d640), SoupSocket 1 (0x7cbeb0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193173
+< Soup-Debug: SoupMessage 1 (0x78d640)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 14:06:13 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 947
+< Server: GSE
+< 
+< 
SID=DQAAANkAAADz6I5y543CCjZXOpzHRL5Wy2v6O9dHOK5ZL-gkle65RbGOwdyggx2m5YWShFc8QmsykdyBKyKnD9ZxJAzOzeOpqaHZiKyiwXnhhqF-n71hCFLI0X66TbxkKcYY8DjtBm3yrmq1qsaJ2Ih8dNVwGsRRzkjBhWEV-hvEM4ATwZzP8U9EkkUrB1M7FM-NRXY_SCCfr7G7HmeTeUJrjBchBk3cF5aSgcDTUW5DAgJOdRfV7tSIRf877itIN_gPRlkmzWS0BhaJC7IGko9hilmk6h5Nqlry2e23b7uhsVWbMpeKhQ
+< 
LSID=DQAAANsAAABWmL76wrk2TqLhr0R8y3MUE9QHvBb7tTdpvkh-6vWtkpu-cC3WScDlQxfk_5N5NAI2U-xwnqC7mhGYlviKWVpSulVjJzqgS3TLyTUpmdmONFlEfzZMf2dIHCUrWHf00WzredV_HoQelWgN0qBoOJSFpj7O__0-EypihGFFkQV0G9NryUZKGlog6R_DFML1vphRMR1YuOBaSv8GEkFndO1WIEl9j7FQxEBB3CBAP4v7OR19_KOA7SuBpT_rtZmdbS2wGtvTuVaUhiN4jvWRfaEXuAtuCUTY8LbuZM_2iV0fXw
+< 
Auth=DQAAANoAAABWmL76wrk2TqLhr0R8y3MUE9QHvBb7tTdpvkh-6vWtkpu-cC3WScDlQxfk_5N5NALhO_5Ix-AyQKglVmoDTujmSRVN5FGSGJUAiEybNEVH5AEWKHdUFf1PfRPDTJ_MAOSo5W7agpjCZdoYK_82KnbPYyAcrC5FyK4b943aWiooIv1ugKmkIp4HZK6NEQCQdjH3Nurdc9YCr53n2D95cvElm1lsS1nvtwq-6dBwpZZcIHsSdtrpe30tSQmzL5C1qoD2ALcy1CrmKf8OhqcWOtRLV5TdjwDfsbSFaRzxxbvR-A
+  
diff --git a/gdata/tests/traces/picasaweb/authentication-async-cancellation 
b/gdata/tests/traces/picasaweb/authentication-async-cancellation
new file mode 100644
index 0000000..9fa22a6
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/authentication-async-cancellation
@@ -0,0 +1,41 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375193174
+> Soup-Debug: SoupSession 1 (0x668500), SoupMessage 1 (0x7fffe00262b0), SoupSocket 1 (0x7fffe00281a0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 1 Cancelled
+< Soup-Debug-Timestamp: 1375193174
+< Soup-Debug: SoupMessage 1 (0x7fffe00262b0)
+  
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375193174
+> Soup-Debug: SoupSession 1 (0x6683f0), SoupMessage 1 (0x7fffe40028c0), SoupSocket 1 (0x7fffdc0043c0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193174
+< Soup-Debug: SoupMessage 1 (0x7fffe40028c0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 14:06:15 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 947
+< Server: GSE
+< 
+< 
SID=DQAAANgAAACE4a6JEhL9MqNFpE-q7I3gdAS8mY_m634u37CefXGg6awpOZw81o8og4PfiQOf2ZMm7Ma7oUr4v3MQTR-Aw2uKvAUukley4pYFRIcRFS2LTr8bjpngzYUUDf8TOJIDjeWQrJQ51ujAlcDgg8cv4pGq9X1OYy_cBrESmyYXzEzf0aJhgW5kPb-I7pA84IWe0m36nW9ZfP5UpZS5TiBf_t-UvbWJdEo2xWwYp8J0e4GGiSqdfwF1MhRn2c-c4ZGzOFEbDXfUfW1x3TTN2H4ZM7ZueedgsFFFM1QyYLdJHBejiA
+< 
LSID=DQAAANwAAAAwilHcMrBJKdIRjpG3J0vlDW-KOSHFkBE14z7LMkU43DR5RQe_Z_rW7tnuxGEN45ByDVyqbMnaA6w46FfRvspunAf3ganeKFylmTR8ZfQdPdo3NdqsAaC-A2nZuUGkkGZSG8joTC23-LQ_3lx10BwnsY_S8afAWzqPe9dX33O28ilbqlOtUNdZJvau137Bv7bUmNEILNIH-lGnJDVBC7bL2DeQwgbZuPocbbEzLp201s4kgEdfxDx__k-VTObMBEsJZoi-wnMBuJEOe074AMIIE6EoFCGIPfi6UTBVSFtrnw
+< 
Auth=DQAAANsAAAAwilHcMrBJKdIRjpG3J0vlDW-KOSHFkBE14z7LMkU43DR5RQe_Z_rW7tnuxGEN45BX83CWF6Rx2FV-mfvaNd2mbn4n2hPc_eFYRzmAIdqBs0mosGrTCs-uQr5XH_bVE3bkVm1DlHJ0VAZiw-TVjVpPUBgntqKPx-bKkDzltMGUgsqeuAdAFp4uhTAb-4shLyfrUgR6890AelCebv0cecAdmBCj1Ti-Nmw4VWFRFvUV58_YGU0aZ94pKzP6h5HygAwR8XKxBz_IHBZ4X09ts54ss7KC2m5VXEimpiU3SW9i-g
+  
diff --git a/gdata/tests/traces/picasaweb/comment-delete b/gdata/tests/traces/picasaweb/comment-delete
new file mode 100644
index 0000000..ec2e890
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/comment-delete
@@ -0,0 +1,26 @@
+> DELETE 
/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157991014140692?authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375370588
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 9 (0x98c290), SoupSocket 8 (0x7833c0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAAB86Pi8rzCqWXqIEzPXZzCnRN-eogX98xY72dnpn8D-bI_huo8ii6KGlO-JGx1j3fOwSwnULClHn2WfkMJpXq9F2V5OEEOX3QeD9u3OzN1ecfPaRlT4itJTQYGQnRLHRdNCoNyueiCaKfo_FWFe1wjM-0KBD0PeItJ3S7T6EfQfYzSWruT6nl8hzBowhTxvGe8g0U2N-Y-BoqGHT1LNXEg31Qd7WzTBoXlSFt66A3B0yznUBRVWVNw-vK7V4oyFbWPtll6VEr3o-_LxLeTKicv5SVzw_YEwnj1ostJeRsE5HQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375370589
+< Soup-Debug: SoupMessage 9 (0x98c290)
+< Expires: Thu, 01 Aug 2013 15:23:09 GMT
+< Date: Thu, 01 Aug 2013 15:23:09 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=lbDpj9RJnlqx; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=cNDsRQ25MWOnTZqVIr9DKA; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/picasaweb/comment-insert b/gdata/tests/traces/picasaweb/comment-insert
new file mode 100644
index 0000000..70aa82b
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/comment-insert
@@ -0,0 +1,34 @@
+> POST 
/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375368301
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 6 (0x98c290), SoupSocket 6 (0x783240)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'></title><content type='text'>This is a test 
comment.</content><category term='http://schemas.google.com/photos/2007#comment' 
scheme='http://schemas.google.com/g/2005#kind'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375368304
+< Soup-Debug: SoupMessage 6 (0x98c290)
+< Expires: Thu, 01 Aug 2013 14:45:02 GMT
+< Date: Thu, 01 Aug 2013 14:45:02 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=o-P2eFhjqkUt; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=b5d1EMiBK9GLVFRlazKBLw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: W/"AkQEQH09eSp7ImA9WhFWE0s."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;AkQEQH09eSp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500</id><published>2013-08-01T14:45:01.361Z</published><updated>2013-08-01T14:45:01.361Z</updated><app:edited>2013-08-01T14:45:01.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>This is a 
test comment.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/5j_h1SVa0SXc4JgQqpJtiC-f0tjIoKrBsvBni_XuKXs'/><link rel='self' 
type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/libgdata.
 
picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907161876232206500</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/comment-query b/gdata/tests/traces/picasaweb/comment-query
new file mode 100644
index 0000000..f1fdace
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/comment-query
@@ -0,0 +1,30 @@
+> GET 
/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?kind=comment&authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375367327
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 9 (0x79eab0), SoupSocket 8 (0x706be0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAAAOuUYXwRBAHgNEEbEl4k3Pfxl9EMLyqMFS6XDPU8V6x6UdXPfUNk8406bdjrbicpY09aRzdq5P_E2B4rdPeJG9iMU-Fcapg-QZcFs_CnJpq66uXpvAcZ2y_TSvFzzliXnxvIIPeU-8ofrMKG3STiGssYg2SkpME_sUu4LOpsBmcP8380ZMY-7PFQZYzZ1VmwB58hmU34NecZY4b3nngnRI4EKZiMseyudbDXuE-X6KIJp4SVY1RVvMCu5oRTHw5vd6C0s3JM-n9_u9xDsXBn-3xdKvPeGBINjX33DeqFvIgw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375367327
+< Soup-Debug: SoupMessage 9 (0x79eab0)
+< Expires: Thu, 01 Aug 2013 14:28:47 GMT
+< Date: Thu, 01 Aug 2013 14:28:47 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=qmWG4urWwy0e; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=Jigr844EcsvGgll0NpWOFQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DUQGRXg7eSp7ImA9WhFWE0s."
+< Last-Modified: Thu, 01 Aug 2013 14:28:44 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DUQGRXg7eSp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314</id><updated>2013-08-01T14:28:44.601Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 
1</title><subtitle/><icon>https://lh6.googleusercontent.com/-ydx6CSpdiiU/UfpwixC0G7I/AAAAAAAAMmY/29Ju6Jjo1F8/s288/Test%252520file%2525201.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed
 
/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/EUBDOj2bbNKpAiyXjcQvHJpxYhV8BUZm-1WNNmPK6ZU'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?start-index=1&amp;max-results=500&amp;kind=comment&amp;authkey=Gv1sRgCKKx5unfo4qvuAE'/><generator
 version='1.00' uri='http:
 
//picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>500</openSearch:itemsPerPage><gphoto:id>5907162035673007314</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12902</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>3</gphoto:commentCount><gphoto:streamId>shared_group_5907162035673007314</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</e
 
xif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh6.googleusercontent.com/-ydx6CSpdiiU/UfpwixC0G7I/AAAAAAAAMmY/29Ju6Jjo1F8/Test%252520file%2525201.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-ydx6CSpdiiU/UfpwixC0G7I/AAAAAAAAMmY/29Ju6Jjo1F8/s72/Test%252520file%2525201.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh6.googleusercontent.com/-ydx6CSpdiiU/UfpwixC0G7I/AAAAAAAAMmY/29Ju6Jjo1F8/s144/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh6.googleusercontent.com/-ydx6CSpdiiU/UfpwixC0G7I/AAAAAAAAMmY/29Ju6Jjo1F8/s288/Test%252520file%2525201.j
 pg' height='92' width='100'/><media:title type='plain'>Test file 1</media:title></media:group><entry 
gd:etag='W/&quot;DUQGQX47eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157663040073732</id><published>2013-08-01T14:28:40.000Z</published><updated>2013-08-01T14:28:40.000Z</updated><app:edited>2013-08-01T14:28:40.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
1.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/EUBDOj2bbNKpAiyXjcQvHJpxYhV8BUZm-1WNNmPK6ZU'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157663040073732?authkey=Gv1sRgCKKx5unfo4qvuAE'
 /><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157663040073732?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907157663040073732</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry><entry
 
gd:etag='W/&quot;DUQGQn47eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157674275715268</id><published>2013-08-01T14:28:43.000Z</published><updated>2013-08-01T14:28:43.000Z</
 updated><app:edited>2013-08-01T14:28:43.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
2.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/EUBDOj2bbNKpAiyXjcQvHJpxYhV8BUZm-1WNNmPK6ZU'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157674275715268?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157674275715268?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><
 
gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907157674275715268</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry><entry
 
gd:etag='W/&quot;DUQGRX47eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157680201591892</id><published>2013-08-01T14:28:44.000Z</published><updated>2013-08-01T14:28:44.000Z</updated><app:edited>2013-08-01T14:28:44.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
3.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/EUBDOj2bbNKpAiyXjcQvHJpxYhV8BUZm-1WNNmPK6ZU'/><link rel='self' 
type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157680201591892?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157680201591892?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907157680201591892</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/comment-query-async-progress-closure 
b/gdata/tests/traces/picasaweb/comment-query-async-progress-closure
new file mode 100644
index 0000000..4c22022
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/comment-query-async-progress-closure
@@ -0,0 +1,30 @@
+> GET 
/data/feed/api/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754?kind=comment&authkey=Gv1sRgCKzp_q_ZisOlvAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375367380
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 37 (0x7fffe401f2b0), SoupSocket 24 (0x706a60)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAAAOuUYXwRBAHgNEEbEl4k3Pfxl9EMLyqMFS6XDPU8V6x6UdXPfUNk8406bdjrbicpY09aRzdq5P_E2B4rdPeJG9iMU-Fcapg-QZcFs_CnJpq66uXpvAcZ2y_TSvFzzliXnxvIIPeU-8ofrMKG3STiGssYg2SkpME_sUu4LOpsBmcP8380ZMY-7PFQZYzZ1VmwB58hmU34NecZY4b3nngnRI4EKZiMseyudbDXuE-X6KIJp4SVY1RVvMCu5oRTHw5vd6C0s3JM-n9_u9xDsXBn-3xdKvPeGBINjX33DeqFvIgw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375367381
+< Soup-Debug: SoupMessage 37 (0x7fffe401f2b0)
+< Expires: Thu, 01 Aug 2013 14:29:41 GMT
+< Date: Thu, 01 Aug 2013 14:29:41 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=x14s9aNnNpqE; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=Y9NAa9ozRLRgykS0lvnWYg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DUQMQXwyeSp7ImA9WhFWE0s."
+< Last-Modified: Thu, 01 Aug 2013 14:29:40 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DUQMQXwyeSp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754</id><updated>2013-08-01T14:29:40.291Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 
1</title><subtitle/><icon>https://lh3.googleusercontent.com/-nJjHqtfxPzk/Ufpwxhca1PI/AAAAAAAAMoY/Vmbv_is5mJA/s288/Test%252520file%2525201.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed
 
/api/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754?authkey=Gv1sRgCKzp_q_ZisOlvAE'/><link
 rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754?authkey=Gv1sRgCKzp_q_ZisOlvAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754?authkey=Gv1sRgCKzp_q_ZisOlvAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/F1G4JwoTTwpz1wP1AMGJVgQGFpVu53-T_2zZ77rSteg'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754?start-index=1&amp;max-results=500&amp;kind=comment&amp;authkey=Gv1sRgCKzp_q_ZisOlvAE'/><generator
 version='1.00' uri='http:
 
//picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>500</openSearch:itemsPerPage><gphoto:id>5907157857343296754</gphoto:id><gphoto:albumid>5907157848164766801</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12934</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>3</gphoto:commentCount><gphoto:streamId>shared_group_5907157857343296754</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</e
 
xif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-nJjHqtfxPzk/Ufpwxhca1PI/AAAAAAAAMoY/Vmbv_is5mJA/Test%252520file%2525201.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-nJjHqtfxPzk/Ufpwxhca1PI/AAAAAAAAMoY/Vmbv_is5mJA/s72/Test%252520file%2525201.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-nJjHqtfxPzk/Ufpwxhca1PI/AAAAAAAAMoY/Vmbv_is5mJA/s144/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-nJjHqtfxPzk/Ufpwxhca1PI/AAAAAAAAMoY/Vmbv_is5mJA/s288/Test%252520file%2525201.j
 pg' height='92' width='100'/><media:title type='plain'>Test file 1</media:title></media:group><entry 
gd:etag='W/&quot;DUQDRn47eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754/commentid/5907157905758764500</id><published>2013-08-01T14:29:37.000Z</published><updated>2013-08-01T14:29:37.000Z</updated><app:edited>2013-08-01T14:29:37.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
1.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/F1G4JwoTTwpz1wP1AMGJVgQGFpVu53-T_2zZ77rSteg'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754/commentid/5907157905758764500?authkey=Gv1sRgCKzp_q_ZisOlvAE'
 /><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754/commentid/5907157905758764500?authkey=Gv1sRgCKzp_q_ZisOlvAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907157905758764500</gphoto:id><gphoto:photoid>5907157857343296754</gphoto:photoid></entry><entry
 
gd:etag='W/&quot;DUQDSH47eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754/commentid/5907157916817560932</id><published>2013-08-01T14:29:39.000Z</published><updated>2013-08-01T14:29:39.000Z</
 updated><app:edited>2013-08-01T14:29:39.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
2.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/F1G4JwoTTwpz1wP1AMGJVgQGFpVu53-T_2zZ77rSteg'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754/commentid/5907157916817560932?authkey=Gv1sRgCKzp_q_ZisOlvAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754/commentid/5907157916817560932?authkey=Gv1sRgCKzp_q_ZisOlvAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><
 
gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907157916817560932</gphoto:id><gphoto:photoid>5907157857343296754</gphoto:photoid></entry><entry
 
gd:etag='W/&quot;DUQMQX47eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754/commentid/5907157918906770116</id><published>2013-08-01T14:29:40.000Z</published><updated>2013-08-01T14:29:40.000Z</updated><app:edited>2013-08-01T14:29:40.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
3.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/F1G4JwoTTwpz1wP1AMGJVgQGFpVu53-T_2zZ77rSteg'/><link rel='self' 
type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754/commentid/5907157918906770116?authkey=Gv1sRgCKzp_q_ZisOlvAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907157848164766801/photoid/5907157857343296754/commentid/5907157918906770116?authkey=Gv1sRgCKzp_q_ZisOlvAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907157918906770116</gphoto:id><gphoto:photoid>5907157857343296754</gphoto:photoid></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/comment_delete-async 
b/gdata/tests/traces/picasaweb/comment_delete-async
new file mode 100644
index 0000000..2e4e316
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/comment_delete-async
@@ -0,0 +1,26 @@
+> DELETE 
/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157991014140692?authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375370603
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 22 (0x7fffe40210a0), SoupSocket 16 (0x7fffe40039a0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAAB86Pi8rzCqWXqIEzPXZzCnRN-eogX98xY72dnpn8D-bI_huo8ii6KGlO-JGx1j3fOwSwnULClHn2WfkMJpXq9F2V5OEEOX3QeD9u3OzN1ecfPaRlT4itJTQYGQnRLHRdNCoNyueiCaKfo_FWFe1wjM-0KBD0PeItJ3S7T6EfQfYzSWruT6nl8hzBowhTxvGe8g0U2N-Y-BoqGHT1LNXEg31Qd7WzTBoXlSFt66A3B0yznUBRVWVNw-vK7V4oyFbWPtll6VEr3o-_LxLeTKicv5SVzw_YEwnj1ostJeRsE5HQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375370604
+< Soup-Debug: SoupMessage 22 (0x7fffe40210a0)
+< Expires: Thu, 01 Aug 2013 15:23:24 GMT
+< Date: Thu, 01 Aug 2013 15:23:24 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=WAE1zkbt8IgD; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=9KURrLSyQglUdlPioxKoJg; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/picasaweb/comment_delete-async-cancellation 
b/gdata/tests/traces/picasaweb/comment_delete-async-cancellation
new file mode 100644
index 0000000..44fc8c6
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/comment_delete-async-cancellation
@@ -0,0 +1,26 @@
+> DELETE 
/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157991014140692?authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375370623
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 37 (0x7fffe4021730), SoupSocket 25 (0x783300)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAAB86Pi8rzCqWXqIEzPXZzCnRN-eogX98xY72dnpn8D-bI_huo8ii6KGlO-JGx1j3fOwSwnULClHn2WfkMJpXq9F2V5OEEOX3QeD9u3OzN1ecfPaRlT4itJTQYGQnRLHRdNCoNyueiCaKfo_FWFe1wjM-0KBD0PeItJ3S7T6EfQfYzSWruT6nl8hzBowhTxvGe8g0U2N-Y-BoqGHT1LNXEg31Qd7WzTBoXlSFt66A3B0yznUBRVWVNw-vK7V4oyFbWPtll6VEr3o-_LxLeTKicv5SVzw_YEwnj1ostJeRsE5HQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 400 Bad Request
+< Soup-Debug-Timestamp: 1375370623
+< Soup-Debug: SoupMessage 37 (0x7fffe4021730)
+< Expires: Thu, 01 Aug 2013 15:23:44 GMT
+< Date: Thu, 01 Aug 2013 15:23:44 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=4n7L3rwuYT-N; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=zpsRfD2kUWOsWY6IOUiQ8g; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: text/html; charset=UTF-8
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< Invalid commentId 5907157991014140692
+  
diff --git a/gdata/tests/traces/picasaweb/comment_insert-async 
b/gdata/tests/traces/picasaweb/comment_insert-async
new file mode 100644
index 0000000..6602492
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/comment_insert-async
@@ -0,0 +1,34 @@
+> POST 
/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375368324
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 15 (0x7fffe40160b0), SoupSocket 12 (0x7fffe4003a60)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'></title><content type='text'>This is a test 
comment.</content><category term='http://schemas.google.com/photos/2007#comment' 
scheme='http://schemas.google.com/g/2005#kind'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375368325
+< Soup-Debug: SoupMessage 15 (0x7fffe40160b0)
+< Expires: Thu, 01 Aug 2013 14:45:25 GMT
+< Date: Thu, 01 Aug 2013 14:45:25 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=e_Ko7BjRrHsw; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=9qsRwz5RJUtkks-KxGCw0Q; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: W/"AkQGRXo9fSp7ImA9WhFWE0s."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;AkQGRXo9fSp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500</id><published>2013-08-01T14:45:24.465Z</published><updated>2013-08-01T14:45:24.465Z</updated><app:edited>2013-08-01T14:45:24.465Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>This is a 
test comment.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/dfwIZjuUJANrPmLymoCXSwbDeNidHwc-nWhrCNie1ms'/><link rel='self' 
type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/libgdata.
 
picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907161876232206500</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/comment_insert-async-cancellation 
b/gdata/tests/traces/picasaweb/comment_insert-async-cancellation
new file mode 100644
index 0000000..38d8ae9
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/comment_insert-async-cancellation
@@ -0,0 +1,34 @@
+> POST 
/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375368360
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 24 (0x7fffe0032d50), SoupSocket 18 (0x7fffe4003e20)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'></title><content type='text'>This is a test 
comment.</content><category term='http://schemas.google.com/photos/2007#comment' 
scheme='http://schemas.google.com/g/2005#kind'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375368361
+< Soup-Debug: SoupMessage 24 (0x7fffe0032d50)
+< Expires: Thu, 01 Aug 2013 14:46:01 GMT
+< Date: Thu, 01 Aug 2013 14:46:01 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=jYvRemGqDpG_; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=F6X4LNOPM-8mScUSHDZ1Dw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: W/"AkQCQXk6fip7ImA9WhFWE0s."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;AkQCQXk6fip7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500</id><published>2013-08-01T14:46:00.716Z</published><updated>2013-08-01T14:46:00.716Z</updated><app:edited>2013-08-01T14:46:00.716Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>This is a 
test comment.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/TclHBnxkCWRiCOH8UL0V8anPQSJCD8MPruhZxgfAX5U'/><link rel='self' 
type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/libgdata.
 
picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907161876232206500</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/comment_query-async 
b/gdata/tests/traces/picasaweb/comment_query-async
new file mode 100644
index 0000000..d276170
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/comment_query-async
@@ -0,0 +1,30 @@
+> GET 
/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?kind=comment&authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375367356
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 23 (0x7fffe401f0d0), SoupSocket 16 (0x706ca0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAAAOuUYXwRBAHgNEEbEl4k3Pfxl9EMLyqMFS6XDPU8V6x6UdXPfUNk8406bdjrbicpY09aRzdq5P_E2B4rdPeJG9iMU-Fcapg-QZcFs_CnJpq66uXpvAcZ2y_TSvFzzliXnxvIIPeU-8ofrMKG3STiGssYg2SkpME_sUu4LOpsBmcP8380ZMY-7PFQZYzZ1VmwB58hmU34NecZY4b3nngnRI4EKZiMseyudbDXuE-X6KIJp4SVY1RVvMCu5oRTHw5vd6C0s3JM-n9_u9xDsXBn-3xdKvPeGBINjX33DeqFvIgw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375367357
+< Soup-Debug: SoupMessage 23 (0x7fffe401f0d0)
+< Expires: Thu, 01 Aug 2013 14:29:17 GMT
+< Date: Thu, 01 Aug 2013 14:29:17 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=47g2eU9bGeeJ; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=KoOYSBpmixKl-hZe1Mttfw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DUQBR386fip7ImA9WhFWE0s."
+< Last-Modified: Thu, 01 Aug 2013 14:29:16 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DUQBR386fip7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314</id><updated>2013-08-01T14:29:16.116Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 
1</title><subtitle/><icon>https://lh3.googleusercontent.com/-X3MVN6ZbCzk/UfpwqAwYx_I/AAAAAAAAMnY/ftfli5UbpF0/s288/Test%252520file%2525201.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed
 
/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/zhLLKGA0G3JMYOW8KY7yWAc7g5I0u-9cbuu2HkAIaTs'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?start-index=1&amp;max-results=500&amp;kind=comment&amp;authkey=Gv1sRgCKKx5unfo4qvuAE'/><generator
 version='1.00' uri='http:
 
//picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>500</openSearch:itemsPerPage><gphoto:id>5907162035673007314</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12918</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>3</gphoto:commentCount><gphoto:streamId>shared_group_5907162035673007314</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</e
 
xif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-X3MVN6ZbCzk/UfpwqAwYx_I/AAAAAAAAMnY/ftfli5UbpF0/Test%252520file%2525201.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-X3MVN6ZbCzk/UfpwqAwYx_I/AAAAAAAAMnY/ftfli5UbpF0/s72/Test%252520file%2525201.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-X3MVN6ZbCzk/UfpwqAwYx_I/AAAAAAAAMnY/ftfli5UbpF0/s144/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-X3MVN6ZbCzk/UfpwqAwYx_I/AAAAAAAAMnY/ftfli5UbpF0/s288/Test%252520file%2525201.j
 pg' height='92' width='100'/><media:title type='plain'>Test file 1</media:title></media:group><entry 
gd:etag='W/&quot;DUQASH47eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157786879816340</id><published>2013-08-01T14:29:09.000Z</published><updated>2013-08-01T14:29:09.000Z</updated><app:edited>2013-08-01T14:29:09.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
1.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/zhLLKGA0G3JMYOW8KY7yWAc7g5I0u-9cbuu2HkAIaTs'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157786879816340?authkey=Gv1sRgCKKx5unfo4qvuAE'
 /><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157786879816340?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907157786879816340</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry><entry
 
gd:etag='W/&quot;DUQBRX47eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157806262100420</id><published>2013-08-01T14:29:14.000Z</published><updated>2013-08-01T14:29:14.000Z</
 updated><app:edited>2013-08-01T14:29:14.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
2.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/zhLLKGA0G3JMYOW8KY7yWAc7g5I0u-9cbuu2HkAIaTs'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157806262100420?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157806262100420?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><
 
gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907157806262100420</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry><entry
 
gd:etag='W/&quot;DUQBR347eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157816135657780</id><published>2013-08-01T14:29:16.000Z</published><updated>2013-08-01T14:29:16.000Z</updated><app:edited>2013-08-01T14:29:16.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
3.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/zhLLKGA0G3JMYOW8KY7yWAc7g5I0u-9cbuu2HkAIaTs'/><link rel='self' 
type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157816135657780?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157816135657780?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907157816135657780</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/comment_query-async-cancellation 
b/gdata/tests/traces/picasaweb/comment_query-async-cancellation
new file mode 100644
index 0000000..817b6a7
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/comment_query-async-cancellation
@@ -0,0 +1,30 @@
+> GET 
/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?kind=comment&authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375367407
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 54 (0x7fffe401f2b0), SoupSocket 34 (0x7068e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAAAOuUYXwRBAHgNEEbEl4k3Pfxl9EMLyqMFS6XDPU8V6x6UdXPfUNk8406bdjrbicpY09aRzdq5P_E2B4rdPeJG9iMU-Fcapg-QZcFs_CnJpq66uXpvAcZ2y_TSvFzzliXnxvIIPeU-8ofrMKG3STiGssYg2SkpME_sUu4LOpsBmcP8380ZMY-7PFQZYzZ1VmwB58hmU34NecZY4b3nngnRI4EKZiMseyudbDXuE-X6KIJp4SVY1RVvMCu5oRTHw5vd6C0s3JM-n9_u9xDsXBn-3xdKvPeGBINjX33DeqFvIgw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375367408
+< Soup-Debug: SoupMessage 54 (0x7fffe401f2b0)
+< Expires: Thu, 01 Aug 2013 14:30:08 GMT
+< Date: Thu, 01 Aug 2013 14:30:08 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=mVkpo4awCYKV; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=pWLDGATMUzoY1z0Y8UIoug; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DUMEQXc_eyp7ImA9WhFWE0s."
+< Last-Modified: Thu, 01 Aug 2013 14:30:00 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DUMEQXc_eyp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314</id><updated>2013-08-01T14:30:00.943Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 
1</title><subtitle/><icon>https://lh6.googleusercontent.com/-Qn6W760I1xk/Ufpw3RqKIwI/AAAAAAAAMpY/XKb2o8b7_v0/s288/Test%252520file%2525201.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed
 
/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/tvuFAuI-9TZljsqogrDrzd62mdOu5-4lWildw13I8AE'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?start-index=1&amp;max-results=500&amp;kind=comment&amp;authkey=Gv1sRgCKKx5unfo4qvuAE'/><generator
 version='1.00' uri='http:
 
//picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>500</openSearch:itemsPerPage><gphoto:id>5907162035673007314</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12950</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>3</gphoto:commentCount><gphoto:streamId>shared_group_5907162035673007314</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</e
 
xif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Qn6W760I1xk/Ufpw3RqKIwI/AAAAAAAAMpY/XKb2o8b7_v0/Test%252520file%2525201.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Qn6W760I1xk/Ufpw3RqKIwI/AAAAAAAAMpY/XKb2o8b7_v0/s72/Test%252520file%2525201.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Qn6W760I1xk/Ufpw3RqKIwI/AAAAAAAAMpY/XKb2o8b7_v0/s144/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Qn6W760I1xk/Ufpw3RqKIwI/AAAAAAAAMpY/XKb2o8b7_v0/s288/Test%252520file%2525201.j
 pg' height='92' width='100'/><media:title type='plain'>Test file 1</media:title></media:group><entry 
gd:etag='W/&quot;DUQNRn47eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157991014140692</id><published>2013-08-01T14:29:57.000Z</published><updated>2013-08-01T14:29:57.000Z</updated><app:edited>2013-08-01T14:29:57.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
1.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/tvuFAuI-9TZljsqogrDrzd62mdOu5-4lWildw13I8AE'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157991014140692?authkey=Gv1sRgCKKx5unfo4qvuAE'
 /><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157991014140692?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907157991014140692</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry><entry
 
gd:etag='W/&quot;DUQNSX47eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158001023135444</id><published>2013-08-01T14:29:58.000Z</published><updated>2013-08-01T14:29:58.000Z</
 updated><app:edited>2013-08-01T14:29:58.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
2.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/tvuFAuI-9TZljsqogrDrzd62mdOu5-4lWildw13I8AE'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158001023135444?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158001023135444?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><
 
gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907158001023135444</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry><entry
 
gd:etag='W/&quot;DUMEQX47eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158005467377316</id><published>2013-08-01T14:30:00.000Z</published><updated>2013-08-01T14:30:00.000Z</updated><app:edited>2013-08-01T14:30:00.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
3.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/tvuFAuI-9TZljsqogrDrzd62mdOu5-4lWildw13I8AE'/><link rel='self' 
type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158005467377316?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158005467377316?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAAAAA/VkmKMmZUUy8/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907158005467377316</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/download-photo b/gdata/tests/traces/picasaweb/download-photo
new file mode 100644
index 0000000..f23dc32
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/download-photo
@@ -0,0 +1,25 @@
+> GET /-poVqadt-OAg/Ufp0oeB9woI/AAAAAAAAMsU/tsfWY3JagZk/Test%252520file%2525203.jpg HTTP/1.1
+> Soup-Debug-Timestamp: 1375371652
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 6 (0x98c290), SoupSocket 6 (0x7fffe40038e0)
+> Host: lh6.googleusercontent.com
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375371652
+< Soup-Debug: SoupMessage 6 (0x98c290)
+< Access-Control-Allow-Origin: *
+< ETag: "v3329"
+< Expires: Fri, 02 Aug 2013 15:40:52 GMT
+< Cache-control: public, max-age=86400, no-transform
+< Content-Disposition: inline;filename="Test file 3.jpg"
+< Content-Type: image/jpeg
+< X-Content-Type-Options: nosniff
+< Date: Thu, 01 Aug 2013 15:40:52 GMT
+< Server: fife
+< Content-Length: 8896
+< X-XSS-Protection: 1; mode=block
+< 
+< ����
+  
diff --git a/gdata/tests/traces/picasaweb/download-thumbnails 
b/gdata/tests/traces/picasaweb/download-thumbnails
new file mode 100644
index 0000000..35c9e55
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/download-thumbnails
@@ -0,0 +1,101 @@
+> GET /-poVqadt-OAg/Ufp0oeB9woI/AAAAAAAAMsU/tsfWY3JagZk/s288/Test%252520file%2525203.jpg HTTP/1.1
+> Soup-Debug-Timestamp: 1375371675
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 14 (0x98c0b0), SoupSocket 12 (0x783240)
+> Host: lh3.googleusercontent.com
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375371676
+< Soup-Debug: SoupMessage 14 (0x98c0b0)
+< Access-Control-Allow-Origin: *
+< ETag: "v3333"
+< Expires: Fri, 02 Aug 2013 15:41:16 GMT
+< Cache-control: public, max-age=86400, no-transform
+< Content-Disposition: inline;filename="Test file 3.jpg"
+< Content-Type: image/jpeg
+< X-Content-Type-Options: nosniff
+< Date: Thu, 01 Aug 2013 15:41:16 GMT
+< Server: fife
+< Content-Length: 5993
+< X-XSS-Protection: 1; mode=block
+< 
+< ����
+  
+> GET /-poVqadt-OAg/Ufp0oeB9woI/AAAAAAAAMsU/tsfWY3JagZk/s288/Test%252520file%2525203.jpg HTTP/1.1
+> Soup-Debug-Timestamp: 1375371676
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 15 (0x98c290), SoupSocket 12 (0x783240)
+> Host: lh3.googleusercontent.com
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375371676
+< Soup-Debug: SoupMessage 15 (0x98c290)
+< Access-Control-Allow-Origin: *
+< ETag: "v3333"
+< Expires: Fri, 02 Aug 2013 15:41:16 GMT
+< Content-Disposition: inline;filename="Test file 3.jpg"
+< Content-Type: image/jpeg
+< X-Content-Type-Options: nosniff
+< Date: Thu, 01 Aug 2013 15:41:16 GMT
+< Server: fife
+< Content-Length: 5993
+< X-XSS-Protection: 1; mode=block
+< Cache-control: public, max-age=86400, no-transform
+< Age: 0
+< 
+< ����
+  
+> GET /-poVqadt-OAg/Ufp0oeB9woI/AAAAAAAAMsU/tsfWY3JagZk/s144/Test%252520file%2525203.jpg HTTP/1.1
+> Soup-Debug-Timestamp: 1375371676
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 16 (0x98c1a0), SoupSocket 12 (0x783240)
+> Host: lh3.googleusercontent.com
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375371676
+< Soup-Debug: SoupMessage 16 (0x98c1a0)
+< Access-Control-Allow-Origin: *
+< ETag: "v3333"
+< Expires: Fri, 02 Aug 2013 15:41:16 GMT
+< Cache-control: public, max-age=86400, no-transform
+< Content-Disposition: inline;filename="Test file 3.jpg"
+< Content-Type: image/jpeg
+< X-Content-Type-Options: nosniff
+< Date: Thu, 01 Aug 2013 15:41:16 GMT
+< Server: fife
+< Content-Length: 5993
+< X-XSS-Protection: 1; mode=block
+< 
+< ����
+  
+> GET /-poVqadt-OAg/Ufp0oeB9woI/AAAAAAAAMsU/tsfWY3JagZk/s72/Test%252520file%2525203.jpg HTTP/1.1
+> Soup-Debug-Timestamp: 1375371676
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 17 (0x98c380), SoupSocket 12 (0x783240)
+> Host: lh3.googleusercontent.com
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375371677
+< Soup-Debug: SoupMessage 17 (0x98c380)
+< Access-Control-Allow-Origin: *
+< ETag: "v3333"
+< Expires: Fri, 02 Aug 2013 15:41:16 GMT
+< Cache-control: public, max-age=86400, no-transform
+< Content-Disposition: inline;filename="Test file 3.jpg"
+< Content-Type: image/jpeg
+< X-Content-Type-Options: nosniff
+< Date: Thu, 01 Aug 2013 15:41:16 GMT
+< Server: fife
+< Content-Length: 3634
+< X-XSS-Protection: 1; mode=block
+< 
+< ����
+  
diff --git a/gdata/tests/traces/picasaweb/global-authentication 
b/gdata/tests/traces/picasaweb/global-authentication
new file mode 100644
index 0000000..da043a6
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/global-authentication
@@ -0,0 +1,27 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375368273
+> Soup-Debug: SoupSession 1 (0x6681d0), SoupMessage 1 (0x98c0b0), SoupSocket 1 (0x7830c0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375368274
+< Soup-Debug: SoupMessage 1 (0x98c0b0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Thu, 01 Aug 2013 14:44:33 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 947
+< Server: GSE
+< 
+< 
SID=DQAAANgAAABOuZMrYf2kCl-mSO10kWzwQCikYNOSFd1u_FVG81HBnSCCplm1glYNKbmDVCurMWko64LgjbiBhySDFTnZxqZE6E2dcBMpFNpginqNciQbwFzCu8y_IBagl3iZ9ZRxtjEy1d5Rc8dxKLYU5dAobdHE6uOYqnkkCyppBzSMS12rz8TlC0XShs34nOYLYEcowmbtoDYaq3Zpj8ADsGS9uLnhRnnQdpQKD8tTQVzBXSrqs1BGdUN1NLZzNGU1cogGFKul2lR32KCjq9xZaci5kG-0x2VewrymokXHVT-bTqp2jw
+< 
LSID=DQAAANsAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDsaIOVOTUlEAKdsBR0L2X3c1-0v2TlcNdJMdKw1-RYobio-563nxLcU_RkD2PoSwoD5IxnwJBAV0QacWyWCKtK_jXmjaghI9dv4y7wDe5teFH1Wp_bOiwRNgYrC3HB5kiLwiGK9m1kromXfMKr6ey5zr686g5k6kLV_Bn5HS3qn5Lce3ErYJlGiXlgbuX89efg61u3aXlvs4IoqnhW9JwchecisXVxJ-_4QQdHghQM5g
+< 
Auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+  
diff --git a/gdata/tests/traces/picasaweb/insert-album b/gdata/tests/traces/picasaweb/insert-album
new file mode 100644
index 0000000..d0d0e8e
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/insert-album
@@ -0,0 +1,64 @@
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193224
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 60 (0x7fffe40191d0), SoupSocket 27 (0x7cbdf0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title 
type='text'>Thanksgiving photos</title><summary type='text'>Family photos of the 
feast!</summary><rights>private</rights><category term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Thanksgiving photos</media:title><media:description type='plain'>Family photos of the 
feast!</media:description></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375193224
+< Soup-Debug: SoupMessage 60 (0x7fffe40191d0)
+< Expires: Tue, 30 Jul 2013 14:07:04 GMT
+< Date: Tue, 30 Jul 2013 14:07:04 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=1EyCoJwu_n78; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=YvA5qIylphVzW0GxwNdVDw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409926225606689</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-30T14:07:04.400Z</updated><app:edited>2013-07-30T14:07:04.400Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='alternate' type='text/ht
 ml' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos98?authkey=Gv1sRgCIHX18X_kLpH'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689/acl?authkey=Gv1sRgCIHX18X_kLpH'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409926225606689</gphoto:id><gphoto:name>ThanksgivingPhotos98</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>103
 
4589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-5KM4I5kjnq0/UffIiM6EuCE/AAAAAAAAMe4/qtNcFWlEVkU/ThanksgivingPhotos98.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-5KM4I5kjnq0/UffIiM6EuCE/AAAAAAAAMe4/qtNcFWlEVkU/s160-c/ThanksgivingPhotos98.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving photos</media:title></media:group></entry>
+  
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193224
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 61 (0x7fffd800eca0), SoupSocket 27 (0x7cbdf0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193225
+< Soup-Debug: SoupMessage 61 (0x7fffd800eca0)
+< Expires: Tue, 30 Jul 2013 14:07:05 GMT
+< Date: Tue, 30 Jul 2013 14:07:05 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=GC-ICG7ox22z; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=-YaNUbgF96-m_Y-BBNzWPQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUGRXo7eCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:07:04 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUUGRXo7eCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:07:04.400Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409926225606689</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-30T14:07:04.400Z</updated><app:edited>2013-07-30T14:07:04.400Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='
 
https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos98?authkey=Gv1sRgCIHX18X_kLpH'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689/acl?authkey=Gv1sRgCIHX18X_kLpH'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409926225606689</gpho
 to:id><gphoto:name>ThanksgivingPhotos98</gphoto:name><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-5KM4I5kjnq0/UffIiM6EuCE/AAAAAAAAMe4/qtNcFWlEVkU/ThanksgivingPhotos98.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-5KM4I5kjnq0/UffIiM6EuCE/AAAAAAAAMe4/qtNcFWlEVkU/s160-c/ThanksgivingPhotos98.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry></fe
 ed>
+  
diff --git a/gdata/tests/traces/picasaweb/insert_album-async b/gdata/tests/traces/picasaweb/insert_album-async
new file mode 100644
index 0000000..6157723
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/insert_album-async
@@ -0,0 +1,34 @@
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193226
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 63 (0x7fffd800ebb0), SoupSocket 28 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title 
type='text'>Thanksgiving photos</title><summary type='text'>Family photos of the 
feast!</summary><rights>private</rights><category term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Thanksgiving photos</media:title><media:description type='plain'>Family photos of the 
feast!</media:description></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375193227
+< Soup-Debug: SoupMessage 63 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:07:07 GMT
+< Date: Tue, 30 Jul 2013 14:07:07 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=flrQn82pg8oZ; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=92L2TmpD5Oqxpf2macZZ9Q; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409932028162849?authkey=Gv1sRgCN6V85-a0s7xVQ
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409932028162849?authkey=Gv1sRgCN6V85-a0s7xVQ
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409932028162849</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-30T14:07:06.662Z</updated><app:edited>2013-07-30T14:07:06.662Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409932028162849?authkey=Gv1sRgCN6V85-a0s7xVQ'/><link
 rel='alternate' type='text/
 html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos99?authkey=Gv1sRgCN6V85-a0s7xVQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409932028162849?authkey=Gv1sRgCN6V85-a0s7xVQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409932028162849?authkey=Gv1sRgCN6V85-a0s7xVQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409932028162849/acl?authkey=Gv1sRgCN6V85-a0s7xVQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409932028162849</gphoto:id><gphoto:name>ThanksgivingPhotos99</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:tim
 
estamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-tcLfFa1jihY/UffIiihgsyE/AAAAAAAAMfA/6vl076Gnvx8/ThanksgivingPhotos99.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-tcLfFa1jihY/UffIiihgsyE/AAAAAAAAMfA/6vl076Gnvx8/s160-c/ThanksgivingPhotos99.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving photos</media:title></media:group></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/insert_album-async-cancellation 
b/gdata/tests/traces/picasaweb/insert_album-async-cancellation
new file mode 100644
index 0000000..784255a
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/insert_album-async-cancellation
@@ -0,0 +1,50 @@
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193228
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 65 (0x7fffe40192c0), SoupSocket 29 (0x7fffe00287a0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title 
type='text'>Thanksgiving photos</title><summary type='text'>Family photos of the 
feast!</summary><rights>private</rights><category term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Thanksgiving photos</media:title><media:description type='plain'>Family photos of the 
feast!</media:description></media:group></entry>
+  
+< HTTP/1.1 1 Cancelled
+< Soup-Debug-Timestamp: 1375193228
+< Soup-Debug: SoupMessage 65 (0x7fffe40192c0)
+  
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193229
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 66 (0x7fffd800ebb0), SoupSocket 30 (0x7fffdc0046c0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title 
type='text'>Thanksgiving photos</title><summary type='text'>Family photos of the 
feast!</summary><rights>private</rights><category term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Thanksgiving photos</media:title><media:description type='plain'>Family photos of the 
feast!</media:description></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375193230
+< Soup-Debug: SoupMessage 66 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:07:10 GMT
+< Date: Tue, 30 Jul 2013 14:07:10 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=UVVD9lHnGV2p; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=sxdiJ4i3KYb1qWXRQGofwg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409948133134593</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-30T14:07:09.809Z</updated><app:edited>2013-07-30T14:07:09.809Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ'/><link
 rel='alternate' type='text/
 html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos101?authkey=Gv1sRgCNOliffP6fuuCQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593/acl?authkey=Gv1sRgCNOliffP6fuuCQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409948133134593</gphoto:id><gphoto:name>ThanksgivingPhotos101</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:t
 
imestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-IB76ZjJ9g4I/UffIjehPEQE/AAAAAAAAMfM/zQylT1ctwRc/ThanksgivingPhotos101.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-IB76ZjJ9g4I/UffIjehPEQE/AAAAAAAAMfM/zQylT1ctwRc/s160-c/ThanksgivingPhotos101.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving photos</media:title></media:group></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/query-all-albums b/gdata/tests/traces/picasaweb/query-all-albums
new file mode 100644
index 0000000..5c76ef7
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-all-albums
@@ -0,0 +1,30 @@
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193180
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 5 (0x78d0a0), SoupSocket 4 (0x7cbc70)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193181
+< Soup-Debug: SoupMessage 5 (0x78d0a0)
+< Expires: Tue, 30 Jul 2013 14:06:21 GMT
+< Date: Tue, 30 Jul 2013 14:06:21 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=tAAF9Rvb-fVX; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=zNYej99Oqg85v9BtB-ET4Q; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUYDSHc4fCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:19 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query-all-albums-async-progress-closure 
b/gdata/tests/traces/picasaweb/query-all-albums-async-progress-closure
new file mode 100644
index 0000000..b8c45ce
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-all-albums-async-progress-closure
@@ -0,0 +1,30 @@
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193207
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 35 (0x7fffd800ed90), SoupSocket 16 (0x7cbaf0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193208
+< Soup-Debug: SoupMessage 35 (0x7fffd800ed90)
+< Expires: Tue, 30 Jul 2013 14:06:48 GMT
+< Date: Tue, 30 Jul 2013 14:06:48 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=YwfYre448Tsx; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=ECxuosml-CrBUXaV3Ew9iw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUERn0-eCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:47 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query-all-albums-with-limits 
b/gdata/tests/traces/picasaweb/query-all-albums-with-limits
new file mode 100644
index 0000000..2a2b817
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-all-albums-with-limits
@@ -0,0 +1,90 @@
+> GET /data/feed/api/user/default?start-index=1&max-results=1& HTTP/1.1
+> Soup-Debug-Timestamp: 1375193189
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 15 (0x78d0a0), SoupSocket 8 (0x7cbd30)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193189
+< Soup-Debug: SoupMessage 15 (0x78d0a0)
+< Expires: Tue, 30 Jul 2013 14:06:29 GMT
+< Date: Tue, 30 Jul 2013 14:06:29 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=VTIsSiiz24TI; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=cec8xqmpQbSkm8P0z7tfbQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUYMSXozfCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:28 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYMSXozfCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:28.484Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=2&amp;max-results=1'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</gene
 
rator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409770390610945</id><published>2013-07-30T14:06:27.000Z</published><updated>2013-07-30T14:06:28.484Z</updated><app:edited>2013-07-30T14:06:28.484Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for QueryAllAlbums</ti
 tle><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums65?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945/acl?authkey=Gv1sRgCJalpajqh4yAmw
 
E'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409770390610945</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums65</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193187000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-QZYiZ10BaFg/UffIZIYHZAE/AAAAAAAAMdE/Ee7V_yAqIGI/TestAlbum4ForQueryAllAlbums65.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-QZYiZ10BaFg/UffIZIYHZAE/AAAAAAAAMdE/Ee7V_yAqIGI/s160-c/TestAlbum4ForQueryAllAlbums65.jpg'
 height='160' 
 width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
+> GET /data/feed/api/user/default?start-index=2&max-results=1& HTTP/1.1
+> Soup-Debug-Timestamp: 1375193189
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 16 (0x78d550), SoupSocket 8 (0x7cbd30)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193189
+< Soup-Debug: SoupMessage 16 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:29 GMT
+< Date: Tue, 30 Jul 2013 14:06:29 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=XEIIwGhic-hF; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=yHPP3J7OLwaJSj-Qo-7wSA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUYMSXozfCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:28 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYMSXozfCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:28.484Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=2&amp;max-results=1'/><link
 rel='previous' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=3&amp;max-results=1'/><author><name>libgdata.pic
 asaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>2</openSearch:startIndex><openSearch:itemsPerPage>1</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409767655144225</id><published>2013-07-30T14:06:26.000Z</published><updated>2013-07-30T14:06:27.337Z</updated><app:edited>2013-07-30T14:06:27.337Z</app:ed
 ited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums66?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='appl
 ication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225/acl?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409767655144225</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums66</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193186000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-6FD1zjHLAwI/UffIY-L7eyE/AAAAAAAAMdA/PbAySOTqjDI/TestAlbum3ForQueryAllAlbums66.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:th
 umbnail 
url='https://lh5.googleusercontent.com/-6FD1zjHLAwI/UffIY-L7eyE/AAAAAAAAMdA/PbAySOTqjDI/s160-c/TestAlbum3ForQueryAllAlbums66.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
+> GET /data/feed/api/user/default?start-index=1&max-results=3& HTTP/1.1
+> Soup-Debug-Timestamp: 1375193189
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 17 (0x78d550), SoupSocket 8 (0x7cbd30)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193189
+< Soup-Debug: SoupMessage 17 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:30 GMT
+< Date: Tue, 30 Jul 2013 14:06:30 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=es0kWzlJdhrP; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=z83HUoAZOGYXavkr0AMHIg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUYMSXozfCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:28 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYMSXozfCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:28.484Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=3'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=4&amp;max-results=3'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</gene
 
rator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>3</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409770390610945</id><published>2013-07-30T14:06:27.000Z</published><updated>2013-07-30T14:06:28.484Z</updated><app:edited>2013-07-30T14:06:28.484Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for QueryAllAlbums</ti
 tle><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums65?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945/acl?authkey=Gv1sRgCJalpajqh4yAmw
 
E'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409770390610945</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums65</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193187000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-QZYiZ10BaFg/UffIZIYHZAE/AAAAAAAAMdE/Ee7V_yAqIGI/TestAlbum4ForQueryAllAlbums65.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-QZYiZ10BaFg/UffIZIYHZAE/AAAAAAAAMdE/Ee7V_yAqIGI/s160-c/TestAlbum4ForQueryAllAlbums65.jpg'
 height='160' 
 width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409767655144225</id><published>2013-07-30T14:06:26.000Z</published><updated>2013-07-30T14:06:27.337Z</updated><app:edited>2013-07-30T14:06:27.337Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums66?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='self' type='application/atom+xml' href='ht
 
tps://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225/acl?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409767655144225</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums66</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193186000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:use
 
r>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-6FD1zjHLAwI/UffIY-L7eyE/AAAAAAAAMdA/PbAySOTqjDI/TestAlbum3ForQueryAllAlbums66.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-6FD1zjHLAwI/UffIY-L7eyE/AAAAAAAAMdA/PbAySOTqjDI/s160-c/TestAlbum3ForQueryAllAlbums66.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409760167466529</id><published>2013-07-30T14:06:25.000Z</published><updated>2013-07-30T14:06:26.270Z</updated><app:edited>2013-07-30T14:06:26.270Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas
 .google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409760167466529?authkey=Gv1sRgCIG9pv3SjaafUw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums67?authkey=Gv1sRgCIG9pv3SjaafUw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409760167466529?authkey=Gv1sRgCIG9pv3SjaafUw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409760167466529?authkey=Gv1sRgCIG9pv3SjaafUw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.
 
picasaweb/albumid/5906409760167466529/acl?authkey=Gv1sRgCIG9pv3SjaafUw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409760167466529</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums67</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193185000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-TgBhr7RaKPg/UffIYiSuliE/AAAAAAAAMc8/GItVseZLgPY/TestAlbum2ForQueryAllAlbums67.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-TgBhr7RaKPg/UffIYiSuliE/AAAAAAAAMc
 8/GItVseZLgPY/s160-c/TestAlbum2ForQueryAllAlbums67.jpg' height='160' width='160'/><media:title 
type='plain'>Test album 2 for QueryAllAlbums</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query-files b/gdata/tests/traces/picasaweb/query-files
new file mode 100644
index 0000000..7cfa329
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-files
@@ -0,0 +1,30 @@
+> GET /data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375365715
+> Soup-Debug: SoupSession 1 (0x6682a0), SoupMessage 6 (0x78e2c0), SoupSocket 5 (0x814f60)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAADbKT_hVtH1iMNFS9uMoShgbOwfO1I8gu_QL1axjY7_RDwWa451TM_GNncBQYYNVbQl7II_qsuw32dZOzKBeQvC_v1PdhrjXO-NFJNCL5dzZba7l5SiuR1EKzVQXvM2LivcCCis9h0Kla7JqZxEb9MLnK4dFKZO3IRjWlfOYo6ZF5SQ8Sh79BYqZLgHcGvBBE9WgtvjjPpybc2XVUZo7c0rqe3oWNAEb-hQQrb_KNQ2fC1I2LA4Y5KvpsdQ7sK0ysK2gEPqx_nB3EPXUMz0emel44F92MzePN7w_NDZD6ILaw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375365715
+< Soup-Debug: SoupMessage 6 (0x78e2c0)
+< Expires: Thu, 01 Aug 2013 14:01:56 GMT
+< Date: Thu, 01 Aug 2013 14:01:56 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=HgHPJs9eYrxW; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=VhJDmQl_GikFUPNp-5ZEKA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"D0AFRXY6eCp7ImA9WhFWE0s."
+< Last-Modified: Thu, 01 Aug 2013 14:01:54 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;D0AFRXY6eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb/albumid/5907162005897469553</id><updated>2013-08-01T14:01:54.810Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><subtitle/><rights>private</rights><icon>https://lh4.googleusercontent.com/-CtgUPcEap3M/UfpqRGCuwDE/AAAAAAAAMi8/AosQHFkoqDE/s160-c/TestAlbumForQueryFiles28.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.
 com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCIbvuqunu_OdAw'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://picasaweb.google.com/data/upload/resumable/media/create-session/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles28?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https:/
 
/picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553?alt%3Drss%26authkey%3DGv1sRgCIbvuqunu_OdAw'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/acl?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553?start-index=1&amp;max-results=1000&amp;authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:tot
 
alResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:itemsPerPage><gphoto:id>5907162005897469553</gphoto:id><gphoto:name>TestAlbumForQueryFiles28</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375365698000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:allowPrints>true</gphoto:allowPrints><gphoto:allowDownloads>true</gphoto:allowDownloads><entry
 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314</id><published>2013-08-01T14:45:38.000Z</published><updated>2013-08-01T14:45:38.859Z</updated><app:edited>2013-08-01T14:45:38.859Z</app:edited><category
 scheme='http://schemas.google.
 com/g/2005#kind' term='http://schemas.google.com/photos/2007#photo'/><title>Test file 
1</title><summary/><content type='image/jpeg' 
src='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/Test%252520file%2525201.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles39?authkey=Gv1sRgCKKx5unfo4qvuAE#5907162035673007314'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/TclHBnxkCWRiCOH8UL0V8anPQSJCD8MPruhZxgfAX5U'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/59071620
 35673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553&amp;iid=5907162035673007314'/><gphoto:id>5907162035673007314</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12993</gph
 
oto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907162035673007314</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/Test%252520file%2525201.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description ty
 pe='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s72/Test%252520file%2525201.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s144/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s288/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 1</media:title></media:group></entry><entry 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150735804533922</id><published>2013-08-01T14:01:47.000Z</published><updated>2013-08-01T14:01:48.759Z</updated><app:edited>2013-08-01T14:01:48.759Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/pho
 tos/2007#photo'/><title>Test file 2</title><summary/><content type='image/jpeg' 
src='https://lh3.googleusercontent.com/-RltiWbycVSo/UfpqS_pRDKI/AAAAAAAAMiw/_9ctA9JycPw/Test%252520file%2525202.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150735804533922?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles28?authkey=Gv1sRgCKKx5unfo4qvuAE#5907150735804533922'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/_pmT1eoBckPSKhzcVg2idQSbMZXhNuK8PzLdsH_ZdZ4'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150735804533922?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 re
 l='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150735804533922?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150735804533922?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553&amp;iid=5907150735804533922'/><gphoto:id>5907150735804533922</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12844</gphoto:imageVersion><gphoto:commentingEnabled>true</gph
 
oto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907150735804533922</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-RltiWbycVSo/UfpqS_pRDKI/AAAAAAAAMiw/_9ctA9JycPw/Test%252520file%2525202.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='h
 
ttps://lh3.googleusercontent.com/-RltiWbycVSo/UfpqS_pRDKI/AAAAAAAAMiw/_9ctA9JycPw/s72/Test%252520file%2525202.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-RltiWbycVSo/UfpqS_pRDKI/AAAAAAAAMiw/_9ctA9JycPw/s144/Test%252520file%2525202.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-RltiWbycVSo/UfpqS_pRDKI/AAAAAAAAMiw/_9ctA9JycPw/s288/Test%252520file%2525202.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 2</media:title></media:group></entry><entry 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150746078059218</id><published>2013-08-01T14:01:50.000Z</published><updated>2013-08-01T14:01:52.246Z</updated><app:edited>2013-08-01T14:01:52.246Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 3</title><summary/
<content type='image/jpeg' 
src='https://lh3.googleusercontent.com/-UoUp1RY-HzI/UfpqTl6qmtI/AAAAAAAAMi4/kjB6kl2TstQ/Test%252520file%2525203.jpg'/><link
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150746078059218?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles28?authkey=Gv1sRgCKKx5unfo4qvuAE#5907150746078059218'/><link
rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/8GOnjgn6NI1zCCfDjHTJ-wSbMZXhNuK8PzLdsH_ZdZ4'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150746078059218?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
rel='edit' type='application/atom+xml' href='https://p
 
icasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150746078059218?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150746078059218?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553&amp;iid=5907150746078059218'/><gphoto:id>5907150746078059218</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12846</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto
 :commentCount><gphoto:streamId>shared_group_5907150746078059218</gphoto:streamId><gphoto:license id='2' 
name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-UoUp1RY-HzI/UfpqTl6qmtI/AAAAAAAAMi4/kjB6kl2TstQ/Test%252520file%2525203.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh3.googleusercontent.com/-UoUp1RY-HzI/UfpqTl
 6qmtI/AAAAAAAAMi4/kjB6kl2TstQ/s72/Test%252520file%2525203.jpg' height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-UoUp1RY-HzI/UfpqTl6qmtI/AAAAAAAAMi4/kjB6kl2TstQ/s144/Test%252520file%2525203.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-UoUp1RY-HzI/UfpqTl6qmtI/AAAAAAAAMi4/kjB6kl2TstQ/s288/Test%252520file%2525203.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 3</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150765200958130</id><published>2013-08-01T14:01:54.000Z</published><updated>2013-08-01T14:01:54.810Z</updated><app:edited>2013-08-01T14:01:54.810Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 4</title><summary/><content 
type='image/jpeg' src='https://lh3.googleu
 sercontent.com/--ZWuOHq1joc/UfpqUtJ64rI/AAAAAAAAMi8/UtSqYwFJze4/Test%252520file%2525204.jpg'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150765200958130?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles28?authkey=Gv1sRgCKKx5unfo4qvuAE#5907150765200958130'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/pnewiBw4z_FMxAypWOS5wwSbMZXhNuK8PzLdsH_ZdZ4'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150765200958130?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/libgdata.pic
 asaweb/albumid/5907162005897469553/photoid/5907150765200958130?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link 
rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907150765200958130?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553&amp;iid=5907150765200958130'/><gphoto:id>5907150765200958130</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12847</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_59071507
 65200958130</gphoto:streamId><gphoto:license id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/--ZWuOHq1joc/UfpqUtJ64rI/AAAAAAAAMi8/UtSqYwFJze4/Test%252520file%2525204.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/--ZWuOHq1joc/UfpqUtJ64rI/AAAAAAAAMi8/UtSqYwFJze4/s72/Test%252520file%25
 25204.jpg' height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/--ZWuOHq1joc/UfpqUtJ64rI/AAAAAAAAMi8/UtSqYwFJze4/s144/Test%252520file%2525204.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/--ZWuOHq1joc/UfpqUtJ64rI/AAAAAAAAMi8/UtSqYwFJze4/s288/Test%252520file%2525204.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 4</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query-files-async-progress-closure 
b/gdata/tests/traces/picasaweb/query-files-async-progress-closure
new file mode 100644
index 0000000..426b1c1
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-files-async-progress-closure
@@ -0,0 +1,30 @@
+> GET /data/feed/api/user/libgdata.picasaweb/albumid/5907150970851830257?authkey=Gv1sRgCPTu9_vn9oT1IA 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375365781
+> Soup-Debug: SoupSession 1 (0x6682a0), SoupMessage 30 (0x7fffe401a1b0), SoupSocket 20 (0x814a20)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAADbKT_hVtH1iMNFS9uMoShgbOwfO1I8gu_QL1axjY7_RDwWa451TM_GNncBQYYNVbQl7II_qsuw32dZOzKBeQvC_v1PdhrjXO-NFJNCL5dzZba7l5SiuR1EKzVQXvM2LivcCCis9h0Kla7JqZxEb9MLnK4dFKZO3IRjWlfOYo6ZF5SQ8Sh79BYqZLgHcGvBBE9WgtvjjPpybc2XVUZo7c0rqe3oWNAEb-hQQrb_KNQ2fC1I2LA4Y5KvpsdQ7sK0ysK2gEPqx_nB3EPXUMz0emel44F92MzePN7w_NDZD6ILaw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375365783
+< Soup-Debug: SoupMessage 30 (0x7fffe401a1b0)
+< Expires: Thu, 01 Aug 2013 14:03:03 GMT
+< Date: Thu, 01 Aug 2013 14:03:03 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=odZ6L0dPl87n; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=C_WZDJNxw5u4c49ye1jR1A; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"D0AMQH8yeCp7ImA9WhFWE0s."
+< Last-Modified: Thu, 01 Aug 2013 14:03:01 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;D0AMQH8yeCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb/albumid/5907150970851830257</id><updated>2013-08-01T14:03:01.190Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><subtitle/><rights>private</rights><icon>https://lh6.googleusercontent.com/-CNW6WO3Zmgc/UfpqgrQ6KfE/AAAAAAAAMk8/a8UZk0aFWHk/s160-c/TestAlbumForQueryFiles31.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.
 com/data/feed/api/user/libgdata.picasaweb/albumid/5907150970851830257?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150970851830257?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://picasaweb.google.com/data/upload/resumable/media/create-session/feed/api/user/libgdata.picasaweb/albumid/5907150970851830257?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles31?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://
 
picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150970851830257?alt%3Drss%26authkey%3DGv1sRgCPTu9_vn9oT1IA'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907150970851830257'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150970851830257/acl?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150970851830257?start-index=1&amp;max-results=1000&amp;authkey=Gv1sRgCPTu9_vn9oT1IA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalR
 
esults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:itemsPerPage><gphoto:id>5907150970851830257</gphoto:id><gphoto:name>TestAlbumForQueryFiles31</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375365760000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:allowPrints>true</gphoto:allowPrints><gphoto:allowDownloads>true</gphoto:allowDownloads><entry
 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907150979242991970</id><published>2013-08-01T14:02:44.000Z</published><updated>2013-08-01T14:02:45.583Z</updated><app:edited>2013-08-01T14:02:45.583Z</app:edited><category
 scheme='http://schemas.google.com
 /g/2005#kind' term='http://schemas.google.com/photos/2007#photo'/><title>Test file 
1</title><summary/><content type='image/jpeg' 
src='https://lh4.googleusercontent.com/-R6JLKD7Z3Xs/UfpqhKhhIWI/AAAAAAAAMko/q83hg0oZK3M/Test%252520file%2525201.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907150979242991970?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles31?authkey=Gv1sRgCPTu9_vn9oT1IA#5907150979242991970'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/pm2pHgog8qyj5iZrfnlMcaNDvCAs0NJYitU2nTReWpA'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907150979242
 991970?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907150979242991970?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907150979242991970?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907150970851830257&amp;iid=5907150979242991970'/><gphoto:id>5907150979242991970</gphoto:id><gphoto:albumid>5907150970851830257</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12874</gphoto:imag
 
eVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907150979242991970</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh4.googleusercontent.com/-R6JLKD7Z3Xs/UfpqhKhhIWI/AAAAAAAAMko/q83hg0oZK3M/Test%252520file%2525201.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='plai
 n'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-R6JLKD7Z3Xs/UfpqhKhhIWI/AAAAAAAAMko/q83hg0oZK3M/s72/Test%252520file%2525201.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh4.googleusercontent.com/-R6JLKD7Z3Xs/UfpqhKhhIWI/AAAAAAAAMko/q83hg0oZK3M/s144/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh4.googleusercontent.com/-R6JLKD7Z3Xs/UfpqhKhhIWI/AAAAAAAAMko/q83hg0oZK3M/s288/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 1</media:title></media:group></entry><entry 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907150993706783554</id><published>2013-08-01T14:02:48.000Z</published><updated>2013-08-01T14:02:49.253Z</updated><app:edited>2013-08-01T14:02:49.253Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007
 #photo'/><title>Test file 2</title><summary/><content type='image/jpeg' 
src='https://lh4.googleusercontent.com/-2UJy1JY1riE/UfpqiAZ9E0I/AAAAAAAAMkw/QTOe8Nmpd3w/Test%252520file%2525202.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907150993706783554?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles31?authkey=Gv1sRgCPTu9_vn9oT1IA#5907150993706783554'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/A_Z2rLno4AaMzm2PuYamQaNDvCAs0NJYitU2nTReWpA'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907150993706783554?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='edit' ty
 pe='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907150993706783554?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907150993706783554?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907150970851830257&amp;iid=5907150993706783554'/><gphoto:id>5907150993706783554</gphoto:id><gphoto:albumid>5907150970851830257</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12876</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentin
 
gEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907150993706783554</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh4.googleusercontent.com/-2UJy1JY1riE/UfpqiAZ9E0I/AAAAAAAAMkw/QTOe8Nmpd3w/Test%252520file%2525202.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh4.go
 ogleusercontent.com/-2UJy1JY1riE/UfpqiAZ9E0I/AAAAAAAAMkw/QTOe8Nmpd3w/s72/Test%252520file%2525202.jpg' 
height='67' width='72'/><media:thumbnail 
url='https://lh4.googleusercontent.com/-2UJy1JY1riE/UfpqiAZ9E0I/AAAAAAAAMkw/QTOe8Nmpd3w/s144/Test%252520file%2525202.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh4.googleusercontent.com/-2UJy1JY1riE/UfpqiAZ9E0I/AAAAAAAAMkw/QTOe8Nmpd3w/s288/Test%252520file%2525202.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 2</media:title></media:group></entry><entry 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907151009722255426</id><published>2013-08-01T14:02:51.000Z</published><updated>2013-08-01T14:02:53.138Z</updated><app:edited>2013-08-01T14:02:53.138Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 3</title><summary/><content typ
 e='image/jpeg' 
src='https://lh3.googleusercontent.com/-MOhsknC4_h8/Ufpqi8EVyEI/AAAAAAAAMk4/GZOUn9oEJuo/Test%252520file%2525203.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907151009722255426?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles31?authkey=Gv1sRgCPTu9_vn9oT1IA#5907151009722255426'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/S5XCyEH34GtyQU1brCGKLqNDvCAs0NJYitU2nTReWpA'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907151009722255426?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='edit' type='application/atom+xml' href='https://picasaweb.google.
 
com/data/entry/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907151009722255426?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907151009722255426?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907150970851830257&amp;iid=5907151009722255426'/><gphoto:id>5907151009722255426</gphoto:id><gphoto:albumid>5907150970851830257</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12878</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gph
 oto:streamId>shared_group_5907151009722255426</gphoto:streamId><gphoto:license id='2' 
name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-MOhsknC4_h8/Ufpqi8EVyEI/AAAAAAAAMk4/GZOUn9oEJuo/Test%252520file%2525203.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-MOhsknC4_h8/Ufpqi8EVyEI/AAAAAAAAMk4/
 GZOUn9oEJuo/s72/Test%252520file%2525203.jpg' height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-MOhsknC4_h8/Ufpqi8EVyEI/AAAAAAAAMk4/GZOUn9oEJuo/s144/Test%252520file%2525203.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-MOhsknC4_h8/Ufpqi8EVyEI/AAAAAAAAMk4/GZOUn9oEJuo/s288/Test%252520file%2525203.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 3</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907151050387769170</id><published>2013-08-01T14:03:01.000Z</published><updated>2013-08-01T14:03:01.190Z</updated><app:edited>2013-08-01T14:03:01.190Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 4</title><summary/><content 
type='image/jpeg' src='https://lh4.googleusercontent.com/-xL
 WPcUKaQ5s/UfpqlTjwR1I/AAAAAAAAMk8/Hq6XxuSGd0I/Test%252520file%2525204.jpg'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907151050387769170?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles31?authkey=Gv1sRgCPTu9_vn9oT1IA#5907151050387769170'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/H85zn32tavM7qEcwmhGVEKNDvCAs0NJYitU2nTReWpA'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907151050387769170?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590715
 0970851830257/photoid/5907151050387769170?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link rel='edit-media' 
type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907150970851830257/photoid/5907151050387769170?authkey=Gv1sRgCPTu9_vn9oT1IA'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907150970851830257&amp;iid=5907151050387769170'/><gphoto:id>5907151050387769170</gphoto:id><gphoto:albumid>5907150970851830257</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12879</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907151050387769170</gphoto:str
 eamId><gphoto:license id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh4.googleusercontent.com/-xLWPcUKaQ5s/UfpqlTjwR1I/AAAAAAAAMk8/Hq6XxuSGd0I/Test%252520file%2525204.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-xLWPcUKaQ5s/UfpqlTjwR1I/AAAAAAAAMk8/Hq6XxuSGd0I/s72/Test%252520file%2525204.jpg'
 height='67' 
 width='72'/><media:thumbnail 
url='https://lh4.googleusercontent.com/-xLWPcUKaQ5s/UfpqlTjwR1I/AAAAAAAAMk8/Hq6XxuSGd0I/s144/Test%252520file%2525204.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh4.googleusercontent.com/-xLWPcUKaQ5s/UfpqlTjwR1I/AAAAAAAAMk8/Hq6XxuSGd0I/s288/Test%252520file%2525204.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 4</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query-files-single b/gdata/tests/traces/picasaweb/query-files-single
new file mode 100644
index 0000000..7667341
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-files-single
@@ -0,0 +1,30 @@
+> GET /data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375365755
+> Soup-Debug: SoupSession 1 (0x6682a0), SoupMessage 22 (0x78e0e0), SoupSocket 15 (0x814ae0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAADbKT_hVtH1iMNFS9uMoShgbOwfO1I8gu_QL1axjY7_RDwWa451TM_GNncBQYYNVbQl7II_qsuw32dZOzKBeQvC_v1PdhrjXO-NFJNCL5dzZba7l5SiuR1EKzVQXvM2LivcCCis9h0Kla7JqZxEb9MLnK4dFKZO3IRjWlfOYo6ZF5SQ8Sh79BYqZLgHcGvBBE9WgtvjjPpybc2XVUZo7c0rqe3oWNAEb-hQQrb_KNQ2fC1I2LA4Y5KvpsdQ7sK0ysK2gEPqx_nB3EPXUMz0emel44F92MzePN7w_NDZD6ILaw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375365756
+< Soup-Debug: SoupMessage 22 (0x78e0e0)
+< Expires: Thu, 01 Aug 2013 14:02:36 GMT
+< Date: Thu, 01 Aug 2013 14:02:36 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=fqhw_TA5BLMO; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=bqW-m3pKdfh_jVjTdrZ5Kw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: "YD4qeyI."
+< Last-Modified: Thu, 01 Aug 2013 14:02:24 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314</id><published>2013-08-01T14:45:38.000Z</published><updated>2013-08-01T14:45:38.859Z</updated><app:edited>2013-08-01T14:45:38.859Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 1</title><summary/><content 
type='image/jpeg' 
src='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/Test%252520file%2525201.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href
 
='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles39?authkey=Gv1sRgCKKx5unfo4qvuAE#5907162035673007314'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/TclHBnxkCWRiCOH8UL0V8anPQSJCD8MPruhZxgfAX5U'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit-media' type='image/jpeg' href='https://picasaweb.google.com/data/
 
media/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553&amp;iid=5907162035673007314'/><gphoto:id>5907162035673007314</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12993</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907162035673007314</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:lice
 nse><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/Test%252520file%2525201.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s72/Test%252520file%2525201.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s144/Test%252520file%2525201.jpg'
 he
 ight='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s288/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 1</media:title></media:group></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/query-user b/gdata/tests/traces/picasaweb/query-user
new file mode 100644
index 0000000..1d71c46
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-user
@@ -0,0 +1,30 @@
+> GET /data/entry/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193184
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 10 (0x78d0a0), SoupSocket 4 (0x7cbc70)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193184
+< Soup-Debug: SoupMessage 10 (0x78d0a0)
+< Expires: Tue, 30 Jul 2013 14:06:24 GMT
+< Date: Tue, 30 Jul 2013 14:06:24 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=1WZ1nEPscX1U; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=Ya5gyRenuUJuUww91WNdQg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUYMQnk-eCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:23 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYMQnk-eCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-30T14:06:24.431Z</published><updated>2013-07-30T14:06:23.750Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/query_all_albums-async 
b/gdata/tests/traces/picasaweb/query_all_albums-async
new file mode 100644
index 0000000..974259e
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_all_albums-async
@@ -0,0 +1,30 @@
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193198
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 26 (0x7fffd800ebb0), SoupSocket 12 (0x7cba30)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193199
+< Soup-Debug: SoupMessage 26 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:06:39 GMT
+< Date: Tue, 30 Jul 2013 14:06:39 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=qLrx0e6LARca; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=fOi3cjU-PG96GUZZOxczRQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUYNRngzeCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:37 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query_all_albums-async-cancellation 
b/gdata/tests/traces/picasaweb/query_all_albums-async-cancellation
new file mode 100644
index 0000000..51dd5e8
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_all_albums-async-cancellation
@@ -0,0 +1,98 @@
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193215
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 44 (0x7fffd800ef70), SoupSocket 20 (0x7cbbb0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193215
+< Soup-Debug: SoupMessage 44 (0x7fffd800ef70)
+< Expires: Tue, 30 Jul 2013 14:06:55 GMT
+< Date: Tue, 30 Jul 2013 14:06:55 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=h3Z5_WgR42lQ; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=D6hIRXBsA0yB87bDm6SEyw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFRXg6fCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:54 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193215
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 45 (0x7fffd800ebb0), SoupSocket 19 (0x7cbc70)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+> Soup-Debug-Timestamp: 1375193215
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 45 (0x7fffd800ebb0), SoupSocket 21 (0x7fffe0028620), 
restarted
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193216
+< Soup-Debug: SoupMessage 45 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:06:56 GMT
+< Date: Tue, 30 Jul 2013 14:06:56 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=aIyQglQCFD2b; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=PMvjYSKnKlSvQ55tsE3I1Q; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFRXg6fCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:54 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193216
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 46 (0x7fffe4002aa0), SoupSocket 21 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193216
+< Soup-Debug: SoupMessage 46 (0x7fffe4002aa0)
+< Expires: Tue, 30 Jul 2013 14:06:56 GMT
+< Date: Tue, 30 Jul 2013 14:06:56 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=i7iDLaToySIx; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=5_28NXYuJhKbMPGuG7rpMA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFRXg6fCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:54 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query_files-async b/gdata/tests/traces/picasaweb/query_files-async
new file mode 100644
index 0000000..c67cea8
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_files-async
@@ -0,0 +1,30 @@
+> GET /data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375365735
+> Soup-Debug: SoupSession 1 (0x6682a0), SoupMessage 14 (0x78e4a0), SoupSocket 10 (0x7fffe40031a0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAADbKT_hVtH1iMNFS9uMoShgbOwfO1I8gu_QL1axjY7_RDwWa451TM_GNncBQYYNVbQl7II_qsuw32dZOzKBeQvC_v1PdhrjXO-NFJNCL5dzZba7l5SiuR1EKzVQXvM2LivcCCis9h0Kla7JqZxEb9MLnK4dFKZO3IRjWlfOYo6ZF5SQ8Sh79BYqZLgHcGvBBE9WgtvjjPpybc2XVUZo7c0rqe3oWNAEb-hQQrb_KNQ2fC1I2LA4Y5KvpsdQ7sK0ysK2gEPqx_nB3EPXUMz0emel44F92MzePN7w_NDZD6ILaw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375365736
+< Soup-Debug: SoupMessage 14 (0x78e4a0)
+< Expires: Thu, 01 Aug 2013 14:02:16 GMT
+< Date: Thu, 01 Aug 2013 14:02:16 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=iRThHx_irJvf; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=o2xXB3c34YfD6S6uml7ILg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"D0AHRXg_fCp7ImA9WhFWE0s."
+< Last-Modified: Thu, 01 Aug 2013 14:02:14 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;D0AHRXg_fCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb/albumid/5907150785154596193</id><updated>2013-08-01T14:02:14.644Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><subtitle/><rights>private</rights><icon>https://lh4.googleusercontent.com/-zJFf7te4oUY/UfpqV3fPPWE/AAAAAAAAMjo/4PmlWIKk-eE/s160-c/TestAlbumForQueryFiles29.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.
 com/data/feed/api/user/libgdata.picasaweb/albumid/5907150785154596193?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150785154596193?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://picasaweb.google.com/data/upload/resumable/media/create-session/feed/api/user/libgdata.picasaweb/albumid/5907150785154596193?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles29?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=http
 
s://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150785154596193?alt%3Drss%26authkey%3DGv1sRgCK3MoPTN3eOi8gE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907150785154596193'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150785154596193/acl?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150785154596193?start-index=1&amp;max-results=1000&amp;authkey=Gv1sRgCK3MoPTN3eOi8gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch
 
:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:itemsPerPage><gphoto:id>5907150785154596193</gphoto:id><gphoto:name>TestAlbumForQueryFiles29</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375365717000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:allowPrints>true</gphoto:allowPrints><gphoto:allowDownloads>true</gphoto:allowDownloads><entry
 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314</id><published>2013-08-01T14:45:38.000Z</published><updated>2013-08-01T14:45:38.859Z</updated><app:edited>2013-08-01T14:45:38.859Z</app:edited><category
 scheme='http://schemas.goo
 gle.com/g/2005#kind' term='http://schemas.google.com/photos/2007#photo'/><title>Test file 
1</title><summary/><content type='image/jpeg' 
src='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/Test%252520file%2525201.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles39?authkey=Gv1sRgCKKx5unfo4qvuAE#5907162035673007314'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/TclHBnxkCWRiCOH8UL0V8anPQSJCD8MPruhZxgfAX5U'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907
 162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553&amp;iid=5907162035673007314'/><gphoto:id>5907162035673007314</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12993<
 
/gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907162035673007314</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/Test%252520file%2525201.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:descriptio
 n type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s72/Test%252520file%2525201.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s144/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s288/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 1</media:title></media:group></entry><entry 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150829688266482</id><published>2013-08-01T14:02:09.000Z</published><updated>2013-08-01T14:02:10.073Z</updated><app:edited>2013-08-01T14:02:10.073Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com
 /photos/2007#photo'/><title>Test file 2</title><summary/><content type='image/jpeg' 
src='https://lh5.googleusercontent.com/-km5_MPE2nCI/UfpqYdY5HvI/AAAAAAAAMjY/e9a15AEVkis/Test%252520file%2525202.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150829688266482?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles29?authkey=Gv1sRgCK3MoPTN3eOi8gE#5907150829688266482'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/q_J5z2iQtlhr40bOxacCAs9H19Vgkm_xPshS2ljFYI0'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150829688266482?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><lin
 k rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150829688266482?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150829688266482?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907150785154596193&amp;iid=5907150829688266482'/><gphoto:id>5907150829688266482</gphoto:id><gphoto:albumid>5907150785154596193</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12854</gphoto:imageVersion><gphoto:commentingEnabled>true<
 
/gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907150829688266482</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh5.googleusercontent.com/-km5_MPE2nCI/UfpqYdY5HvI/AAAAAAAAMjY/e9a15AEVkis/Test%252520file%2525202.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail ur
 
l='https://lh5.googleusercontent.com/-km5_MPE2nCI/UfpqYdY5HvI/AAAAAAAAMjY/e9a15AEVkis/s72/Test%252520file%2525202.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh5.googleusercontent.com/-km5_MPE2nCI/UfpqYdY5HvI/AAAAAAAAMjY/e9a15AEVkis/s144/Test%252520file%2525202.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh5.googleusercontent.com/-km5_MPE2nCI/UfpqYdY5HvI/AAAAAAAAMjY/e9a15AEVkis/s288/Test%252520file%2525202.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 2</media:title></media:group></entry><entry 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150836838919202</id><published>2013-08-01T14:02:11.000Z</published><updated>2013-08-01T14:02:12.427Z</updated><app:edited>2013-08-01T14:02:12.427Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 3</title><summ
 ary/><content type='image/jpeg' 
src='https://lh5.googleusercontent.com/-uqNCcf_3RW0/UfpqY4BvbCI/AAAAAAAAMjg/OKorAw-UM7I/Test%252520file%2525203.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150836838919202?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles29?authkey=Gv1sRgCK3MoPTN3eOi8gE#5907150836838919202'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/is2pUr-9sdFK7qSlnq4lOc9H19Vgkm_xPshS2ljFYI0'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150836838919202?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='edit' type='application/atom+xml' href='https
 
://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150836838919202?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150836838919202?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907150785154596193&amp;iid=5907150836838919202'/><gphoto:id>5907150836838919202</gphoto:id><gphoto:albumid>5907150785154596193</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12856</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gp
 hoto:commentCount><gphoto:streamId>shared_group_5907150836838919202</gphoto:streamId><gphoto:license id='2' 
name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh5.googleusercontent.com/-uqNCcf_3RW0/UfpqY4BvbCI/AAAAAAAAMjg/OKorAw-UM7I/Test%252520file%2525203.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh5.googleusercontent.com/-uqNCcf_3RW0/Uf
 pqY4BvbCI/AAAAAAAAMjg/OKorAw-UM7I/s72/Test%252520file%2525203.jpg' height='67' width='72'/><media:thumbnail 
url='https://lh5.googleusercontent.com/-uqNCcf_3RW0/UfpqY4BvbCI/AAAAAAAAMjg/OKorAw-UM7I/s144/Test%252520file%2525203.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh5.googleusercontent.com/-uqNCcf_3RW0/UfpqY4BvbCI/AAAAAAAAMjg/OKorAw-UM7I/s288/Test%252520file%2525203.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 3</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150850226889682</id><published>2013-08-01T14:02:14.000Z</published><updated>2013-08-01T14:02:14.644Z</updated><app:edited>2013-08-01T14:02:14.644Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 4</title><summary/><content 
type='image/jpeg' src='https://lh4.goo
 gleusercontent.com/-TC6ER9JFQp8/UfpqZp5ro9I/AAAAAAAAMjo/kUGJlEi1jmw/Test%252520file%2525204.jpg'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150850226889682?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles29?authkey=Gv1sRgCK3MoPTN3eOi8gE#5907150850226889682'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/kwtftH-Co0sMa5CAOUI14s9H19Vgkm_xPshS2ljFYI0'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150850226889682?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='edit' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/libgdata
 .picasaweb/albumid/5907150785154596193/photoid/5907150850226889682?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link 
rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907150785154596193/photoid/5907150850226889682?authkey=Gv1sRgCK3MoPTN3eOi8gE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907150785154596193&amp;iid=5907150850226889682'/><gphoto:id>5907150850226889682</gphoto:id><gphoto:albumid>5907150785154596193</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12858</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907
 150850226889682</gphoto:streamId><gphoto:license id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh4.googleusercontent.com/-TC6ER9JFQp8/UfpqZp5ro9I/AAAAAAAAMjo/kUGJlEi1jmw/Test%252520file%2525204.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-TC6ER9JFQp8/UfpqZp5ro9I/AAAAAAAAMjo/kUGJlEi1jmw/s72/Test%252520fil
 e%2525204.jpg' height='67' width='72'/><media:thumbnail 
url='https://lh4.googleusercontent.com/-TC6ER9JFQp8/UfpqZp5ro9I/AAAAAAAAMjo/kUGJlEi1jmw/s144/Test%252520file%2525204.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh4.googleusercontent.com/-TC6ER9JFQp8/UfpqZp5ro9I/AAAAAAAAMjo/kUGJlEi1jmw/s288/Test%252520file%2525204.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 4</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query_files-async-cancellation 
b/gdata/tests/traces/picasaweb/query_files-async-cancellation
new file mode 100644
index 0000000..8540a5d
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_files-async-cancellation
@@ -0,0 +1,30 @@
+> GET /data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375365814
+> Soup-Debug: SoupSession 1 (0x6682a0), SoupMessage 42 (0x7fffe401a0c0), SoupSocket 29 (0x814c60)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAADbKT_hVtH1iMNFS9uMoShgbOwfO1I8gu_QL1axjY7_RDwWa451TM_GNncBQYYNVbQl7II_qsuw32dZOzKBeQvC_v1PdhrjXO-NFJNCL5dzZba7l5SiuR1EKzVQXvM2LivcCCis9h0Kla7JqZxEb9MLnK4dFKZO3IRjWlfOYo6ZF5SQ8Sh79BYqZLgHcGvBBE9WgtvjjPpybc2XVUZo7c0rqe3oWNAEb-hQQrb_KNQ2fC1I2LA4Y5KvpsdQ7sK0ysK2gEPqx_nB3EPXUMz0emel44F92MzePN7w_NDZD6ILaw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375365816
+< Soup-Debug: SoupMessage 42 (0x7fffe401a0c0)
+< Expires: Thu, 01 Aug 2013 14:03:36 GMT
+< Date: Thu, 01 Aug 2013 14:03:36 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=dwy-JVAW0KyU; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=oXQkCbUpu1L7IcQqrmDuBQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"D08ERnk8fSp7ImA9WhFWE0s."
+< Last-Modified: Thu, 01 Aug 2013 14:03:27 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;D08ERnk8fSp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb/albumid/5907151087224289825</id><updated>2013-08-01T14:03:27.775Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><subtitle/><rights>private</rights><icon>https://lh3.googleusercontent.com/-eOleYbu29IU/UfpqncyQ-iE/AAAAAAAAMls/KbZyNDZDiUI/s160-c/TestAlbumForQueryFiles32.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://picasaweb.google.
 com/data/feed/api/user/libgdata.picasaweb/albumid/5907151087224289825?authkey=Gv1sRgCIbvuqunu_OdAw'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907151087224289825?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://picasaweb.google.com/data/upload/resumable/media/create-session/feed/api/user/libgdata.picasaweb/albumid/5907151087224289825?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles32?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://
 
picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907151087224289825?alt%3Drss%26authkey%3DGv1sRgCIbvuqunu_OdAw'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907151087224289825'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907151087224289825/acl?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907151087224289825?start-index=1&amp;max-results=1000&amp;authkey=Gv1sRgCIbvuqunu_OdAw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalR
 
esults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:itemsPerPage><gphoto:id>5907151087224289825</gphoto:id><gphoto:name>TestAlbumForQueryFiles32</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375365786000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:allowPrints>true</gphoto:allowPrints><gphoto:allowDownloads>true</gphoto:allowDownloads><entry
 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314</id><published>2013-08-01T14:45:38.000Z</published><updated>2013-08-01T14:45:38.859Z</updated><app:edited>2013-08-01T14:45:38.859Z</app:edited><category
 scheme='http://schemas.google.com
 /g/2005#kind' term='http://schemas.google.com/photos/2007#photo'/><title>Test file 
1</title><summary/><content type='image/jpeg' 
src='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/Test%252520file%2525201.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles39?authkey=Gv1sRgCKKx5unfo4qvuAE#5907162035673007314'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/TclHBnxkCWRiCOH8UL0V8anPQSJCD8MPruhZxgfAX5U'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/59071620356
 73007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553&amp;iid=5907162035673007314'/><gphoto:id>5907162035673007314</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12993</gphoto
 
:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907162035673007314</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/Test%252520file%2525201.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type=
 'plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s72/Test%252520file%2525201.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s144/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s288/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 1</media:title></media:group></entry><entry 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151111046303650</id><published>2013-08-01T14:03:15.000Z</published><updated>2013-08-01T14:03:16.803Z</updated><app:edited>2013-08-01T14:03:16.803Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos
 /2007#photo'/><title>Test file 2</title><summary/><content type='image/jpeg' 
src='https://lh6.googleusercontent.com/-coq-0Ax-_90/Ufpqo1h4D6I/AAAAAAAAMlc/l0RSmtBvJo4/Test%252520file%2525202.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151111046303650?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles32?authkey=Gv1sRgCIbvuqunu_OdAw#5907151111046303650'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/_62UCmO44MtZ7TafbreRsv1axM--bU6cdQB9zEI7CZQ'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151111046303650?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='edi
 t' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151111046303650?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151111046303650?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907151087224289825&amp;iid=5907151111046303650'/><gphoto:id>5907151111046303650</gphoto:id><gphoto:albumid>5907151087224289825</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12887</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:comm
 
entingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907151111046303650</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh6.googleusercontent.com/-coq-0Ax-_90/Ufpqo1h4D6I/AAAAAAAAMlc/l0RSmtBvJo4/Test%252520file%2525202.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://l
 h6.googleusercontent.com/-coq-0Ax-_90/Ufpqo1h4D6I/AAAAAAAAMlc/l0RSmtBvJo4/s72/Test%252520file%2525202.jpg' 
height='67' width='72'/><media:thumbnail 
url='https://lh6.googleusercontent.com/-coq-0Ax-_90/Ufpqo1h4D6I/AAAAAAAAMlc/l0RSmtBvJo4/s144/Test%252520file%2525202.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh6.googleusercontent.com/-coq-0Ax-_90/Ufpqo1h4D6I/AAAAAAAAMlc/l0RSmtBvJo4/s288/Test%252520file%2525202.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 2</media:title></media:group></entry><entry 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151147585049618</id><published>2013-08-01T14:03:23.000Z</published><updated>2013-08-01T14:03:24.979Z</updated><app:edited>2013-08-01T14:03:24.979Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 3</title><summary/><conten
 t type='image/jpeg' 
src='https://lh3.googleusercontent.com/-cX854Mc3hro/Ufpqq9pZFBI/AAAAAAAAMlk/c--jRkyPT28/Test%252520file%2525203.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151147585049618?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles32?authkey=Gv1sRgCIbvuqunu_OdAw#5907151147585049618'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/GmAqiwtENOhWwo2M-dNC_v1axM--bU6cdQB9zEI7CZQ'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151147585049618?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='edit' type='application/atom+xml' href='https://picasaweb.go
 
ogle.com/data/entry/api/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151147585049618?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151147585049618?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907151087224289825&amp;iid=5907151147585049618'/><gphoto:id>5907151147585049618</gphoto:id><gphoto:albumid>5907151087224289825</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12889</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount
<gphoto:streamId>shared_group_5907151147585049618</gphoto:streamId><gphoto:license id='2' 
name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes

faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content

url='https://lh3.googleusercontent.com/-cX854Mc3hro/Ufpqq9pZFBI/AAAAAAAAMlk/c--jRkyPT28/Test%252520file%2525203.jpg'
height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-cX854Mc3hro/Ufpqq9pZFBI/AAAAAAA
 AMlk/c--jRkyPT28/s72/Test%252520file%2525203.jpg' height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-cX854Mc3hro/Ufpqq9pZFBI/AAAAAAAAMlk/c--jRkyPT28/s144/Test%252520file%2525203.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-cX854Mc3hro/Ufpqq9pZFBI/AAAAAAAAMlk/c--jRkyPT28/s288/Test%252520file%2525203.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 3</media:title></media:group></entry><entry 
gd:etag='&quot;YD4qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151156877478754</id><published>2013-08-01T14:03:26.000Z</published><updated>2013-08-01T14:03:27.775Z</updated><app:edited>2013-08-01T14:03:27.775Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 4</title><summary/><content 
type='image/jpeg' src='https://lh5.googleusercontent.co
 m/-L1KRj_8RPBc/UfpqrgQ4S2I/AAAAAAAAMls/xILc4GmEodU/Test%252520file%2525204.jpg'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151156877478754?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles32?authkey=Gv1sRgCIbvuqunu_OdAw#5907151156877478754'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/UtIcrCl4xdR0HBAAEjCwlv1axM--bU6cdQB9zEI7CZQ'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151156877478754?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5
 907151087224289825/photoid/5907151156877478754?authkey=Gv1sRgCIbvuqunu_OdAw'/><link rel='edit-media' 
type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907151087224289825/photoid/5907151156877478754?authkey=Gv1sRgCIbvuqunu_OdAw'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907151087224289825&amp;iid=5907151156877478754'/><gphoto:id>5907151156877478754</gphoto:id><gphoto:albumid>5907151087224289825</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12891</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907151156877478754</gphot
 o:streamId><gphoto:license id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh5.googleusercontent.com/-L1KRj_8RPBc/UfpqrgQ4S2I/AAAAAAAAMls/xILc4GmEodU/Test%252520file%2525204.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-L1KRj_8RPBc/UfpqrgQ4S2I/AAAAAAAAMls/xILc4GmEodU/s72/Test%252520file%2525204.jpg'
 height=
 '67' width='72'/><media:thumbnail 
url='https://lh5.googleusercontent.com/-L1KRj_8RPBc/UfpqrgQ4S2I/AAAAAAAAMls/xILc4GmEodU/s144/Test%252520file%2525204.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh5.googleusercontent.com/-L1KRj_8RPBc/UfpqrgQ4S2I/AAAAAAAAMls/xILc4GmEodU/s288/Test%252520file%2525204.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 4</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query_user-async b/gdata/tests/traces/picasaweb/query_user-async
new file mode 100644
index 0000000..1a4ed57
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_user-async
@@ -0,0 +1,30 @@
+> GET /data/entry/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193219
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 51 (0x7fffd800ebb0), SoupSocket 21 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193219
+< Soup-Debug: SoupMessage 51 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:06:59 GMT
+< Date: Tue, 30 Jul 2013 14:06:59 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=jcMsmLBVV-eg; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=-LbMkhBBJ5dAqLw2XAcZaw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFSXc6fyp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:58 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUUFSXc6fyp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-30T14:06:59.656Z</published><updated>2013-07-30T14:06:58.917Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/query_user-async-cancellation 
b/gdata/tests/traces/picasaweb/query_user-async-cancellation
new file mode 100644
index 0000000..d66d78b
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_user-async-cancellation
@@ -0,0 +1,90 @@
+> GET /data/entry/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193219
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 52 (0x7fffd800ef70), SoupSocket 21 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193219
+< Soup-Debug: SoupMessage 52 (0x7fffd800ef70)
+< Expires: Tue, 30 Jul 2013 14:07:00 GMT
+< Date: Tue, 30 Jul 2013 14:07:00 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=IKpCLVGNcEjO; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=PR_2dH-tKmRcA9vklKNYyg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFSXc6fyp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:58 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUUFSXc6fyp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-30T14:07:00.148Z</published><updated>2013-07-30T14:06:58.917Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+  
+> GET /data/entry/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193220
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 53 (0x7fffd800e9d0), SoupSocket 22 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193220
+< Soup-Debug: SoupMessage 53 (0x7fffd800e9d0)
+< Expires: Tue, 30 Jul 2013 14:07:00 GMT
+< Date: Tue, 30 Jul 2013 14:07:00 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=HkFgClQx6DR7; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=WwF3IuZHk6M_LyWlV6Sreg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFSXc6fyp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:58 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUUFSXc6fyp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-30T14:07:00.981Z</published><updated>2013-07-30T14:06:58.917Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+  
+> GET /data/entry/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193220
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 54 (0x7fffd800ee80), SoupSocket 23 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193220
+< Soup-Debug: SoupMessage 54 (0x7fffd800ee80)
+< Expires: Tue, 30 Jul 2013 14:07:01 GMT
+< Date: Tue, 30 Jul 2013 14:07:01 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=QolHWxCYxSBu; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=qVMSBPHSqwkF44ZkhSEYqQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFSXc6fyp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:58 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUUFSXc6fyp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-30T14:07:01.119Z</published><updated>2013-07-30T14:06:58.917Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/query_user_by_username-async 
b/gdata/tests/traces/picasaweb/query_user_by_username-async
new file mode 100644
index 0000000..2df9738
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_user_by_username-async
@@ -0,0 +1,30 @@
+> GET /data/entry/api/user/philip.withnall HTTP/1.1
+> Soup-Debug-Timestamp: 1375193221
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 55 (0x7fffe40190e0), SoupSocket 23 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193221
+< Soup-Debug: SoupMessage 55 (0x7fffe40190e0)
+< Expires: Tue, 30 Jul 2013 14:07:01 GMT
+< Date: Tue, 30 Jul 2013 14:07:01 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=81v56Gedn07l; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=NjKbWgZAAKXezlt5U_PSwQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DEEHR38yeyp7ImA9WhFWEU0."
+< Last-Modified: Mon, 29 Jul 2013 14:03:56 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DEEHR38yeyp7ImA9WhFWEU0.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-30T14:07:01.439Z</published><updated>2013-07-29T14:03:56.193Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/query_user_by_username-async-cancellation 
b/gdata/tests/traces/picasaweb/query_user_by_username-async-cancellation
new file mode 100644
index 0000000..0901989
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_user_by_username-async-cancellation
@@ -0,0 +1,120 @@
+> GET /data/entry/api/user/philip.withnall HTTP/1.1
+> Soup-Debug-Timestamp: 1375193221
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 56 (0x7fffd800e9d0), SoupSocket 23 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193221
+< Soup-Debug: SoupMessage 56 (0x7fffd800e9d0)
+< Expires: Tue, 30 Jul 2013 14:07:02 GMT
+< Date: Tue, 30 Jul 2013 14:07:02 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=5lwIlSNLHpIB; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=ldGTkBt8vrc2Wx4z2UA85w; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DEEHR38yeyp7ImA9WhFWEU0."
+< Last-Modified: Mon, 29 Jul 2013 14:03:56 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DEEHR38yeyp7ImA9WhFWEU0.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-30T14:07:02.051Z</published><updated>2013-07-29T14:03:56.193Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
+  
+> GET /data/entry/api/user/philip.withnall HTTP/1.1
+> Soup-Debug-Timestamp: 1375193221
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 57 (0x7fffd800ee80), SoupSocket 24 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193222
+< Soup-Debug: SoupMessage 57 (0x7fffd800ee80)
+< Expires: Tue, 30 Jul 2013 14:07:02 GMT
+< Date: Tue, 30 Jul 2013 14:07:02 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=VGPDpVlj9GeF; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=o7C_5n27tKio2U7h48GTDQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DEEHR38yeyp7ImA9WhFWEU0."
+< Last-Modified: Mon, 29 Jul 2013 14:03:56 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DEEHR38yeyp7ImA9WhFWEU0.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-30T14:07:02.661Z</published><updated>2013-07-29T14:03:56.193Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
+  
+> GET /data/entry/api/user/philip.withnall HTTP/1.1
+> Soup-Debug-Timestamp: 1375193222
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 58 (0x78d730), SoupSocket 25 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193223
+< Soup-Debug: SoupMessage 58 (0x78d730)
+< Expires: Tue, 30 Jul 2013 14:07:03 GMT
+< Date: Tue, 30 Jul 2013 14:07:03 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=vpLKBUGpmhn6; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=phcGxLajQeViqEBcmO41qQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DEEHR38yeyp7ImA9WhFWEU0."
+< Last-Modified: Mon, 29 Jul 2013 14:03:56 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DEEHR38yeyp7ImA9WhFWEU0.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-30T14:07:03.504Z</published><updated>2013-07-29T14:03:56.193Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
+  
+> GET /data/entry/api/user/philip.withnall HTTP/1.1
+> Soup-Debug-Timestamp: 1375193223
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 59 (0x7fffd800ebb0), SoupSocket 26 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193223
+< Soup-Debug: SoupMessage 59 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:07:03 GMT
+< Date: Tue, 30 Jul 2013 14:07:03 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=NNZKt6daphG5; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=MbP0ESEWbNzTAnUb_c7TMw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DEEHR38yeyp7ImA9WhFWEU0."
+< Last-Modified: Mon, 29 Jul 2013 14:03:56 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DEEHR38yeyp7ImA9WhFWEU0.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-30T14:07:03.734Z</published><updated>2013-07-29T14:03:56.193Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/setup-query-all-albums 
b/gdata/tests/traces/picasaweb/setup-query-all-albums
new file mode 100644
index 0000000..303e315
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/setup-query-all-albums
@@ -0,0 +1,136 @@
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193211
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 40 (0x78d550), SoupSocket 17 (0x7cba30)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 1 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 1 for QueryAllAlbums</media:title></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375193212
+< Soup-Debug: SoupMessage 40 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:52 GMT
+< Date: Tue, 30 Jul 2013 14:06:52 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=Oz5kBY9r-bOe; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=uHYyW_yk_rtx3oUjvBOZYg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' href='https://pic
 asaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:t
 
imestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry>
+  
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193212
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 41 (0x78d550), SoupSocket 18 (0x7fffdc0043c0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 2 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 2 for QueryAllAlbums</media:title></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375193213
+< Soup-Debug: SoupMessage 41 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:53 GMT
+< Date: Tue, 30 Jul 2013 14:06:53 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=CFnNibO9gAqe; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=YFVu1qVaPdljemBM2wHzOg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' href='https://pica
 saweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timest
 
amp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for 
QueryAllAlbums</media:title></media:group></entry>
+  
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193213
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 42 (0x78d0a0), SoupSocket 19 (0x7cbc70)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 3 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 3 for QueryAllAlbums</media:title></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375193214
+< Soup-Debug: SoupMessage 42 (0x78d0a0)
+< Expires: Tue, 30 Jul 2013 14:06:54 GMT
+< Date: Tue, 30 Jul 2013 14:06:54 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=vBpQdJXcxFY3; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=J3KSb9f0pAjHbbrNDUM9CA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' href='https://pica
 saweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timest
 
amp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry>
+  
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193214
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 43 (0x78d190), SoupSocket 20 (0x7cbbb0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 4 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 4 for QueryAllAlbums</media:title></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375193215
+< Soup-Debug: SoupMessage 43 (0x78d190)
+< Expires: Tue, 30 Jul 2013 14:06:55 GMT
+< Date: Tue, 30 Jul 2013 14:06:55 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=tJdUCcJ5mrOd; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=8DO6vtUhqhM2zmMYchOFBg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='alternate' type='text/html' href='https://pica
 saweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timest
 
amp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/setup-query-comments 
b/gdata/tests/traces/picasaweb/setup-query-comments
new file mode 100644
index 0000000..329d440
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/setup-query-comments
@@ -0,0 +1,102 @@
+> POST 
/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375367397
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 48 (0x79ed80), SoupSocket 30 (0x706a60)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAAAOuUYXwRBAHgNEEbEl4k3Pfxl9EMLyqMFS6XDPU8V6x6UdXPfUNk8406bdjrbicpY09aRzdq5P_E2B4rdPeJG9iMU-Fcapg-QZcFs_CnJpq66uXpvAcZ2y_TSvFzzliXnxvIIPeU-8ofrMKG3STiGssYg2SkpME_sUu4LOpsBmcP8380ZMY-7PFQZYzZ1VmwB58hmU34NecZY4b3nngnRI4EKZiMseyudbDXuE-X6KIJp4SVY1RVvMCu5oRTHw5vd6C0s3JM-n9_u9xDsXBn-3xdKvPeGBINjX33DeqFvIgw
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'></title><content type='text'>Test comment 
1.</content><category term='http://schemas.google.com/photos/2007#comment' 
scheme='http://schemas.google.com/g/2005#kind'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375367398
+< Soup-Debug: SoupMessage 48 (0x79ed80)
+< Expires: Thu, 01 Aug 2013 14:29:58 GMT
+< Date: Thu, 01 Aug 2013 14:29:58 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=_VC_nego1CsM; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=ZOFeHmsgsEugfLRgQiqO5g; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: W/"DUQNRnY4eCp7ImA9WhFWE0s."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157991014140692?authkey=Gv1sRgCKKx5unfo4qvuAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157991014140692?authkey=Gv1sRgCKKx5unfo4qvuAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DUQNRnY4eCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157991014140692</id><published>2013-08-01T14:29:57.830Z</published><updated>2013-08-01T14:29:57.830Z</updated><app:edited>2013-08-01T14:29:57.830Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
1.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/tvuFAuI-9TZljsqogrDrzd62mdOu5-4lWildw13I8AE'/><link rel='self' 
type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasawe
 
b/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157991014140692?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907157991014140692?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907157991014140692</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry>
+  
+> POST 
/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375367398
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 49 (0x79ed80), SoupSocket 31 (0x706b20)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAAAOuUYXwRBAHgNEEbEl4k3Pfxl9EMLyqMFS6XDPU8V6x6UdXPfUNk8406bdjrbicpY09aRzdq5P_E2B4rdPeJG9iMU-Fcapg-QZcFs_CnJpq66uXpvAcZ2y_TSvFzzliXnxvIIPeU-8ofrMKG3STiGssYg2SkpME_sUu4LOpsBmcP8380ZMY-7PFQZYzZ1VmwB58hmU34NecZY4b3nngnRI4EKZiMseyudbDXuE-X6KIJp4SVY1RVvMCu5oRTHw5vd6C0s3JM-n9_u9xDsXBn-3xdKvPeGBINjX33DeqFvIgw
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'></title><content type='text'>Test comment 
2.</content><category term='http://schemas.google.com/photos/2007#comment' 
scheme='http://schemas.google.com/g/2005#kind'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375367399
+< Soup-Debug: SoupMessage 49 (0x79ed80)
+< Expires: Thu, 01 Aug 2013 14:29:59 GMT
+< Date: Thu, 01 Aug 2013 14:29:59 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=V4zy3O6a1rSi; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=keTNJ9gehkgUI79QkmmhrA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: W/"DUQNSXczeSp7ImA9WhFWE0s."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158001023135444?authkey=Gv1sRgCKKx5unfo4qvuAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158001023135444?authkey=Gv1sRgCKKx5unfo4qvuAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DUQNSXczeSp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158001023135444</id><published>2013-08-01T14:29:58.981Z</published><updated>2013-08-01T14:29:58.981Z</updated><app:edited>2013-08-01T14:29:58.981Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
2.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/tvuFAuI-9TZljsqogrDrzd62mdOu5-4lWildw13I8AE'/><link rel='self' 
type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasawe
 
b/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158001023135444?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158001023135444?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907158001023135444</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry>
+  
+> POST 
/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375367400
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 50 (0x79eab0), SoupSocket 32 (0x7068e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAAAOuUYXwRBAHgNEEbEl4k3Pfxl9EMLyqMFS6XDPU8V6x6UdXPfUNk8406bdjrbicpY09aRzdq5P_E2B4rdPeJG9iMU-Fcapg-QZcFs_CnJpq66uXpvAcZ2y_TSvFzzliXnxvIIPeU-8ofrMKG3STiGssYg2SkpME_sUu4LOpsBmcP8380ZMY-7PFQZYzZ1VmwB58hmU34NecZY4b3nngnRI4EKZiMseyudbDXuE-X6KIJp4SVY1RVvMCu5oRTHw5vd6C0s3JM-n9_u9xDsXBn-3xdKvPeGBINjX33DeqFvIgw
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'></title><content type='text'>Test comment 
3.</content><category term='http://schemas.google.com/photos/2007#comment' 
scheme='http://schemas.google.com/g/2005#kind'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375367401
+< Soup-Debug: SoupMessage 50 (0x79eab0)
+< Expires: Thu, 01 Aug 2013 14:30:01 GMT
+< Date: Thu, 01 Aug 2013 14:30:01 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=93HAa1Vg4hES; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=NJlYj7ysIUI7Sd2JDduLpA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: W/"DUMEQXc6fCp7ImA9WhFWE0s."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158005467377316?authkey=Gv1sRgCKKx5unfo4qvuAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158005467377316?authkey=Gv1sRgCKKx5unfo4qvuAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DUMEQXc6fCp7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158005467377316</id><published>2013-08-01T14:30:00.914Z</published><updated>2013-08-01T14:30:00.914Z</updated><app:edited>2013-08-01T14:30:00.914Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#comment'/><title>libgdata.picasaweb</title><content>Test comment 
3.</content><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/lh/photo/tvuFAuI-9TZljsqogrDrzd62mdOu5-4lWildw13I8AE'/><link rel='self' 
type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasawe
 
b/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158005467377316?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907158005467377316?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s48-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:user>libgdata.picasaweb</gphoto:user></author><gphoto:id>5907158005467377316</gphoto:id><gphoto:photoid>5907162035673007314</gphoto:photoid></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/setup-query-files b/gdata/tests/traces/picasaweb/setup-query-files
new file mode 100644
index 0000000..11bf7e0
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/setup-query-files
@@ -0,0 +1,170 @@
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375368332
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 19 (0x98c560), SoupSocket 13 (0x7833c0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album for QueryFiles</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375368331000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album for QueryFiles</media:title></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375368333
+< Soup-Debug: SoupMessage 19 (0x98c560)
+< Expires: Thu, 01 Aug 2013 14:45:33 GMT
+< Date: Thu, 01 Aug 2013 14:45:33 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=vw6OtpWVuiBF; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=WnbtSDM3_TCtxlD1F6ssgQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553</id><published>2013-08-01T14:45:31.000Z</published><updated>2013-08-01T14:45:32.397Z</updated><app:edited>2013-08-01T14:45:32.397Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' href='https://picasaweb
 .google.com/libgdata.picasaweb/TestAlbumForQueryFiles39?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/acl?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5907162005897469553</gphoto:id><gphoto:name>TestAlbumForQueryFiles39</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375368331000</gphoto:timestamp><gphoto
 
:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-FBitAUKRN-c/Ufp0jAAz3nE/AAAAAAAAMsA/WfO_Bu-fjvE/TestAlbumForQueryFiles39.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-FBitAUKRN-c/Ufp0jAAz3nE/AAAAAAAAMsA/WfO_Bu-fjvE/s160-c/TestAlbumForQueryFiles39.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry>
+  
+> POST /data/feed/api/user/default/albumid/5907162005897469553 HTTP/1.1
+> Soup-Debug-Timestamp: 1375368335
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 20 (0x98c560), SoupSocket 14 (0x783300)
+> Host: picasaweb.google.com
+> Slug: photo.jpg
+> Transfer-Encoding: chunked
+> Content-Type: multipart/related; boundary=0003Z5W789deadbeefRTE456KlemsnoZV
+> Authorization: GoogleLogin 
auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375368340
+< Soup-Debug: SoupMessage 20 (0x98c560)
+< Expires: Thu, 01 Aug 2013 14:45:40 GMT
+< Date: Thu, 01 Aug 2013 14:45:40 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=_0QHZag_qPz-; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=qoAUvhoS7ajNj_PMmTCPjg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314</id><published>2013-08-01T14:45:38.000Z</published><updated>2013-08-01T14:45:38.859Z</updated><app:edited>2013-08-01T14:45:38.859Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 1</title><summary/><content 
type='image/jpeg' 
src='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/Test%252520file%2525201.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href
 
='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles39?authkey=Gv1sRgCKKx5unfo4qvuAE#5907162035673007314'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/TclHBnxkCWRiCOH8UL0V8anPQSJCD8MPruhZxgfAX5U'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit-media' type='image/jpeg' href='https://picasaweb.google.com/data/
 
media/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553&amp;iid=5907162035673007314'/><gphoto:id>5907162035673007314</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12993</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907162035673007314</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:lice
 nse><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/Test%252520file%2525201.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s72/Test%252520file%2525201.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s144/Test%252520file%2525201.jpg'
 he
 ight='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-PFuCSAHxsIM/Ufp0ku72hNI/AAAAAAAAMsE/Eka2goyoX-Q/s288/Test%252520file%2525201.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 1</media:title></media:group></entry>
+  
+> POST /data/feed/api/user/default/albumid/5907162005897469553 HTTP/1.1
+> Soup-Debug-Timestamp: 1375368341
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 21 (0x98c470), SoupSocket 15 (0x7833c0)
+> Host: picasaweb.google.com
+> Slug: photo.jpg
+> Transfer-Encoding: chunked
+> Content-Type: multipart/related; boundary=0003Z5W789deadbeefRTE456KlemsnoZV
+> Authorization: GoogleLogin 
auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375368344
+< Soup-Debug: SoupMessage 21 (0x98c470)
+< Expires: Thu, 01 Aug 2013 14:45:44 GMT
+< Date: Thu, 01 Aug 2013 14:45:44 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=RDvr4iGmJnDK; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=0I9icdM71toXnaHN1MxBpQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162054638195522?authkey=Gv1sRgCKKx5unfo4qvuAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162054638195522?authkey=Gv1sRgCKKx5unfo4qvuAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162054638195522</id><published>2013-08-01T14:45:42.000Z</published><updated>2013-08-01T14:45:42.995Z</updated><app:edited>2013-08-01T14:45:42.995Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 2</title><summary/><content 
type='image/jpeg' 
src='https://lh6.googleusercontent.com/-_iXi7PL43RA/Ufp0l1lgU0I/AAAAAAAAMsM/A1NBb7ISIGg/Test%252520file%2525202.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href
 
='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162054638195522?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles39?authkey=Gv1sRgCKKx5unfo4qvuAE#5907162054638195522'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/y9tR0pVVJV9qM87zfj0-uanPQSJCD8MPruhZxgfAX5U'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162054638195522?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162054638195522?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit-media' type='image/jpeg' href='https://picasaweb.google.com/data/
 
media/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162054638195522?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553&amp;iid=5907162054638195522'/><gphoto:id>5907162054638195522</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12995</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907162054638195522</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:lice
 nse><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh6.googleusercontent.com/-_iXi7PL43RA/Ufp0l1lgU0I/AAAAAAAAMsM/A1NBb7ISIGg/Test%252520file%2525202.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-_iXi7PL43RA/Ufp0l1lgU0I/AAAAAAAAMsM/A1NBb7ISIGg/s72/Test%252520file%2525202.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh6.googleusercontent.com/-_iXi7PL43RA/Ufp0l1lgU0I/AAAAAAAAMsM/A1NBb7ISIGg/s144/Test%252520file%2525202.jpg'
 he
 ight='92' width='100'/><media:thumbnail 
url='https://lh6.googleusercontent.com/-_iXi7PL43RA/Ufp0l1lgU0I/AAAAAAAAMsM/A1NBb7ISIGg/s288/Test%252520file%2525202.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 2</media:title></media:group></entry>
+  
+> POST /data/feed/api/user/default/albumid/5907162005897469553 HTTP/1.1
+> Soup-Debug-Timestamp: 1375368346
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 22 (0x98c380), SoupSocket 16 (0x7836c0)
+> Host: picasaweb.google.com
+> Slug: photo.jpg
+> Transfer-Encoding: chunked
+> Content-Type: multipart/related; boundary=0003Z5W789deadbeefRTE456KlemsnoZV
+> Authorization: GoogleLogin 
auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375368354
+< Soup-Debug: SoupMessage 22 (0x98c380)
+< Expires: Thu, 01 Aug 2013 14:45:54 GMT
+< Date: Thu, 01 Aug 2013 14:45:54 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=RaI-x8gXns9e; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=WCZta8DpZj71VDJW5KwoAQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162099854721666?authkey=Gv1sRgCKKx5unfo4qvuAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162099854721666?authkey=Gv1sRgCKKx5unfo4qvuAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162099854721666</id><published>2013-08-01T14:45:53.000Z</published><updated>2013-08-01T14:45:53.107Z</updated><app:edited>2013-08-01T14:45:53.107Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 3</title><summary/><content 
type='image/jpeg' 
src='https://lh5.googleusercontent.com/-poVqadt-OAg/Ufp0oeB9woI/AAAAAAAAMsU/tsfWY3JagZk/Test%252520file%2525203.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href
 
='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162099854721666?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles39?authkey=Gv1sRgCKKx5unfo4qvuAE#5907162099854721666'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/KauqmXqSdXX35n_QVk-NXqnPQSJCD8MPruhZxgfAX5U'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162099854721666?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162099854721666?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit-media' type='image/jpeg' href='https://picasaweb.google.com/data/
 
media/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162099854721666?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553&amp;iid=5907162099854721666'/><gphoto:id>5907162099854721666</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12997</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907162099854721666</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:lice
 nse><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh5.googleusercontent.com/-poVqadt-OAg/Ufp0oeB9woI/AAAAAAAAMsU/tsfWY3JagZk/Test%252520file%2525203.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-poVqadt-OAg/Ufp0oeB9woI/AAAAAAAAMsU/tsfWY3JagZk/s72/Test%252520file%2525203.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh5.googleusercontent.com/-poVqadt-OAg/Ufp0oeB9woI/AAAAAAAAMsU/tsfWY3JagZk/s144/Test%252520file%2525203.jpg'
 he
 ight='92' width='100'/><media:thumbnail 
url='https://lh5.googleusercontent.com/-poVqadt-OAg/Ufp0oeB9woI/AAAAAAAAMsU/tsfWY3JagZk/s288/Test%252520file%2525203.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 3</media:title></media:group></entry>
+  
+> POST /data/feed/api/user/default/albumid/5907162005897469553 HTTP/1.1
+> Soup-Debug-Timestamp: 1375368355
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 23 (0x98c290), SoupSocket 17 (0x7833c0)
+> Host: picasaweb.google.com
+> Slug: photo.jpg
+> Transfer-Encoding: chunked
+> Content-Type: multipart/related; boundary=0003Z5W789deadbeefRTE456KlemsnoZV
+> Authorization: GoogleLogin 
auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375368357
+< Soup-Debug: SoupMessage 23 (0x98c290)
+< Expires: Thu, 01 Aug 2013 14:45:57 GMT
+< Date: Thu, 01 Aug 2013 14:45:57 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=RbBdr79Yt57r; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=ygQGvTGkOZmtSH1sDlxWaA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162109190039570?authkey=Gv1sRgCKKx5unfo4qvuAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162109190039570?authkey=Gv1sRgCKKx5unfo4qvuAE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162109190039570</id><published>2013-08-01T14:45:56.000Z</published><updated>2013-08-01T14:45:56.011Z</updated><app:edited>2013-08-01T14:45:56.011Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Test file 4</title><summary/><content 
type='image/jpeg' 
src='https://lh6.googleusercontent.com/-wCE8bmyX3aY/Ufp0pAzraBI/AAAAAAAAMsc/rIeTDl7BHEU/Test%252520file%2525204.jpg'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href
 
='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162109190039570?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles39?authkey=Gv1sRgCKKx5unfo4qvuAE#5907162109190039570'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/iEPOCVy7-6N9JxTuFhROkqnPQSJCD8MPruhZxgfAX5U'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162109190039570?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162109190039570?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit-media' type='image/jpeg' href='https://picasaweb.google.com/data/
 
media/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162109190039570?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907162005897469553&amp;iid=5907162109190039570'/><gphoto:id>5907162109190039570</gphoto:id><gphoto:albumid>5907162005897469553</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154790828000</gphoto:timestamp><gphoto:imageVersion>12999</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907162109190039570</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Noncommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:lice
 nse><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh6.googleusercontent.com/-wCE8bmyX3aY/Ufp0pAzraBI/AAAAAAAAMsc/rIeTDl7BHEU/Test%252520file%2525204.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-wCE8bmyX3aY/Ufp0pAzraBI/AAAAAAAAMsc/rIeTDl7BHEU/s72/Test%252520file%2525204.jpg'
 height='67' width='72'/><media:thumbnail 
url='https://lh6.googleusercontent.com/-wCE8bmyX3aY/Ufp0pAzraBI/AAAAAAAAMsc/rIeTDl7BHEU/s144/Test%252520file%2525204.jpg'
 he
 ight='92' width='100'/><media:thumbnail 
url='https://lh6.googleusercontent.com/-wCE8bmyX3aY/Ufp0pAzraBI/AAAAAAAAMsc/rIeTDl7BHEU/s288/Test%252520file%2525204.jpg'
 height='92' width='100'/><media:title type='plain'>Test file 4</media:title></media:group></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/setup-upload b/gdata/tests/traces/picasaweb/setup-upload
new file mode 100644
index 0000000..e69de29
diff --git a/gdata/tests/traces/picasaweb/teardown-insert-album 
b/gdata/tests/traces/picasaweb/teardown-insert-album
new file mode 100644
index 0000000..f96602c
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/teardown-insert-album
@@ -0,0 +1,27 @@
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375193230
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 67 (0x7fffe40191d0), SoupSocket 30 (0x7fffdc0046c0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> If-Match: "YD0qeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193231
+< Soup-Debug: SoupMessage 67 (0x7fffe40191d0)
+< Expires: Tue, 30 Jul 2013 14:07:10 GMT
+< Date: Tue, 30 Jul 2013 14:07:10 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=r1_n-6BVLIsW; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=3dBj2CkqejEkgZ1nrLkaGg; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/picasaweb/teardown-insert-comment 
b/gdata/tests/traces/picasaweb/teardown-insert-comment
new file mode 100644
index 0000000..f0729e7
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/teardown-insert-comment
@@ -0,0 +1,26 @@
+> DELETE 
/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/photoid/5907162035673007314/commentid/5907161876232206500?authkey=Gv1sRgCKKx5unfo4qvuAE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375368361
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 25 (0x98c0b0), SoupSocket 18 (0x7fffe4003e20)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375368362
+< Soup-Debug: SoupMessage 25 (0x98c0b0)
+< Expires: Thu, 01 Aug 2013 14:46:01 GMT
+< Date: Thu, 01 Aug 2013 14:46:01 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=pMALuboq7UlO; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=TQglgyLXWhM56m9zTRicHw; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/picasaweb/teardown-query-all-albums 
b/gdata/tests/traces/picasaweb/teardown-query-all-albums
new file mode 100644
index 0000000..2d07cd2
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/teardown-query-all-albums
@@ -0,0 +1,108 @@
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375193216
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 47 (0x78d190), SoupSocket 21 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> If-Match: "YD0qeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193217
+< Soup-Debug: SoupMessage 47 (0x78d190)
+< Expires: Tue, 30 Jul 2013 14:06:56 GMT
+< Date: Tue, 30 Jul 2013 14:06:56 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=jidlGO74otNO; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=y7RNVE_2yfziSmfv5s4SiA; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375193217
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 48 (0x78d0a0), SoupSocket 21 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> If-Match: "YD0qeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193217
+< Soup-Debug: SoupMessage 48 (0x78d0a0)
+< Expires: Tue, 30 Jul 2013 14:06:57 GMT
+< Date: Tue, 30 Jul 2013 14:06:57 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=ervPcy0WRqj7; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=oqxPfDw0j5QF3AgVSK1t9w; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375193217
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 49 (0x78d550), SoupSocket 21 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> If-Match: "YD0qeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193218
+< Soup-Debug: SoupMessage 49 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:58 GMT
+< Date: Tue, 30 Jul 2013 14:06:58 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=_pfVAP39nN2h; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=bQ9rzDUYpZVSDdNVIw6FBg; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375193218
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 50 (0x78d550), SoupSocket 21 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> If-Match: "YD0qeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193219
+< Soup-Debug: SoupMessage 50 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:58 GMT
+< Date: Tue, 30 Jul 2013 14:06:58 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=VJZ-_xK_wlKI; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=hOZsX0JWekOZRLD1LMsu3w; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/picasaweb/teardown-query-comments 
b/gdata/tests/traces/picasaweb/teardown-query-comments
new file mode 100644
index 0000000..8a9cac4
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/teardown-query-comments
@@ -0,0 +1,78 @@
+> DELETE 
/data/entry/api/user/libgdata.picasaweb/albumid/5907157944010797329/photoid/5907157956185170690/commentid/5907157991014140692?authkey=Gv1sRgCJq36rbq0by77gE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375367408
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 55 (0x79e9c0), SoupSocket 34 (0x7068e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAAAOuUYXwRBAHgNEEbEl4k3Pfxl9EMLyqMFS6XDPU8V6x6UdXPfUNk8406bdjrbicpY09aRzdq5P_E2B4rdPeJG9iMU-Fcapg-QZcFs_CnJpq66uXpvAcZ2y_TSvFzzliXnxvIIPeU-8ofrMKG3STiGssYg2SkpME_sUu4LOpsBmcP8380ZMY-7PFQZYzZ1VmwB58hmU34NecZY4b3nngnRI4EKZiMseyudbDXuE-X6KIJp4SVY1RVvMCu5oRTHw5vd6C0s3JM-n9_u9xDsXBn-3xdKvPeGBINjX33DeqFvIgw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375367409
+< Soup-Debug: SoupMessage 55 (0x79e9c0)
+< Expires: Thu, 01 Aug 2013 14:30:08 GMT
+< Date: Thu, 01 Aug 2013 14:30:08 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=4E5u3Yr2WUlJ; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=Sf9JkdQWsvm05zmwXbcXTg; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> DELETE 
/data/entry/api/user/libgdata.picasaweb/albumid/5907157944010797329/photoid/5907157956185170690/commentid/5907158001023135444?authkey=Gv1sRgCJq36rbq0by77gE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375367409
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 56 (0x79e9c0), SoupSocket 34 (0x7068e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAAAOuUYXwRBAHgNEEbEl4k3Pfxl9EMLyqMFS6XDPU8V6x6UdXPfUNk8406bdjrbicpY09aRzdq5P_E2B4rdPeJG9iMU-Fcapg-QZcFs_CnJpq66uXpvAcZ2y_TSvFzzliXnxvIIPeU-8ofrMKG3STiGssYg2SkpME_sUu4LOpsBmcP8380ZMY-7PFQZYzZ1VmwB58hmU34NecZY4b3nngnRI4EKZiMseyudbDXuE-X6KIJp4SVY1RVvMCu5oRTHw5vd6C0s3JM-n9_u9xDsXBn-3xdKvPeGBINjX33DeqFvIgw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375367410
+< Soup-Debug: SoupMessage 56 (0x79e9c0)
+< Expires: Thu, 01 Aug 2013 14:30:09 GMT
+< Date: Thu, 01 Aug 2013 14:30:09 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=YpxgBBFu6JYN; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=KejD0X_urRXbohBLbA5nKQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> DELETE 
/data/entry/api/user/libgdata.picasaweb/albumid/5907157944010797329/photoid/5907157956185170690/commentid/5907158005467377316?authkey=Gv1sRgCJq36rbq0by77gE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375367410
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 57 (0x79eab0), SoupSocket 34 (0x7068e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAAAOuUYXwRBAHgNEEbEl4k3Pfxl9EMLyqMFS6XDPU8V6x6UdXPfUNk8406bdjrbicpY09aRzdq5P_E2B4rdPeJG9iMU-Fcapg-QZcFs_CnJpq66uXpvAcZ2y_TSvFzzliXnxvIIPeU-8ofrMKG3STiGssYg2SkpME_sUu4LOpsBmcP8380ZMY-7PFQZYzZ1VmwB58hmU34NecZY4b3nngnRI4EKZiMseyudbDXuE-X6KIJp4SVY1RVvMCu5oRTHw5vd6C0s3JM-n9_u9xDsXBn-3xdKvPeGBINjX33DeqFvIgw
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375367410
+< Soup-Debug: SoupMessage 57 (0x79eab0)
+< Expires: Thu, 01 Aug 2013 14:30:10 GMT
+< Date: Thu, 01 Aug 2013 14:30:10 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=5osU0qKKcq5B; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=VGDcwjuURtoHOZxB8knHcA; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/picasaweb/teardown-query-files 
b/gdata/tests/traces/picasaweb/teardown-query-files
new file mode 100644
index 0000000..1adc65c
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/teardown-query-files
@@ -0,0 +1,57 @@
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375368362
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 26 (0x98c0b0), SoupSocket 18 (0x7fffe4003e20)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375368364
+< Soup-Debug: SoupMessage 26 (0x98c0b0)
+< Expires: Thu, 01 Aug 2013 14:46:03 GMT
+< Date: Thu, 01 Aug 2013 14:46:03 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=hGGq8mXJaQ2u; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=8wDn-Zx0VHFXzBLLoSbyCw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"AkQCQHk5fip7ImA9WhFWE0s."
+< Last-Modified: Thu, 01 Aug 2013 14:46:01 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;AkQCQHk5fip7ImA9WhFWE0s.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-08-01T14:46:01.726Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YDUqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907162005897469553</id><published>2013-08-01T14:45:31.000Z</published><updated>2013-08-01T14:45:56.011Z</updated><app:edited>2013-08-01T14:45:56.011Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google.com/d
 ata/feed/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles39?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553/acl?authkey=Gv1sRgCKKx5unfo4qvuAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5907162005897469553</gphoto:id><gpho
 
to:name>TestAlbumForQueryFiles39</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375368331000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-FBitAUKRN-c/Ufp0jAAz3nE/AAAAAAAAMsg/22aTQ6Fn6oE/TestAlbumForQueryFiles39.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-FBitAUKRN-c/Ufp0jAAz3nE/AAAAAAAAMsg/22aTQ6Fn6oE/s160-c/TestAlbumForQueryFiles39.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;WCp7ImA9&quot;'><id>https://picasaweb.google.co
 
m/data/entry/user/libgdata.picasaweb/albumid/5907150240928202641</id><published>2013-08-01T13:59:50.000Z</published><updated>2013-08-01T14:03:53.972Z</updated><app:edited>2013-08-01T14:03:53.972Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907150240928202641?authkey=Gv1sRgCMCane22nYyvRw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles27?authkey=Gv1sRgCMCane22nYyvRw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150240928202641?authkey=Gv1sRgCMCane22nYyvRw'/><link
 rel='edit' type='application/atom+xml' href='https://pi
 
casaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150240928202641?authkey=Gv1sRgCMCane22nYyvRw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907150240928202641/acl?authkey=Gv1sRgCMCane22nYyvRw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5907150240928202641</gphoto:id><gphoto:name>TestAlbumForQueryFiles27</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375365590000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh5.googleusercontent.com/-Mjp57yiaWTw/Ufpp2MFjf5E/AAAAAAAAM
 iY/9zUbxhL0l8M/TestAlbumForQueryFiles27.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-Mjp57yiaWTw/Ufpp2MFjf5E/AAAAAAAAMiY/9zUbxhL0l8M/s160-c/TestAlbumForQueryFiles27.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;WCp7ImA9&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907149799689683281</id><published>2013-08-01T13:58:07.000Z</published><updated>2013-08-01T14:03:43.164Z</updated><app:edited>2013-08-01T14:03:43.164Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasa
 
web.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907149799689683281?authkey=Gv1sRgCJfS5qnrkZf9dw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles26?authkey=Gv1sRgCJfS5qnrkZf9dw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907149799689683281?authkey=Gv1sRgCJfS5qnrkZf9dw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907149799689683281?authkey=Gv1sRgCJfS5qnrkZf9dw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907149799689683281/acl?authkey=Gv1sRgCJfS5qnrkZf9dw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5907149799689683281</gpho
 
to:id><gphoto:name>TestAlbumForQueryFiles26</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375365487000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4_QYk57jZLo/UfppcgWGAVE/AAAAAAAAMh0/tr2ocBiUCxQ/TestAlbumForQueryFiles26.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4_QYk57jZLo/UfppcgWGAVE/AAAAAAAAMh0/tr2ocBiUCxQ/s160-c/TestAlbumForQueryFiles26.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry gd:etag='&quot;WCp7ImA9&quot;'><id>https://picasawe
 
b.google.com/data/entry/user/libgdata.picasaweb/albumid/5907149334059511441</id><published>2013-08-01T13:56:18.000Z</published><updated>2013-08-01T14:02:16.799Z</updated><app:edited>2013-08-01T14:02:16.799Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907149334059511441?authkey=Gv1sRgCLHn8Kefn6z3cg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles25?authkey=Gv1sRgCLHn8Kefn6z3cg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907149334059511441?authkey=Gv1sRgCLHn8Kefn6z3cg'/><link
 rel='edit' type='application/atom+xml' href=
 
'https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907149334059511441?authkey=Gv1sRgCLHn8Kefn6z3cg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907149334059511441/acl?authkey=Gv1sRgCLHn8Kefn6z3cg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5907149334059511441</gphoto:id><gphoto:name>TestAlbumForQueryFiles25</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375365378000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh4.googleusercontent.com/-WM0-C1OIHX4/UfppBZvNbp
 E/AAAAAAAAMhQ/dDWX_Ajx5RM/TestAlbumForQueryFiles25.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-WM0-C1OIHX4/UfppBZvNbpE/AAAAAAAAMhQ/dDWX_Ajx5RM/s160-c/TestAlbumForQueryFiles25.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;WCp7ImA9&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907147805051573569</id><published>2013-08-01T13:50:22.000Z</published><updated>2013-08-01T13:54:06.151Z</updated><app:edited>2013-08-01T13:54:06.151Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='htt
 
ps://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907147805051573569?authkey=Gv1sRgCLy43sei-8OX-AE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles24?authkey=Gv1sRgCLy43sei-8OX-AE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907147805051573569?authkey=Gv1sRgCLy43sei-8OX-AE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907147805051573569?authkey=Gv1sRgCLy43sei-8OX-AE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907147805051573569/acl?authkey=Gv1sRgCLy43sei-8OX-AE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>590714780
 
5051573569</gphoto:id><gphoto:name>TestAlbumForQueryFiles24</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375365022000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-5_LR5-WTiic/UfpnoZvT1UE/AAAAAAAAMgc/aqVe9nsW4KU/TestAlbumForQueryFiles24.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-5_LR5-WTiic/UfpnoZvT1UE/AAAAAAAAMgc/aqVe9nsW4KU/s160-c/TestAlbumForQueryFiles24.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry gd:etag='&quot;WCp7ImA9&quot;'><id>
 
https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907147443497598305</id><published>2013-08-01T13:48:58.000Z</published><updated>2013-08-01T13:54:46.173Z</updated><app:edited>2013-08-01T13:54:46.173Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907147443497598305?authkey=Gv1sRgCI7Spv2f7beXDw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles23?authkey=Gv1sRgCI7Spv2f7beXDw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907147443497598305?authkey=Gv1sRgCI7Spv2f7beXDw'/><link
 rel='edit' type='application
 /atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907147443497598305?authkey=Gv1sRgCI7Spv2f7beXDw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907147443497598305/acl?authkey=Gv1sRgCI7Spv2f7beXDw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5907147443497598305</gphoto:id><gphoto:name>TestAlbumForQueryFiles23</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375364938000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh6.googleusercontent.com/-XkKuN0
 -C_oQ/UfpnTW2H_WE/AAAAAAAAMf4/1X6YaY0IUbM/TestAlbumForQueryFiles23.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-XkKuN0-C_oQ/UfpnTW2H_WE/AAAAAAAAMf4/1X6YaY0IUbM/s160-c/TestAlbumForQueryFiles23.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry></feed>
+  
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5907162005897469553?authkey=Gv1sRgCKKx5unfo4qvuAE 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375368364
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 27 (0x98c290), SoupSocket 18 (0x7fffe4003e20)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAABqfAP7BRwUl4NRRp09PQSGS8uM-ZHOZSba6D-hWAtvmHRVj-ck_2T9BM_92VDR_pDDGg2bApfteDk1ITzABtR_40EhsW_nXzefXLRJERXTVaZl9fs1z3wuPIApugLt5Vf5-wimwxfqmsGz_45loIQFnyvJ3i0jPnvGutxhdAD7OxQHugZ6U_79W74suTD6wqP8JTcAlbyAVDcA7cdyLccjx6Pz_EgrD72AYxCCrQTKlX-d4Wv1PEbNKxXSP1g1JM2ugqZF-JBLWh5SAjyTpKK9Igbs7M1DeVrhPb4DQMfsdg
+> GData-Version: 2
+> If-Match: "YDUqeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375368365
+< Soup-Debug: SoupMessage 27 (0x98c290)
+< Expires: Thu, 01 Aug 2013 14:46:04 GMT
+< Date: Thu, 01 Aug 2013 14:46:04 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=ZX2Vo4m-UhQJ; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=CfqauDSO_yZV_AWCpuD9Cg; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/picasaweb/teardown-upload b/gdata/tests/traces/picasaweb/teardown-upload
new file mode 100644
index 0000000..64dfa3e
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/teardown-upload
@@ -0,0 +1,27 @@
+> DELETE 
/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175297231928274?authkey=Gv1sRgCO-m15DWp4ah_gE
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375371427
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 7 (0x7cc0b0), SoupSocket 4 (0x8d16c0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAACZva9KQ-ijLNwhVRPaKyaAvfQFJ-sSRQOzXypYgYTorQq4irPd_fTLzizl7OrjFxgudgtT98sAs1egYqk0OZjiKjq0sqOLvppK0fevGxEO8EEwBP52_0QAL_ygGW7JqFTq836TMfNx6n3SjFp8aU7WbgFQY6OX_adGtpZTmXjMmSKnRac2kOoGcf6xuGW-_qFuUomxHy917G7DFhkyGmPiomDpFLv8gvyH7RznvZt9ubdNTw8TtIEbLjoYbBeufNLv-KedkVVz8lyxHephwIUyjZ7mIdhOFWqEsrlb79GrrA
+> GData-Version: 2
+> If-Match: "YD0qeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375371429
+< Soup-Debug: SoupMessage 7 (0x7cc0b0)
+< Expires: Thu, 01 Aug 2013 15:37:07 GMT
+< Date: Thu, 01 Aug 2013 15:37:07 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=unjdog0OmnIe; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=f1z9unk-7tTqgyrBcz0TIw; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/picasaweb/upload-default-album 
b/gdata/tests/traces/picasaweb/upload-default-album
new file mode 100644
index 0000000..fc483c2
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/upload-default-album
@@ -0,0 +1,34 @@
+> POST /data/feed/api/user/default/albumid/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375371412
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 1 (0x7cc290), SoupSocket 1 (0x8d16c0)
+> Host: picasaweb.google.com
+> Slug: photo.jpg
+> Transfer-Encoding: chunked
+> Content-Type: multipart/related; boundary=0003Z5W789deadbeefRTE456KlemsnoZV
+> Authorization: GoogleLogin 
auth=DQAAANoAAACZva9KQ-ijLNwhVRPaKyaAvfQFJ-sSRQOzXypYgYTorQq4irPd_fTLzizl7OrjFxgudgtT98sAs1egYqk0OZjiKjq0sqOLvppK0fevGxEO8EEwBP52_0QAL_ygGW7JqFTq836TMfNx6n3SjFp8aU7WbgFQY6OX_adGtpZTmXjMmSKnRac2kOoGcf6xuGW-_qFuUomxHy917G7DFhkyGmPiomDpFLv8gvyH7RznvZt9ubdNTw8TtIEbLjoYbBeufNLv-KedkVVz8lyxHephwIUyjZ7mIdhOFWqEsrlb79GrrA
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375371415
+< Soup-Debug: SoupMessage 1 (0x7cc290)
+< Expires: Thu, 01 Aug 2013 15:36:55 GMT
+< Date: Thu, 01 Aug 2013 15:36:55 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=QAQbKsmoipxM; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=DIGGuPkU5mc4xRHVVl0kRw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175242186045490?authkey=Gv1sRgCO-m15DWp4ah_gE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175242186045490?authkey=Gv1sRgCO-m15DWp4ah_gE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:gml='http://www.opengis.net/gml' 
xmlns:georss='http://www.georss.org/georss' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175242186045490</id><published>2013-08-01T15:36:53.000Z</published><updated>2013-08-01T15:36:53.761Z</updated><app:edited>2013-08-01T15:36:53.761Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Photo Entry Title</title><summary>Photo 
Summary</summary><content type='image/jpeg' 
src='https://lh3.googleusercontent.com/-58kNdEYSlwM/UfqAldB7ODI/AAAAAAAAMxg/I2fVmwVza-I/P
 hoto%252520Entry%252520Title.jpg'/><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175242186045490?authkey=Gv1sRgCO-m15DWp4ah_gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/DropBox02?authkey=Gv1sRgCO-m15DWp4ah_gE#5907175242186045490'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/hFnr2vLPAnwymlNd9jXSC_Z3FpWmmtg91ParBYTtppo'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175242186045490?authkey=Gv1sRgCO-m15DWp4ah_gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175242186045490?authkey=Gv1
 sRgCO-m15DWp4ah_gE'/><link rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175242186045490?authkey=Gv1sRgCO-m15DWp4ah_gE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907174027540672513&amp;iid=5907175242186045490'/><gphoto:id>5907175242186045490</gphoto:id><gphoto:albumid>5907174027540672513</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154823228000</gphoto:timestamp><gphoto:imageVersion>13080</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907175242186045490</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Nonc
 ommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-58kNdEYSlwM/UfqAldB7ODI/AAAAAAAAMxg/I2fVmwVza-I/Photo%252520Entry%252520Title.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='plain'>Photo 
Summary</media:description><media:keywords>foo, bar, %2C%2Cbaz%2Cbaz</media:keywords><media:thumbnail 
url='https://lh3.googleusercontent.com/-58kNdEYSlwM/UfqAldB7ODI/AAAAAAAAMxg/I2fVmwVza-I/s72/Photo%252520E
 ntry%252520Title.jpg' height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-58kNdEYSlwM/UfqAldB7ODI/AAAAAAAAMxg/I2fVmwVza-I/s144/Photo%252520Entry%252520Title.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-58kNdEYSlwM/UfqAldB7ODI/AAAAAAAAMxg/I2fVmwVza-I/s288/Photo%252520Entry%252520Title.jpg'
 height='92' width='100'/><media:title type='plain'>Photo Entry 
Title</media:title></media:group><georss:where><gml:Point><gml:pos>17.127 
-110.35</gml:pos></gml:Point></georss:where></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/upload_default_album-async 
b/gdata/tests/traces/picasaweb/upload_default_album-async
new file mode 100644
index 0000000..00e0aa9
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/upload_default_album-async
@@ -0,0 +1,34 @@
+> POST /data/feed/api/user/default/albumid/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375371418
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 3 (0x7cc560), SoupSocket 2 (0x8d1780)
+> Host: picasaweb.google.com
+> Slug: photo.jpg
+> Transfer-Encoding: chunked
+> Content-Type: multipart/related; boundary=0003Z5W789deadbeefRTE456KlemsnoZV
+> Authorization: GoogleLogin 
auth=DQAAANoAAACZva9KQ-ijLNwhVRPaKyaAvfQFJ-sSRQOzXypYgYTorQq4irPd_fTLzizl7OrjFxgudgtT98sAs1egYqk0OZjiKjq0sqOLvppK0fevGxEO8EEwBP52_0QAL_ygGW7JqFTq836TMfNx6n3SjFp8aU7WbgFQY6OX_adGtpZTmXjMmSKnRac2kOoGcf6xuGW-_qFuUomxHy917G7DFhkyGmPiomDpFLv8gvyH7RznvZt9ubdNTw8TtIEbLjoYbBeufNLv-KedkVVz8lyxHephwIUyjZ7mIdhOFWqEsrlb79GrrA
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375371420
+< Soup-Debug: SoupMessage 3 (0x7cc560)
+< Expires: Thu, 01 Aug 2013 15:37:00 GMT
+< Date: Thu, 01 Aug 2013 15:37:00 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=4nFD3F0k6DMQ; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=XakkqCswmz0PM8mfjz3LdA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175265198505634?authkey=Gv1sRgCO-m15DWp4ah_gE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175265198505634?authkey=Gv1sRgCO-m15DWp4ah_gE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:gml='http://www.opengis.net/gml' 
xmlns:georss='http://www.georss.org/georss' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175265198505634</id><published>2013-08-01T15:36:59.000Z</published><updated>2013-08-01T15:36:59.186Z</updated><app:edited>2013-08-01T15:36:59.186Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Photo Entry Title</title><summary>Photo 
Summary</summary><content type='image/jpeg' 
src='https://lh3.googleusercontent.com/-Uqd-toXh0Dk/UfqAmywhfqI/AAAAAAAAMxs/LIVdGsgy2hE/P
 hoto%252520Entry%252520Title.jpg'/><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175265198505634?authkey=Gv1sRgCO-m15DWp4ah_gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/DropBox02?authkey=Gv1sRgCO-m15DWp4ah_gE#5907175265198505634'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/y-5qJGJ_rL75jbNMG-BKDvZ3FpWmmtg91ParBYTtppo'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175265198505634?authkey=Gv1sRgCO-m15DWp4ah_gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175265198505634?authkey=Gv1
 sRgCO-m15DWp4ah_gE'/><link rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175265198505634?authkey=Gv1sRgCO-m15DWp4ah_gE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907174027540672513&amp;iid=5907175265198505634'/><gphoto:id>5907175265198505634</gphoto:id><gphoto:albumid>5907174027540672513</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154823228000</gphoto:timestamp><gphoto:imageVersion>13083</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907175265198505634</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Nonc
 ommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh3.googleusercontent.com/-Uqd-toXh0Dk/UfqAmywhfqI/AAAAAAAAMxs/LIVdGsgy2hE/Photo%252520Entry%252520Title.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='plain'>Photo 
Summary</media:description><media:keywords>foo, bar, %2C%2Cbaz%2Cbaz</media:keywords><media:thumbnail 
url='https://lh3.googleusercontent.com/-Uqd-toXh0Dk/UfqAmywhfqI/AAAAAAAAMxs/LIVdGsgy2hE/s72/Photo%252520E
 ntry%252520Title.jpg' height='67' width='72'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Uqd-toXh0Dk/UfqAmywhfqI/AAAAAAAAMxs/LIVdGsgy2hE/s144/Photo%252520Entry%252520Title.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Uqd-toXh0Dk/UfqAmywhfqI/AAAAAAAAMxs/LIVdGsgy2hE/s288/Photo%252520Entry%252520Title.jpg'
 height='92' width='100'/><media:title type='plain'>Photo Entry 
Title</media:title></media:group><georss:where><gml:Point><gml:pos>17.127 
-110.35</gml:pos></gml:Point></georss:where></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/upload_default_album-async-cancellation 
b/gdata/tests/traces/picasaweb/upload_default_album-async-cancellation
new file mode 100644
index 0000000..971053e
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/upload_default_album-async-cancellation
@@ -0,0 +1,34 @@
+> POST /data/feed/api/user/default/albumid/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375371425
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 6 (0x7cc380), SoupSocket 4 (0x8d16c0)
+> Host: picasaweb.google.com
+> Slug: photo.jpg
+> Transfer-Encoding: chunked
+> Content-Type: multipart/related; boundary=0003Z5W789deadbeefRTE456KlemsnoZV
+> Authorization: GoogleLogin 
auth=DQAAANoAAACZva9KQ-ijLNwhVRPaKyaAvfQFJ-sSRQOzXypYgYTorQq4irPd_fTLzizl7OrjFxgudgtT98sAs1egYqk0OZjiKjq0sqOLvppK0fevGxEO8EEwBP52_0QAL_ygGW7JqFTq836TMfNx6n3SjFp8aU7WbgFQY6OX_adGtpZTmXjMmSKnRac2kOoGcf6xuGW-_qFuUomxHy917G7DFhkyGmPiomDpFLv8gvyH7RznvZt9ubdNTw8TtIEbLjoYbBeufNLv-KedkVVz8lyxHephwIUyjZ7mIdhOFWqEsrlb79GrrA
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375371427
+< Soup-Debug: SoupMessage 6 (0x7cc380)
+< Expires: Thu, 01 Aug 2013 15:37:07 GMT
+< Date: Thu, 01 Aug 2013 15:37:07 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=Fy1opNImoDxy; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=biW_Y69HR408QkGzjLWmyA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175297231928274?authkey=Gv1sRgCO-m15DWp4ah_gE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175297231928274?authkey=Gv1sRgCO-m15DWp4ah_gE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:gml='http://www.opengis.net/gml' 
xmlns:georss='http://www.georss.org/georss' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175297231928274</id><published>2013-08-01T15:37:06.000Z</published><updated>2013-08-01T15:37:06.071Z</updated><app:edited>2013-08-01T15:37:06.071Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#photo'/><title>Photo Entry Title</title><summary>Photo 
Summary</summary><content type='image/jpeg' 
src='https://lh5.googleusercontent.com/-V2lTRioXTfQ/UfqAoqF4u9I/AAAAAAAAMx8/1J9rsdKpoG8/P
 hoto%252520Entry%252520Title.jpg'/><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175297231928274?authkey=Gv1sRgCO-m15DWp4ah_gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/DropBox02?authkey=Gv1sRgCO-m15DWp4ah_gE#5907175297231928274'/><link
 rel='http://schemas.google.com/photos/2007#canonical' type='text/html' 
href='https://picasaweb.google.com/lh/photo/wymKdbWW1NA3Qnv6ac_blPZ3FpWmmtg91ParBYTtppo'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175297231928274?authkey=Gv1sRgCO-m15DWp4ah_gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175297231928274?authkey=Gv1
 sRgCO-m15DWp4ah_gE'/><link rel='edit-media' type='image/jpeg' 
href='https://picasaweb.google.com/data/media/api/user/libgdata.picasaweb/albumid/5907174027540672513/photoid/5907175297231928274?authkey=Gv1sRgCO-m15DWp4ah_gE'/><link
 rel='http://schemas.google.com/photos/2007#report' type='text/html' 
href='https://picasaweb.google.com/lh/reportAbuse?uname=libgdata.picasaweb&amp;aid=5907174027540672513&amp;iid=5907175297231928274'/><gphoto:id>5907175297231928274</gphoto:id><gphoto:albumid>5907174027540672513</gphoto:albumid><gphoto:access>private</gphoto:access><gphoto:width>100</gphoto:width><gphoto:height>92</gphoto:height><gphoto:size>17660</gphoto:size><gphoto:checksum/><gphoto:timestamp>1154823228000</gphoto:timestamp><gphoto:imageVersion>13087</gphoto:imageVersion><gphoto:commentingEnabled>true</gphoto:commentingEnabled><gphoto:commentCount>0</gphoto:commentCount><gphoto:streamId>shared_group_5907175297231928274</gphoto:streamId><gphoto:license
 id='2' name='Attribution-Nonc
 ommercial' 
url='http://creativecommons.org/licenses/by-nc/3.0'>ATTRIBUTION_NON_COMMERCIAL</gphoto:license><gphoto:shapes 
faces='done'/><exif:tags><exif:fstop>3.9</exif:fstop><exif:make>Panasonic</exif:make><exif:model>DMC-TZ1</exif:model><exif:exposure>0.01</exif:exposure><exif:flash>false</exif:flash><exif:focallength>16.6</exif:focallength><exif:iso>80</exif:iso><exif:time>1154798028000</exif:time><exif:imageUniqueID>b62dec53eb93fc15ce39d7eb2e66dd3a</exif:imageUniqueID></exif:tags><media:group><media:content
 
url='https://lh5.googleusercontent.com/-V2lTRioXTfQ/UfqAoqF4u9I/AAAAAAAAMx8/1J9rsdKpoG8/Photo%252520Entry%252520Title.jpg'
 height='92' width='100' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='plain'>Photo 
Summary</media:description><media:keywords>foo, bar, %2C%2Cbaz%2Cbaz</media:keywords><media:thumbnail 
url='https://lh5.googleusercontent.com/-V2lTRioXTfQ/UfqAoqF4u9I/AAAAAAAAMx8/1J9rsdKpoG8/s72/Photo%252520E
 ntry%252520Title.jpg' height='67' width='72'/><media:thumbnail 
url='https://lh5.googleusercontent.com/-V2lTRioXTfQ/UfqAoqF4u9I/AAAAAAAAMx8/1J9rsdKpoG8/s144/Photo%252520Entry%252520Title.jpg'
 height='92' width='100'/><media:thumbnail 
url='https://lh5.googleusercontent.com/-V2lTRioXTfQ/UfqAoqF4u9I/AAAAAAAAMx8/1J9rsdKpoG8/s288/Photo%252520Entry%252520Title.jpg'
 height='92' width='100'/><media:title type='plain'>Photo Entry 
Title</media:title></media:group><georss:where><gml:Point><gml:pos>17.127 
-110.35</gml:pos></gml:Point></georss:where></entry>
+  


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]