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.
32 lines
887 B
32 lines
887 B
8 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const fs = require('fs');
|
||
|
const path = require('path');
|
||
|
const { promisify } = require('util');
|
||
|
|
||
|
common.crashOnUnhandledRejection();
|
||
|
|
||
|
const read = promisify(fs.read);
|
||
|
const write = promisify(fs.write);
|
||
|
|
||
|
{
|
||
|
const fd = fs.openSync(__filename, 'r');
|
||
|
read(fd, Buffer.alloc(1024), 0, 1024, null).then(common.mustCall((obj) => {
|
||
|
assert.strictEqual(typeof obj.bytesRead, 'number');
|
||
|
assert(obj.buffer instanceof Buffer);
|
||
|
fs.closeSync(fd);
|
||
|
}));
|
||
|
}
|
||
|
|
||
|
common.refreshTmpDir();
|
||
|
{
|
||
|
const filename = path.join(common.tmpDir, 'write-promise.txt');
|
||
|
const fd = fs.openSync(filename, 'w');
|
||
|
write(fd, Buffer.from('foobar')).then(common.mustCall((obj) => {
|
||
|
assert.strictEqual(typeof obj.bytesWritten, 'number');
|
||
|
assert.strictEqual(obj.buffer.toString(), 'foobar');
|
||
|
fs.closeSync(fd);
|
||
|
}));
|
||
|
}
|