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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/budget/get-cost-in-service-worker.html

Issue 2309863002: Plumb reserve method of the BudgetAPI (Closed)
Patch Set: Rename BudgetServiceErrorType::NO_ERROR to ::NONE to avoid Windows constant name clash. 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>getCost succeeds from a Service Worker</title> 4 <title>getCost succeeds from a Service Worker</title>
5 <script src="../resources/testharness.js"></script> 5 <script src="../resources/testharness.js"></script>
6 <script src="../resources/testharnessreport.js"></script> 6 <script src="../resources/testharnessreport.js"></script>
7 <script src="../serviceworker/resources/test-helpers.js"></script> 7 <script src="../serviceworker/resources/test-helpers.js"></script>
8 <script src="../notifications/resources/test-helpers.js"></script> 8 <script src="../notifications/resources/test-helpers.js"></script>
9 <script src="/js-test-resources/mojo-helpers.js"></script> 9 <script src="/js-test-resources/mojo-helpers.js"></script>
10 <script src="budget-service-mock.js"></script> 10 <script src="budget-service-mock.js"></script>
11 </head> 11 </head>
12 <body> 12 <body>
13 <script> 13 <script>
14 async_test(function(test) { 14 async_test(function(test) {
15 var script = 'resources/instrumentation-service-worker.js'; 15 var script = 'resources/instrumentation-service-worker.js';
16 var scope = 'resources/scope/' + location.pathname; 16 var scope = 'resources/scope/' + location.pathname;
17 var port; 17 var port;
18 18
19 budgetServiceMock.then(mock => { 19 budgetServiceMock.then(mock => {
20 mock.setCost("silent-push", TEST_BUDGET_COST);
20 getActiveServiceWorkerWithMessagePort(test, script, scope) 21 getActiveServiceWorkerWithMessagePort(test, script, scope)
21 .then(function(workerInfo) { 22 .then(function(workerInfo) {
22 port = workerInfo.port; 23 port = workerInfo.port;
23 port.postMessage({command: 'getCost'}); 24 port.postMessage({ command: 'getCost' });
24 25
25 port.addEventListener('message', function(event) { 26 port.addEventListener('message', function(event) {
26 if (typeof event.data != 'object' || !event.data.command) 27 if (typeof event.data != 'object' || !event.data.command)
27 assert_unreached('Invalid message from the service worker'); 28 assert_unreached('Invalid message from the service worker');
28 29
29 assert_equals(event.data.command, 'getCost'); 30 assert_equals(event.data.command, 'getCost');
30 assert_true(event.data.success, 31 assert_true(event.data.success,
31 'getCost should succeed. Error message: ' + event.data.error Message); 32 'getCost should succeed. Error message: ' + event.data.error Message);
32 assert_equals(event.data.cost, TEST_BUDGET_COST); 33 assert_equals(event.data.cost, TEST_BUDGET_COST);
33 test.done(); 34 test.done();
34 }); 35 });
35 }) 36 })
36 .catch(unreached_rejection(test)); 37 .catch(unreached_rejection(test));
37 }); 38 });
38 }, 'getCost should succeed from Service Worker'); 39 }, 'getCost should succeed from Service Worker');
39 </script> 40 </script>
40 </body> 41 </body>
41 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698