mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
7535a94c8a
Adds a new `../common/fixtures' module to begin normalizing `test/fixtures` use. Our test code is a bit inconsistent with regards to use of the fixtures directory. Some code uses `path.join()`, some code uses string concats, some other code uses template strings, etc. In mnay cases, significant duplication of code is seen when accessing fixture files, etc. This updates many (but by no means all) of the tests in the test suite to use the new consistent API. There are still many more to update, which would make an excelent Code-n-Learn exercise. PR-URL: https://github.com/nodejs/node/pull/14332 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
18 lines
514 B
JavaScript
18 lines
514 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const stream = require('stream');
|
|
const fixtures = require('../common/fixtures');
|
|
const encoding = 'base64';
|
|
|
|
const example = fixtures.path('x.txt');
|
|
const assertStream = new stream.Writable({
|
|
write: function(chunk, enc, next) {
|
|
const expected = Buffer.from('xyz');
|
|
assert(chunk.equals(expected));
|
|
}
|
|
});
|
|
assertStream.setDefaultEncoding(encoding);
|
|
fs.createReadStream(example, encoding).pipe(assertStream);
|