0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-stream-writable-change-default-encoding.js
Gibson Fahnestock 3d2aef3979 test: s/assert.equal/assert.strictEqual/
Use assert.strictEqual instead of assert.equal in tests, manually
convert types where necessary.

PR-URL: https://github.com/nodejs/node/pull/10698
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
2017-01-11 14:19:26 +00:00

53 lines
1.3 KiB
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const stream = require('stream');
const util = require('util');
function MyWritable(fn, options) {
stream.Writable.call(this, options);
this.fn = fn;
}
util.inherits(MyWritable, stream.Writable);
MyWritable.prototype._write = function(chunk, encoding, callback) {
this.fn(Buffer.isBuffer(chunk), typeof chunk, encoding);
callback();
};
(function defaultCondingIsUtf8() {
const m = new MyWritable(function(isBuffer, type, enc) {
assert.strictEqual(enc, 'utf8');
}, { decodeStrings: false });
m.write('foo');
m.end();
}());
(function changeDefaultEncodingToAscii() {
const m = new MyWritable(function(isBuffer, type, enc) {
assert.strictEqual(enc, 'ascii');
}, { decodeStrings: false });
m.setDefaultEncoding('ascii');
m.write('bar');
m.end();
}());
assert.throws(function changeDefaultEncodingToInvalidValue() {
const m = new MyWritable(function(isBuffer, type, enc) {
}, { decodeStrings: false });
m.setDefaultEncoding({});
m.write('bar');
m.end();
}, TypeError);
(function checkVairableCaseEncoding() {
const m = new MyWritable(function(isBuffer, type, enc) {
assert.strictEqual(enc, 'ascii');
}, { decodeStrings: false });
m.setDefaultEncoding('AsCii');
m.write('bar');
m.end();
}());