Branch data Line data Source code
1 [ + ]: 2 : import assert from 'node:assert/strict'; 2 : 2 : import { XMLHttpRequest } from '../../../lib/whatwg-xhr.js'; 3 : 2 : 4 [ + ]: 2 : export default (activeURL) => { 5 : 1 : 6 : 1 : const xhr = new XMLHttpRequest(); 7 : 1 : 8 : 1 : const content = 'Hello'; 9 : 1 : let blob; 10 : 1 : 11 [ + ]: 1 : xhr.onreadystatechange = () => { 12 : 4 : 13 [ + ]: 4 : if(xhr.readyState === 4){ 14 : 1 : 15 : 1 : blob = xhr.response; 16 : 1 : 17 : 1 : assert.strictEqual(xhr.response, xhr.response, 'Response should be cached'); 18 : 1 : assert(blob instanceof Blob, 'blob is a Blob'); 19 : 1 : 20 : 1 : blob.text() 21 [ + ]: 1 : .then(text => { 22 : 1 : assert.strictEqual(text, content); 23 : 1 : }); 24 : 1 : 25 : 1 : xhr.onreadystatechange = null; 26 : 1 : } 27 : 1 : }; 28 : 1 : 29 : 1 : xhr.open('GET', `${activeURL}/content.py?content=${content}`); 30 : 1 : xhr.responseType = 'blob'; 31 : 1 : xhr.send(); 32 : 1 : } 33 : 2 : 34 : 2 : /* 35 : 2 : * response-data-blob.htm 36 : 2 : * 37 : 2 : 38 : 2 : <!DOCTYPE html> 39 : 2 : <html> 40 : 2 : <head> 41 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" /> 42 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-responsetype-attribute" data-tested-assertations="following::ol[1]/li[4]"/> 43 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-response-attribute" data-tested-assertations="following::a[contains(@href,'#blob-response-entity-body')]/.." /> 44 : 2 : <script src="/resources/testharness.js"></script> 45 : 2 : <script src="/resources/testharnessreport.js"></script> 46 : 2 : <title>XMLHttpRequest: The response attribute: Blob data</title> 47 : 2 : </head> 48 : 2 : 49 : 2 : <body> 50 : 2 : <div id="log"></div> 51 : 2 : 52 : 2 : <script type="text/javascript"> 53 : 2 : var test = async_test(); 54 : 2 : 55 : 2 : test.step(function() 56 : 2 : { 57 : 2 : var xhr = new XMLHttpRequest(); 58 : 2 : var content = "Hello"; 59 : 2 : var blob; 60 : 2 : 61 : 2 : xhr.onreadystatechange = function() 62 : 2 : { 63 : 2 : if (xhr.readyState == 4) 64 : 2 : { 65 : 2 : test.step(function() 66 : 2 : { 67 : 2 : blob = xhr.response; 68 : 2 : assert_equals(xhr.response, xhr.response, 69 : 2 : "Response should be cached"); 70 : 2 : assert_true(blob instanceof Blob, 'blob is a Blob'); 71 : 2 : 72 : 2 : var reader = new FileReader(); 73 : 2 : reader.onload = function() 74 : 2 : { 75 : 2 : test.step(function() 76 : 2 : { 77 : 2 : assert_equals(reader.result, content); 78 : 2 : test.done(); 79 : 2 : }); 80 : 2 : }; 81 : 2 : reader.readAsText(blob); 82 : 2 : }); 83 : 2 : } 84 : 2 : } 85 : 2 : 86 : 2 : xhr.open("GET", "./resources/content.py?content=" + content, true); 87 : 2 : xhr.responseType = "blob"; 88 : 2 : xhr.send(); 89 : 2 : }); 90 : 2 : </script> 91 : 2 : </body> 92 : 2 : </html> 93 : 2 : 94 : 2 : * 95 : 2 : * response-data-blob.htm 96 : 2 : */