blob: 4ee618a1292184420615c2f46b0860c1cc1a316f [file] [log] [blame]
// META: script=/service-workers/service-worker/resources/test-helpers.sub.js
// META: script=resources/utils.js
'use strict';
// Covers basic functionality provided by BackgroundFetchManager.fetch().
// Specifically, when `fetch` contains request uploads.
// https://wicg.github.io/background-fetch/#background-fetch-manager-fetch
backgroundFetchTest(async (test, backgroundFetch) => {
const uploadData = 'Background Fetch!';
const request =
new Request('resources/upload.py', {method: 'POST', body: uploadData});
const registration = await backgroundFetch.fetch(uniqueId(), request);
assert_equals(registration.uploadTotal, uploadData.length);
const {type, eventRegistration, results} = await getMessageFromServiceWorker();
assert_equals(type, 'backgroundfetchsuccess');
assert_equals(results.length, 1);
assert_equals(eventRegistration.result, 'success');
assert_equals(eventRegistration.failureReason, '');
assert_equals(eventRegistration.uploaded, uploadData.length);
assert_equals(results[0].text, uploadData);
}, 'Fetch with an upload should work');
backgroundFetchTest(async (test, backgroundFetch) => {
const uploadData = 'Background Fetch!';
const uploadRequest =
new Request('resources/upload.py', {method: 'POST', body: uploadData});
const registration = await backgroundFetch.fetch(
uniqueId(),
[uploadRequest, '/common/slow.py']);
const uploaded = await new Promise(resolve => {
registration.onprogress = event => {
if (event.target.downloaded === 0)
return;
// If a progress event with downloaded bytes was received, then
// everything was uploaded.
resolve(event.target.uploaded);
};
});
assert_equals(uploaded, uploadData.length);
}, 'Progress event includes uploaded bytes');