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

Side by Side Diff: LayoutTests/http/tests/serviceworker/resources/response-content-worker.js

Issue 556563002: Adding ArrayBuffer support to ServiceWorker Response and tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Style fixes 2 Created 6 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
« no previous file with comments | « no previous file | LayoutTests/http/tests/serviceworker/response-content.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 importScripts('worker-test-harness.js');
2
3 promise_test(function() {
4 var response = new Response('test string');
5 assert_equals(
6 response.headers.get('Content-Type'),
7 'text/plain;charset=UTF-8',
8 'A Response constructed with a string should have a Content-Type.');
9 return response.body.asText()
10 .then(function(text) {
11 assert_equals(text, 'test string',
12 'Response body text should match the string on construction.');
13 });
14 }, 'Behavior of Response with string content.');
15
16 promise_test(function() {
17 var intView = new Int32Array([0, 1, 2, 3, 4, 55, 6, 7, 8, 9]);
18 var buffer = intView.buffer;
19
20 var response = new Response(buffer);
21 assert_false(response.headers.has('Content-Type'),
22 'A Response constructed with ArrayBuffer should not have a content type.') ;
23 return response.body.asArrayBuffer()
24 .then(function(buffer) {
25 var resultIntView = new Int32Array(buffer);
26 assert_array_equals(
27 resultIntView, [0, 1, 2, 3, 4, 55, 6, 7, 8, 9],
28 'Response body ArrayBuffer should match ArrayBuffer ' +
29 'it was constructed with.');
30 });
31 }, 'Behavior of Response with arraybuffer content.');
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/serviceworker/response-content.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698