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

Side by Side Diff: chrome/test/data/extensions/api_test/tabs/basics/muted.js

Issue 1233263002: Clean up error handling logic for extension tab muting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix issues from #4. Also use tab_constants for error strings." Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 var testTabId_; 5 var testTabId_;
6 6
7 chrome.test.runTests([ 7 chrome.test.runTests([
8 function setupWindow() { 8 function setupWindow() {
9 chrome.tabs.getCurrent(pass(function(tab) { 9 chrome.tabs.getCurrent(pass(function(tab) {
10 testTabId_ = tab.id; 10 testTabId_ = tab.id;
(...skipping 12 matching lines...) Expand all
23 })); 23 }));
24 })); 24 }));
25 }, 25 },
26 26
27 function makeMuted() { 27 function makeMuted() {
28 onUpdatedExpect("muted", true, {mutedCause: chrome.runtime.id}); 28 onUpdatedExpect("muted", true, {mutedCause: chrome.runtime.id});
29 chrome.tabs.update(testTabId_, {muted: true}, pass()); 29 chrome.tabs.update(testTabId_, {muted: true}, pass());
30 }, 30 },
31 31
32 function testStaysMutedAfterChangingWindow() { 32 function testStaysMutedAfterChangingWindow() {
33 chrome.windows.create({}, pass(function(window) 33 chrome.windows.create({}, pass(function(window) {
34 {
35 chrome.tabs.move(testTabId_, {windowId: window.id, index: -1}, 34 chrome.tabs.move(testTabId_, {windowId: window.id, index: -1},
36 pass(function(tab) { 35 pass(function(tab) {
37 assertEq(true, tab.muted); 36 assertEq(true, tab.muted);
38 })); 37 }));
39 })); 38 }));
40 }, 39 },
41 40
42 function makeNotMuted() { 41 function makeNotMuted() {
43 onUpdatedExpect("muted", false, {mutedCause: chrome.runtime.id}); 42 onUpdatedExpect("muted", false, {mutedCause: chrome.runtime.id});
44 chrome.tabs.update(testTabId_, {muted: false}, pass()); 43 chrome.tabs.update(testTabId_, {muted: false}, pass());
44 },
45
46 // Prior tests in this file have already toggled the muted state twice.
47 // We update a third (and final) time before rate limiting kicks in.
48 function frequentRequestsRateLimited() {
49 chrome.tabs.update(testTabId_, {muted: true}, pass());
50 chrome.tabs.update(testTabId_, {muted: false}, function(tab) {
51 var errMsg = "Rate limit exceeded when updating mute state for tab " +
52 testTabId_ + ".";
53 chrome.test.assertLastError(errMsg);
miu 2015/07/18 00:42:42 To answer your question: Yes, this is better than
Jared Sohn 2015/07/18 23:57:24 I have added a new test case to show that setting
54 });
45 } 55 }
46 ]); 56 ]);
OLDNEW
« chrome/browser/ui/tabs/tab_utils.cc ('K') | « chrome/common/extensions/api/tabs.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698