Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/download/DownloadTest.java

Issue 2341643008: Defaulting all downloads to go through Chrome network stack (Closed)
Patch Set: rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/javatests/src/org/chromium/chrome/browser/download/DownloadTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/download/DownloadTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/download/DownloadTest.java
index 17258481ab42479afcf5af3671499aa57c2ef9fb..3137a8bd45bd5bb997b09ca8f838f19370fec7ad 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/download/DownloadTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/download/DownloadTest.java
@@ -45,11 +45,11 @@ public class DownloadTest extends DownloadTestBase {
private static final String FILENAME_TEXT = "superbo.txt";
private static final String FILENAME_TEXT_1 = "superbo (1).txt";
private static final String FILENAME_TEXT_2 = "superbo (2).txt";
- private static final String FILENAME_APK = "test.apk";
+ private static final String FILENAME_SWF = "test.swf";
private static final String FILENAME_GZIP = "test.gzip";
private static final String[] TEST_FILES = new String[] {
- FILENAME_WALLPAPER, FILENAME_TEXT, FILENAME_TEXT_1, FILENAME_TEXT_2, FILENAME_APK,
+ FILENAME_WALLPAPER, FILENAME_TEXT, FILENAME_TEXT_1, FILENAME_TEXT_2, FILENAME_SWF,
FILENAME_GZIP
};
@@ -81,13 +81,10 @@ public class DownloadTest extends DownloadTestBase {
waitForFocus();
View currentView = getActivity().getActivityTab().getView();
- EnqueueHttpGetDownloadCallbackHelper callbackHelper = getHttpGetDownloadCallbackHelper();
- int callCount = callbackHelper.getCallCount();
+ int callCount = getChromeDownloadCallCount();
singleClickView(currentView);
- callbackHelper.waitForCallback(callCount);
-
- assertEquals(mTestServer.getURL(TEST_DOWNLOAD_DIRECTORY + FILENAME_GZIP),
- callbackHelper.getDownloadInfo().getUrl());
+ assertTrue(waitForChromeDownloadToFinish(callCount));
+ assertTrue(hasDownload(FILENAME_GZIP, null));
}
@MediumTest
@@ -99,13 +96,10 @@ public class DownloadTest extends DownloadTestBase {
View currentView = getActivity().getActivityTab().getView();
singleClickView(currentView);
assertPollForInfoBarSize(1);
-
- EnqueueHttpGetDownloadCallbackHelper callbackHelper = getHttpGetDownloadCallbackHelper();
- int callCount = callbackHelper.getCallCount();
assertTrue("OK button wasn't found", InfoBarUtil.clickPrimaryButton(getInfoBars().get(0)));
- callbackHelper.waitForCallback(callCount);
- assertEquals(mTestServer.getURL(TEST_DOWNLOAD_DIRECTORY + FILENAME_APK),
- callbackHelper.getDownloadInfo().getUrl());
+ int callCount = getChromeDownloadCallCount();
+ assertTrue(waitForChromeDownloadToFinish(callCount));
+ assertTrue(hasDownload(FILENAME_SWF, null));
}
@MediumTest
@@ -162,13 +156,11 @@ public class DownloadTest extends DownloadTestBase {
View currentView = getActivity().getActivityTab().getView();
TouchCommon.longPressView(currentView);
- EnqueueHttpGetDownloadCallbackHelper callbackHelper = getHttpGetDownloadCallbackHelper();
- int callCount = callbackHelper.getCallCount();
+ int callCount = getChromeDownloadCallCount();
getInstrumentation().invokeContextMenuAction(getActivity(),
R.id.contextmenu_open_in_new_tab, 0);
- callbackHelper.waitForCallback(callCount);
- assertEquals(mTestServer.getURL(TEST_DOWNLOAD_DIRECTORY + FILENAME_GZIP),
- callbackHelper.getDownloadInfo().getUrl());
+ assertTrue(waitForChromeDownloadToFinish(callCount));
+ assertTrue(hasDownload(FILENAME_GZIP, null));
CriteriaHelper.pollUiThread(
Criteria.equals(initialTabCount, new Callable<Integer>() {
@@ -413,12 +405,10 @@ public class DownloadTest extends DownloadTestBase {
waitForFocus();
View currentView = getActivity().getActivityTab().getView();
- EnqueueHttpGetDownloadCallbackHelper callbackHelper = getHttpGetDownloadCallbackHelper();
- int callCount = callbackHelper.getCallCount();
+ int callCount = getChromeDownloadCallCount();
singleClickView(currentView);
- callbackHelper.waitForCallback(callCount);
- assertEquals(mTestServer.getURL(TEST_DOWNLOAD_DIRECTORY + FILENAME_WALLPAPER),
- callbackHelper.getDownloadInfo().getUrl());
+ assertTrue(waitForChromeDownloadToFinish(callCount));
+ assertTrue(hasDownload(FILENAME_WALLPAPER, null));
}
private void waitForFocus() {

Powered by Google App Engine
This is Rietveld 408576698