diff options
author | Guang Zhu <guangzhu@google.com> | 2014-09-09 14:44:17 -0700 |
---|---|---|
committer | Guang Zhu <guangzhu@google.com> | 2014-09-09 14:44:17 -0700 |
commit | 30478148bda4667f9ab9a9cd83f90d6c2fb017ff (patch) | |
tree | 056c269038b1c1a2dc5cf9c545c209a557d541a2 | |
parent | 97dc52c8579d70a075e9c999f1f244bbcf3e9bc1 (diff) | |
download | frameworks_base-30478148bda4667f9ab9a9cd83f90d6c2fb017ff.zip frameworks_base-30478148bda4667f9ab9a9cd83f90d6c2fb017ff.tar.gz frameworks_base-30478148bda4667f9ab9a9cd83f90d6c2fb017ff.tar.bz2 |
add some assert messages to download manager test
Change-Id: If2e1bdd115eddeeb7bdebf0fab29a3756fee4ceb
-rw-r--r-- | core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/DownloadManagerTestApp.java | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/DownloadManagerTestApp.java b/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/DownloadManagerTestApp.java index bcf2e45..db547e2 100644 --- a/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/DownloadManagerTestApp.java +++ b/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/DownloadManagerTestApp.java @@ -60,10 +60,10 @@ public class DownloadManagerTestApp extends DownloadManagerBaseTest { super.setUp(); DownloadManagerTestRunner mRunner = (DownloadManagerTestRunner)getInstrumentation(); externalDownloadUriValue = normalizeUri(mRunner.externalDownloadUriValue); - assertNotNull(externalDownloadUriValue); + assertNotNull("download url is null", externalDownloadUriValue); externalLargeDownloadUriValue = normalizeUri(mRunner.externalDownloadUriValue); - assertNotNull(externalLargeDownloadUriValue); + assertNotNull("large download url is null", externalLargeDownloadUriValue); } /** @@ -140,7 +140,7 @@ public class DownloadManagerTestApp extends DownloadManagerBaseTest { dlRequest = mDownloadManager.enqueue(request); waitForDownloadToStart(dlRequest); - assertTrue(dlRequest != -1); + assertTrue("request id is -1 from download manager", dlRequest != -1); // Store ID of download for later retrieval outputFile = new DataOutputStream(fileOutput); @@ -183,7 +183,7 @@ public class DownloadManagerTestApp extends DownloadManagerBaseTest { mContext.deleteFile(DOWNLOAD_STARTED_FLAG); } - assertTrue(dlRequest != -1); + assertTrue("request id is -1 from download manager", dlRequest != -1); Cursor cursor = getCursor(dlRequest); ParcelFileDescriptor pfd = null; try { @@ -193,7 +193,7 @@ public class DownloadManagerTestApp extends DownloadManagerBaseTest { int status = cursor.getInt(columnIndex); int currentWaitTime = 0; - assertTrue(waitForDownload(dlRequest, 15 * 60 * 1000)); + assertTrue("download not finished", waitForDownload(dlRequest, 15 * 60 * 1000)); Log.i(LOG_TAG, "Verifying download information..."); // Verify specific info about the file (size, name, etc)... @@ -233,7 +233,7 @@ public class DownloadManagerTestApp extends DownloadManagerBaseTest { dlRequest = mDownloadManager.enqueue(request); // Rather large file, so wait up to 15 mins... - assertTrue(waitForDownload(dlRequest, 15 * 60 * 1000)); + assertTrue("download not finished", waitForDownload(dlRequest, 15 * 60 * 1000)); Cursor cursor = getCursor(dlRequest); ParcelFileDescriptor pfd = null; @@ -317,7 +317,7 @@ public class DownloadManagerTestApp extends DownloadManagerBaseTest { Log.i(LOG_TAG, "Turning on WiFi..."); setWiFiStateOn(true); Log.i(LOG_TAG, "Waiting up to 10 minutes for download to complete..."); - assertTrue(waitForDownload(dlRequest, 10 * 60 * 1000)); + assertTrue("download not finished", waitForDownload(dlRequest, 10 * 60 * 1000)); ParcelFileDescriptor pfd = mDownloadManager.openDownloadedFile(dlRequest); verifyFileSize(pfd, filesize); } finally { @@ -385,7 +385,7 @@ public class DownloadManagerTestApp extends DownloadManagerBaseTest { setWiFiStateOn(true); Log.i(LOG_TAG, "Waiting up to 10 minutes for download to complete..."); - assertTrue(waitForDownload(dlRequest, 10 * 60 * 1000)); + assertTrue("download not finished", waitForDownload(dlRequest, 10 * 60 * 1000)); ParcelFileDescriptor pfd = mDownloadManager.openDownloadedFile(dlRequest); verifyFileSize(pfd, filesize); } finally { @@ -456,7 +456,7 @@ public class DownloadManagerTestApp extends DownloadManagerBaseTest { setAirplaneModeOn(false); Log.i(LOG_TAG, "Waiting up to 10 minutes for donwload to complete..."); - assertTrue(waitForDownload(dlRequest, 10 * 60 * 1000)); // wait up to 10 mins + assertTrue("download not finished", waitForDownload(dlRequest, 10 * 60 * 1000)); // wait up to 10 mins ParcelFileDescriptor pfd = mDownloadManager.openDownloadedFile(dlRequest); verifyFileSize(pfd, filesize); } finally { @@ -489,11 +489,11 @@ public class DownloadManagerTestApp extends DownloadManagerBaseTest { Request request = new Request(remoteUri); request.setTitle(filename); dlRequest = mDownloadManager.enqueue(request); - assertTrue(dlRequest != -1); + assertTrue("request id is -1 from download manager", dlRequest != -1); downloadIds.add(dlRequest); } - assertTrue(waitForMultipleDownloads(downloadIds, 15 * 60 * 2000)); // wait 15 mins max + assertTrue("download not finished", waitForMultipleDownloads(downloadIds, 15 * 60 * 2000)); // wait 15 mins max } finally { removeAllCurrentDownloads(); } |