mirror of
https://github.com/denoland/deno.git
synced 2024-12-19 05:45:09 -05:00
fb24fd37c9
This PR enables node compat test cases found passing by using the tool added in #27122 The percentage of passing test case increases from 16.16% to 30.43% by this change.
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
// deno-fmt-ignore-file
|
|
// deno-lint-ignore-file
|
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
|
// Taken from Node 20.11.1
|
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
function test(arrayBuffer, offset, length) {
|
|
const uint8Array = new Uint8Array(arrayBuffer, offset, length);
|
|
for (let i = 0; i < length; i += 1) {
|
|
uint8Array[i] = 1;
|
|
}
|
|
|
|
const buffer = Buffer.from(arrayBuffer, offset, length);
|
|
for (let i = 0; i < length; i += 1) {
|
|
assert.strictEqual(buffer[i], 1);
|
|
}
|
|
}
|
|
|
|
const acceptableOOMErrors = [
|
|
'Array buffer allocation failed',
|
|
'Invalid array buffer length',
|
|
];
|
|
|
|
const length = 1000;
|
|
const offset = 4294967296; /* 1 << 32 */
|
|
const size = offset + length;
|
|
let arrayBuffer;
|
|
|
|
try {
|
|
arrayBuffer = new ArrayBuffer(size);
|
|
} catch (e) {
|
|
if (e instanceof RangeError && acceptableOOMErrors.includes(e.message))
|
|
common.skip(`Unable to allocate ${size} bytes for ArrayBuffer`);
|
|
throw e;
|
|
}
|
|
|
|
test(arrayBuffer, offset, length);
|