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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.html

Issue 2513423003: DevTools: Convert inspector-unit tests to use reusable test harness (Closed)
Patch Set: Moved type definition out of externs Created 4 years 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: third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.html b/third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.html
deleted file mode 100644
index 8c79670a083877f5ae2770aa9e2f9235eeb77c81..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.html
+++ /dev/null
@@ -1,109 +0,0 @@
-<html>
-<head>
-<base href="/inspector-debug/"></base>
-<script src="/inspector-debug/Runtime.js"></script>
-<script src="/inspector-unit/inspector-unit-test.js"></script>
-<script>
-UnitTest.addDependency("ui_lazy");
-function test()
-{
- var overridenInput = [];
- var overrideShowMatchingItems = true;
- var history = [];
-
- var StubDelegate = class extends UI.FilteredListWidget.Delegate {
- constructor()
- {
- super(history);
- }
-
- itemKeyAt(itemIndex) { return overridenInput[itemIndex]; }
- itemScoreAt(itemIndex) { return 0; }
- itemCount() { return overridenInput.length; }
- selectItem(itemIndex, promptValue)
- {
- UnitTest.addResult("Selected item index: " + itemIndex);
- }
- shouldShowMatchingItems () { return overrideShowMatchingItems; }
- };
-
- var delegate = new StubDelegate();
-
- function checkQuery(query, input, hideMatchingItems)
- {
- overridenInput = input;
- overrideShowMatchingItems = !hideMatchingItems;
-
- UnitTest.addResult("Input:" + JSON.stringify(input));
-
- var filteredSelectionDialog = new UI.FilteredListWidget(delegate);
- filteredSelectionDialog.showAsDialog();
- var promise = UnitTest.addSniffer(filteredSelectionDialog, "_itemsFilteredForTest").then(accept);
- filteredSelectionDialog.setQuery(query);
- filteredSelectionDialog._updateAfterItemsLoaded();
- return promise;
-
- function dump()
- {
- UnitTest.addResult("Query:" + JSON.stringify(filteredSelectionDialog._value()));
- var items = filteredSelectionDialog._filteredItems;
- var output = [];
- for (var i = 0; i < items.length; ++i)
- output.push(delegate.itemKeyAt(items[i]));
- UnitTest.addResult("Output:" + JSON.stringify(output));
- }
-
- function accept()
- {
- dump();
- filteredSelectionDialog._onEnter(UnitTest.createKeyEvent("Enter"));
- UnitTest.addResult("History:" + JSON.stringify(history));
- }
- }
-
- UnitTest.runTests([
- function emptyQueryMatchesEverything()
- {
- return checkQuery("", ["a", "bc"]);
- },
-
- function caseSensitiveMatching()
- {
- return checkQuery("aB", ["abc", "acB"]);
- },
-
- function caseInsensitiveMatching()
- {
- return checkQuery("ab", ["abc", "bac", "a_B"]);
- },
-
- function dumplicateSymbolsInQuery(next)
- {
- return checkQuery("aab", ["abab", "abaa", "caab", "baac", "fooaab"]);
- },
-
- function dangerousInputEscaping(next)
- {
- return checkQuery("^[]{}()\\.$*+?|", ["^[]{}()\\.$*+?|", "0123456789abcdef"]);
- },
-
- function itemIndexIsNotReportedInGoToLine(next)
- {
- return checkQuery(":1", [":1:2:3.js"], true, next);
- },
-
- function autoCompleteIsLast(next)
- {
- return checkQuery("", ["abc", "abcd"]);
- }
- ]);
-}
-
-</script>
-</head>
-
-<body>
-<p>Check to see that FilteredItemSelectionDialog uses proper regex to filter results.</p>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698