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

Unified Diff: chrome/test/data/webui/md_history/history_list_test.js

Issue 2084843002: [MD History] Add history-list-container between app and history lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tim_toolbar
Patch Set: rebase Created 4 years, 5 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/test/data/webui/md_history/history_list_test.js
diff --git a/chrome/test/data/webui/md_history/history_list_test.js b/chrome/test/data/webui/md_history/history_list_test.js
index 82f96314086fff1c004933310474523d307e66ce..d43bde1fff544f859f653b7e66cdf9b3c0a48f5f 100644
--- a/chrome/test/data/webui/md_history/history_list_test.js
+++ b/chrome/test/data/webui/md_history/history_list_test.js
@@ -13,7 +13,7 @@ cr.define('md_history.history_list_test', function() {
suiteSetup(function() {
app = $('history-app');
- element = app.$['history-list'];
+ element = app.$['history'].$['infinite-list'];
toolbar = app.$['toolbar'];
TEST_HISTORY_RESULTS = [
@@ -34,8 +34,8 @@ cr.define('md_history.history_list_test', function() {
test('cancelling selection of multiple items', function() {
app.historyResult(createHistoryInfo(), TEST_HISTORY_RESULTS);
return flush().then(function() {
- var items = Polymer.dom(element.root)
- .querySelectorAll('history-item');
+ var items =
+ Polymer.dom(element.root).querySelectorAll('history-item');
MockInteractions.tap(items[2].$.checkbox);
MockInteractions.tap(items[3].$.checkbox);
@@ -99,7 +99,6 @@ cr.define('md_history.history_list_test', function() {
app.historyResult(createHistoryInfo(), TEST_HISTORY_RESULTS);
app.historyResult(createHistoryInfo(), ADDITIONAL_RESULTS);
return flush().then(function() {
- items = Polymer.dom(element.root).querySelectorAll('history-item');
element.removeDeletedHistory_([
element.historyData_[2], element.historyData_[5],
@@ -164,7 +163,7 @@ cr.define('md_history.history_list_test', function() {
});
test('more from this site sends and sets correct data', function(done) {
- app.queryingDisabled_ = false;
+ app.queryState_.queryingDisabled = false;
registerMessageCallback('queryHistory', this, function (info) {
assertEquals('example.com', info[0]);
flush().then(function() {
@@ -196,6 +195,35 @@ cr.define('md_history.history_list_test', function() {
});
});
+ test('delete items end to end', function(done) {
+ app.historyResult(createHistoryInfo(), TEST_HISTORY_RESULTS);
+ app.historyResult(createHistoryInfo(), ADDITIONAL_RESULTS);
+ flush().then(function() {
+ items = Polymer.dom(element.root).querySelectorAll('history-item');
+
+ MockInteractions.tap(items[2].$.checkbox);
+ MockInteractions.tap(items[5].$.checkbox);
+ MockInteractions.tap(items[7].$.checkbox);
+
+ registerMessageCallback('removeVisits', this, function() {
+ flush().then(function() {
+ deleteComplete();
+ }).then(function() {
+ assertEquals(element.historyData_.length, 5);
+ assertEquals(element.historyData_[0].dateRelativeDay,
+ '2016-03-15');
+ assertEquals(element.historyData_[2].dateRelativeDay,
+ '2016-03-13');
+ assertEquals(element.historyData_[4].dateRelativeDay,
+ '2016-03-11');
+ done();
+ });
+ });
+
+ MockInteractions.tap(app.$.toolbar.$$('#delete-button'));
+ });
+ });
+
teardown(function() {
element.historyData_ = [];
element.searchedTerm = '';

Powered by Google App Engine
This is Rietveld 408576698