diff --git a/src/tests/file/blob.html b/src/tests/file/blob.html index 754861a3..343fd32b 100644 --- a/src/tests/file/blob.html +++ b/src/tests/file/blob.html @@ -86,4 +86,40 @@ testing.expectEqual(expected, result); }); } + + // Test for SIMD. + { + const parts = [ + "\rThe opened package\r\nof potato\nchi\rps", + "held the\r\nanswer to the\r mystery. Both det\rectives looke\r\rd\r", + "\rat it but failed to realize\nit was\r\nthe\rkey\r\n", + "\r\nto solve the \rcrime.\r" + ]; + + const blob = new Blob(parts, { type: "text/html", endings: "native" }); + testing.expectEqual(161, blob.size); + testing.expectEqual("text/html", blob.type); + testing.async(blob.bytes(), result => { + const expected = new Uint8Array([10, 84, 104, 101, 32, 111, 112, 101, 110, + 101, 100, 32, 112, 97, 99, 107, 97, 103, + 101, 10, 111, 102, 32, 112, 111, 116, 97, + 116, 111, 10, 99, 104, 105, 10, 112, 115, + 104, 101, 108, 100, 32, 116, 104, 101, 10, + 97, 110, 115, 119, 101, 114, 32, 116, 111, + 32, 116, 104, 101, 10, 32, 109, 121, 115, + 116, 101, 114, 121, 46, 32, 66, 111, 116, + 104, 32, 100, 101, 116, 10, 101, 99, 116, + 105, 118, 101, 115, 32, 108, 111, 111, 107, + 101, 10, 10, 100, 10, 10, 97, 116, 32, 105, + 116, 32, 98, 117, 116, 32, 102, 97, 105, 108, + 101, 100, 32, 116, 111, 32, 114, 101, 97, + 108, 105, 122, 101, 10, 105, 116, 32, 119, 97, + 115, 10, 116, 104, 101, 10, 107, 101, 121, + 10, 10, 116, 111, 32, 115, 111, 108, 118, 101, + 32, 116, 104, 101, 32, 10, 99, 114, 105, 109, + 101, 46, 10]); + testing.expectEqual(true, result instanceof Uint8Array); + testing.expectEqual(expected, result); + }); + }