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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchManagerTest.java

Issue 2201853002: Blink handle selection handle visibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed contextual search test function Created 4 years, 2 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/contextualsearch/ContextualSearchManagerTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchManagerTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchManagerTest.java
index 24ed42e740e4677587b9bde4a8f56ba422471465..a3d3fd014dfd662c6572a1de4bea0221f5528eb3 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchManagerTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchManagerTest.java
@@ -710,27 +710,26 @@ public class ContextualSearchManagerTest extends ChromeActivityTestCaseBase<Chro
}
/**
- * Waits for the selection to be dissolved.
+ * Waits for the selection to be empty.
* Use this method any time a test repeatedly establishes and dissolves a selection to ensure
* that the selection has been completely dissolved before simulating the next selection event.
* This is needed because the renderer's notification of a selection going away is async,
* and a subsequent tap may think there's a current selection until it has been dissolved.
*/
- private void waitForSelectionDissolved() throws InterruptedException {
- CriteriaHelper.pollInstrumentationThread(new Criteria("Selection never dissolved.") {
+ private void waitForSelectionEmpty() throws InterruptedException {
+ CriteriaHelper.pollInstrumentationThread(new Criteria("Selection never empty.") {
@Override
public boolean isSatisfied() {
- return !mSelectionController.isSelectionEstablished();
+ return mSelectionController.isSelectionEmpty();
}
}, TEST_TIMEOUT, DEFAULT_POLLING_INTERVAL);
}
-
/**
* Waits for the panel to close and then waits for the selection to dissolve.
*/
- private void waitForPanelToCloseAndSelectionDissolved() throws InterruptedException {
+ private void waitForPanelToCloseAndSelectionEmpty() throws InterruptedException {
waitForPanelToClose();
- waitForSelectionDissolved();
+ waitForSelectionEmpty();
}
private void waitToPreventDoubleTapRecognition() throws InterruptedException {
@@ -843,7 +842,7 @@ public class ContextualSearchManagerTest extends ChromeActivityTestCaseBase<Chro
private void clickToExpandAndClosePanel() throws InterruptedException, TimeoutException {
clickWordNode("states");
tapBarToExpandAndClosePanel();
- waitForSelectionDissolved();
+ waitForSelectionEmpty();
}
/**
@@ -889,7 +888,7 @@ public class ContextualSearchManagerTest extends ChromeActivityTestCaseBase<Chro
simulateTapSearch("search");
waitForPanelToPeek();
closePanel();
- waitForPanelToCloseAndSelectionDissolved();
+ waitForPanelToCloseAndSelectionEmpty();
}
/**
@@ -904,7 +903,7 @@ public class ContextualSearchManagerTest extends ChromeActivityTestCaseBase<Chro
simulateLimitedTapSearch("search");
waitForPanelToPeek();
closePanel();
- waitForPanelToCloseAndSelectionDissolved();
+ waitForPanelToCloseAndSelectionEmpty();
}
/**
@@ -1214,7 +1213,7 @@ public class ContextualSearchManagerTest extends ChromeActivityTestCaseBase<Chro
assertLoadedNoUrl(); // No load after long-press until opening panel.
clickNode("question-mark");
waitForGestureProcessing();
- waitForPanelToCloseAndSelectionDissolved();
+ waitForPanelToCloseAndSelectionEmpty();
assertNull(getSelectedText());
assertLoadedNoUrl();
}
@@ -1302,7 +1301,7 @@ public class ContextualSearchManagerTest extends ChromeActivityTestCaseBase<Chro
clickWordNode("states-far");
waitForPanelToPeek();
clickNode("button");
- waitForPanelToCloseAndSelectionDissolved();
+ waitForPanelToCloseAndSelectionEmpty();
}
/**
@@ -1800,7 +1799,7 @@ public class ContextualSearchManagerTest extends ChromeActivityTestCaseBase<Chro
// Now we're at the limit, a tap should be ignored.
clickNode("states");
- waitForPanelToCloseAndSelectionDissolved();
+ waitForPanelToCloseAndSelectionEmpty();
assertTapPromoCounterEnabledAt(2);
// An open should disable the counter, but we need to use long-press (tap is now disabled).
@@ -2030,7 +2029,7 @@ public class ContextualSearchManagerTest extends ChromeActivityTestCaseBase<Chro
mPolicy.setTapLimitForUndecidedForTesting(PLENTY_OF_TAPS);
for (int i = 0; i < 50; i++) {
clickToTriggerPrefetch();
- waitForSelectionDissolved();
+ waitForSelectionEmpty();
assertSearchTermRequested();
}
}

Powered by Google App Engine
This is Rietveld 408576698