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.
89 lines
2 KiB
JavaScript
89 lines
2 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';
|
|
|
|
// Refs: https://github.com/nodejs/node/issues/33940
|
|
|
|
const common = require('../common');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const fs = require('fs');
|
|
const assert = require('assert');
|
|
|
|
tmpdir.refresh();
|
|
|
|
const file = tmpdir.resolve('read_stream_pos_test.txt');
|
|
|
|
fs.writeFileSync(file, '');
|
|
|
|
let counter = 0;
|
|
|
|
const writeInterval = setInterval(() => {
|
|
counter = counter + 1;
|
|
const line = `hello at ${counter}\n`;
|
|
fs.writeFileSync(file, line, { flag: 'a' });
|
|
}, 1);
|
|
|
|
const hwm = 10;
|
|
let bufs = [];
|
|
let isLow = false;
|
|
let cur = 0;
|
|
let stream;
|
|
|
|
const readInterval = setInterval(() => {
|
|
if (stream) return;
|
|
|
|
stream = fs.createReadStream(file, {
|
|
highWaterMark: hwm,
|
|
start: cur
|
|
});
|
|
stream.on('data', common.mustCallAtLeast((chunk) => {
|
|
cur += chunk.length;
|
|
bufs.push(chunk);
|
|
if (isLow) {
|
|
const brokenLines = Buffer.concat(bufs).toString()
|
|
.split('\n')
|
|
.filter((line) => {
|
|
const s = 'hello at'.slice(0, line.length);
|
|
if (line && !line.startsWith(s)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
});
|
|
assert.strictEqual(brokenLines.length, 0);
|
|
exitTest();
|
|
return;
|
|
}
|
|
if (chunk.length !== hwm) {
|
|
isLow = true;
|
|
}
|
|
}));
|
|
stream.on('end', () => {
|
|
stream = null;
|
|
isLow = false;
|
|
bufs = [];
|
|
});
|
|
}, 10);
|
|
|
|
// Time longer than 90 seconds to exit safely
|
|
const endTimer = setTimeout(() => {
|
|
exitTest();
|
|
}, 90000);
|
|
|
|
const exitTest = () => {
|
|
clearInterval(readInterval);
|
|
clearInterval(writeInterval);
|
|
clearTimeout(endTimer);
|
|
if (stream && !stream.destroyed) {
|
|
stream.on('close', () => {
|
|
process.exit();
|
|
});
|
|
stream.destroy();
|
|
} else {
|
|
process.exit();
|
|
}
|
|
};
|