-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test_runner: fix test deserialize edge cases
PR-URL: #48106 Fixes: #48103 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
- Loading branch information
1 parent
1d04b28
commit d18b61b
Showing
3 changed files
with
147 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
// Flags: --expose-internals --no-warnings | ||
|
||
import '../common/index.mjs'; | ||
import { describe, it, beforeEach } from 'node:test'; | ||
import assert from 'node:assert'; | ||
import { finished } from 'node:stream/promises'; | ||
import { DefaultSerializer } from 'node:v8'; | ||
import serializer from 'internal/test_runner/reporter/v8-serializer'; | ||
import runner from 'internal/test_runner/runner'; | ||
|
||
async function toArray(chunks) { | ||
const arr = []; | ||
for await (const i of chunks) arr.push(i); | ||
return arr; | ||
} | ||
|
||
const chunks = await toArray(serializer([ | ||
{ type: 'test:diagnostic', data: { nesting: 0, details: {}, message: 'diagnostic' } }, | ||
])); | ||
const defaultSerializer = new DefaultSerializer(); | ||
defaultSerializer.writeHeader(); | ||
const headerLength = defaultSerializer.releaseBuffer().length; | ||
|
||
describe('v8 deserializer', () => { | ||
let fileTest; | ||
let reported; | ||
beforeEach(() => { | ||
reported = []; | ||
fileTest = new runner.FileTest({ name: 'filetest' }); | ||
fileTest.reporter.on('data', (data) => reported.push(data)); | ||
assert(fileTest.isClearToSend()); | ||
}); | ||
|
||
async function collectReported(chunks) { | ||
chunks.forEach((chunk) => fileTest.parseMessage(chunk)); | ||
fileTest.drain(); | ||
fileTest.reporter.end(); | ||
await finished(fileTest.reporter); | ||
return reported; | ||
} | ||
|
||
it('should do nothing when no chunks', async () => { | ||
const reported = await collectReported([]); | ||
assert.deepStrictEqual(reported, []); | ||
}); | ||
|
||
it('should deserialize a chunk with no serialization', async () => { | ||
const reported = await collectReported([Buffer.from('unknown')]); | ||
assert.deepStrictEqual(reported, [ | ||
{ data: { __proto__: null, file: 'filetest', message: 'unknown' }, type: 'test:stdout' }, | ||
]); | ||
}); | ||
|
||
it('should deserialize a serialized chunk', async () => { | ||
const reported = await collectReported(chunks); | ||
assert.deepStrictEqual(reported, [ | ||
{ data: { nesting: 0, details: {}, message: 'diagnostic' }, type: 'test:diagnostic' }, | ||
]); | ||
}); | ||
|
||
it('should deserialize a serialized chunk after non-serialized chunk', async () => { | ||
const reported = await collectReported([Buffer.concat([Buffer.from('unknown'), ...chunks])]); | ||
assert.deepStrictEqual(reported, [ | ||
{ data: { __proto__: null, file: 'filetest', message: 'unknown' }, type: 'test:stdout' }, | ||
{ data: { nesting: 0, details: {}, message: 'diagnostic' }, type: 'test:diagnostic' }, | ||
]); | ||
}); | ||
|
||
it('should deserialize a serialized chunk before non-serialized output', async () => { | ||
const reported = await collectReported([Buffer.concat([ ...chunks, Buffer.from('unknown')])]); | ||
assert.deepStrictEqual(reported, [ | ||
{ data: { nesting: 0, details: {}, message: 'diagnostic' }, type: 'test:diagnostic' }, | ||
{ data: { __proto__: null, file: 'filetest', message: 'unknown' }, type: 'test:stdout' }, | ||
]); | ||
}); | ||
|
||
const headerPosition = headerLength * 2 + 4; | ||
for (let i = 0; i < headerPosition + 5; i++) { | ||
const message = `should deserialize a serialized message split into two chunks {...${i},${i + 1}...}`; | ||
it(message, async () => { | ||
const data = chunks[0]; | ||
const reported = await collectReported([data.subarray(0, i), data.subarray(i)]); | ||
assert.deepStrictEqual(reported, [ | ||
{ data: { nesting: 0, details: {}, message: 'diagnostic' }, type: 'test:diagnostic' }, | ||
]); | ||
}); | ||
|
||
it(`${message} wrapped by non-serialized data`, async () => { | ||
const data = chunks[0]; | ||
const reported = await collectReported([ | ||
Buffer.concat([Buffer.from('unknown'), data.subarray(0, i)]), | ||
Buffer.concat([data.subarray(i), Buffer.from('unknown')]), | ||
]); | ||
assert.deepStrictEqual(reported, [ | ||
{ data: { __proto__: null, file: 'filetest', message: 'unknown' }, type: 'test:stdout' }, | ||
{ data: { nesting: 0, details: {}, message: 'diagnostic' }, type: 'test:diagnostic' }, | ||
{ data: { __proto__: null, file: 'filetest', message: 'unknown' }, type: 'test:stdout' }, | ||
]); | ||
} | ||
); | ||
} | ||
|
||
}); |