blob: 71de5da525498456a2f2e23877f503e9db8ca367 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>getBudget succeeds from a Service Worker</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="../serviceworker/resources/test-helpers.js"></script>
<script src="../notifications/resources/test-helpers.js"></script>
<script src="/js-test-resources/mojo-helpers.js"></script>
<script src="budget-service-mock.js"></script>
</head>
<body>
<script>
promise_test(function(test) {
const script = 'resources/instrumentation-service-worker.js';
const scope = 'resources/scope/' + location.pathname;
let port;
return budgetServiceMock.then(mock => {
mock.addBudget(TEST_BUDGET_TIME, TEST_BUDGET_AT);
return getActiveServiceWorkerWithMessagePort(test, script, scope);
}).then(function(workerInfo) {
port = workerInfo.port;
port.addEventListener('message', function(event) {
if (typeof event.data != 'object' || !event.data.command)
assert_unreached('Invalid message from the service worker');
assert_equals(event.data.command, 'getBudget');
assert_true(event.data.success,
'getBudget should succeed. Error message: ' + event.data.errorMessage);
assert_equals(event.data.budgetAt, TEST_BUDGET_AT);
assert_equals(event.data.time, TEST_BUDGET_TIME);
});
return sendCommand(port, { command: 'getBudget' });
});
}, 'getBudget should succeed from Service Worker');
</script>
</body>
</html>