mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 22:56:06 +00:00

Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
'use strict';
|
|
var common = 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();
|
|
}());
|