mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 11:04:30 +00:00

PR-URL: https://github.com/nodejs/node/pull/2205 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
|
|
var stream = require('stream');
|
|
var 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() {
|
|
var m = new MyWritable(function(isBuffer, type, enc) {
|
|
assert.equal(enc, 'utf8');
|
|
}, { decodeStrings: false });
|
|
m.write('foo');
|
|
m.end();
|
|
}());
|
|
|
|
(function changeDefaultEncodingToAscii() {
|
|
var m = new MyWritable(function(isBuffer, type, enc) {
|
|
assert.equal(enc, 'ascii');
|
|
}, { decodeStrings: false });
|
|
m.setDefaultEncoding('ascii');
|
|
m.write('bar');
|
|
m.end();
|
|
}());
|
|
|
|
assert.throws(function changeDefaultEncodingToInvalidValue() {
|
|
var m = new MyWritable(function(isBuffer, type, enc) {
|
|
}, { decodeStrings: false });
|
|
m.setDefaultEncoding({});
|
|
m.write('bar');
|
|
m.end();
|
|
}, TypeError);
|
|
|
|
(function checkVairableCaseEncoding() {
|
|
var m = new MyWritable(function(isBuffer, type, enc) {
|
|
assert.equal(enc, 'ascii');
|
|
}, { decodeStrings: false });
|
|
m.setDefaultEncoding('AsCii');
|
|
m.write('bar');
|
|
m.end();
|
|
}());
|