summaryrefslogtreecommitdiffstats
path: root/tests/src/com/android
diff options
context:
space:
mode:
authorSteve Howard <showard@google.com>2010-07-14 11:30:59 -0700
committerSteve Howard <showard@google.com>2010-07-15 10:47:37 -0700
commit5224c6fbf20b4803a580ef449ab87ebfbbfedb78 (patch)
tree11ece8c8594bb526e0e36edb6514fb025c973c87 /tests/src/com/android
parent6d9b98282c817b86a00f9c19a705da4cb19bc3a6 (diff)
downloadandroid_packages_providers_DownloadProvider-5224c6fbf20b4803a580ef449ab87ebfbbfedb78.tar.gz
android_packages_providers_DownloadProvider-5224c6fbf20b4803a580ef449ab87ebfbbfedb78.tar.bz2
android_packages_providers_DownloadProvider-5224c6fbf20b4803a580ef449ab87ebfbbfedb78.zip
Support for custom HTTP headers on download requests
Provider changes: * new many-to-one DB table holding headers for each download. since there was no real migration logic in DownloadProvider, I implemented some. * DownloadProvider.insert() reads request headers out of the ContentValues and puts them into the new table * DownloadProvider.query() supports a new URI form, download/#/headers, to fetch the headers associated with a download * DownloadProvider.delete() removes request headers from this table Service changes: * made DownloadInfo store request headers upon initialization. While I was at it, I refactored the initialization logic into DownloadInfo to get rid of the massive 24-parameter constructor. The right next step would be to move the update logic into DownloadInfo and merge it with the initialization logic; however, I realized that headers don't need to be updatable, and in the future, we won't need the update logic at all, so i didn't bother touching the update code. * made DownloadThread read headers from the DownloadInfo and include them in the request; merged the custom Cookie and Referer logic into this logic Also added a couple new test cases for this stuff. Change-Id: I421ce1f0a694e815f2e099795182393650fcb3ff
Diffstat (limited to 'tests/src/com/android')
-rw-r--r--tests/src/com/android/providers/downloads/PublicApiFunctionalTest.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/src/com/android/providers/downloads/PublicApiFunctionalTest.java b/tests/src/com/android/providers/downloads/PublicApiFunctionalTest.java
index e3b278bc..e9195609 100644
--- a/tests/src/com/android/providers/downloads/PublicApiFunctionalTest.java
+++ b/tests/src/com/android/providers/downloads/PublicApiFunctionalTest.java
@@ -20,6 +20,7 @@ import android.database.Cursor;
import android.net.DownloadManager;
import android.net.Uri;
import android.os.Environment;
+import android.util.Log;
import tests.http.RecordedRequest;
import java.io.File;
@@ -271,6 +272,27 @@ public class PublicApiFunctionalTest extends AbstractDownloadManagerFunctionalTe
}
}
+ public void testRequestHeaders() throws Exception {
+ enqueueEmptyResponse(HTTP_OK);
+ Download download = enqueueRequest(getRequest().setRequestHeader("Header1", "value1")
+ .setRequestHeader("Header2", "value2"));
+ RecordedRequest request = download.runUntilStatus(DownloadManager.STATUS_SUCCESSFUL);
+
+ assertTrue(request.getHeaders().contains("Header1: value1"));
+ assertTrue(request.getHeaders().contains("Header2: value2"));
+ }
+
+ public void testDelete() throws Exception {
+ Download download = enqueueRequest(getRequest().setRequestHeader("header", "value"));
+ mManager.remove(download.mId);
+ Cursor cursor = mManager.query(new DownloadManager.Query());
+ try {
+ assertEquals(0, cursor.getCount());
+ } finally {
+ cursor.close();
+ }
+ }
+
private DownloadManager.Request getRequest() throws MalformedURLException {
return getRequest(getServerUri(REQUEST_PATH));
}