mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
594 B
21 lines
594 B
8 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
|
||
|
// This test ensures that writeSync does support inputs which
|
||
|
// are then correctly converted into string buffers.
|
||
|
|
||
|
const assert = require('assert');
|
||
|
const fs = require('fs');
|
||
|
const path = require('path');
|
||
|
|
||
|
const filePath = path.join(common.tmpDir, 'test_buffer_type');
|
||
|
const v = [true, false, 0, 1, Infinity, common.noop, {}, [], undefined, null];
|
||
|
|
||
|
common.refreshTmpDir();
|
||
|
|
||
|
v.forEach((value) => {
|
||
|
const fd = fs.openSync(filePath, 'w');
|
||
|
fs.writeSync(fd, value);
|
||
|
assert.strictEqual(fs.readFileSync(filePath).toString(), value + '');
|
||
|
});
|