-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fs: add flush option to appendFile() functions
This commit adds documentation and tests for the 'flush' option of the fs.appendFile family of functions. Technically, support was indirectly added in #50009, but this makes it more official. Refs: #49886 Refs: #50009 PR-URL: #50095 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
- Loading branch information
Showing
2 changed files
with
135 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const tmpdir = require('../common/tmpdir'); | ||
const assert = require('node:assert'); | ||
const fs = require('node:fs'); | ||
const fsp = require('node:fs/promises'); | ||
const test = require('node:test'); | ||
const data = 'foo'; | ||
let cnt = 0; | ||
|
||
function nextFile() { | ||
return tmpdir.resolve(`${cnt++}.out`); | ||
} | ||
|
||
tmpdir.refresh(); | ||
|
||
test('synchronous version', async (t) => { | ||
await t.test('validation', (t) => { | ||
for (const v of ['true', '', 0, 1, [], {}, Symbol()]) { | ||
assert.throws(() => { | ||
fs.appendFileSync(nextFile(), data, { flush: v }); | ||
}, { code: 'ERR_INVALID_ARG_TYPE' }); | ||
} | ||
}); | ||
|
||
await t.test('performs flush', (t) => { | ||
const spy = t.mock.method(fs, 'fsyncSync'); | ||
const file = nextFile(); | ||
fs.appendFileSync(file, data, { flush: true }); | ||
const calls = spy.mock.calls; | ||
assert.strictEqual(calls.length, 1); | ||
assert.strictEqual(calls[0].result, undefined); | ||
assert.strictEqual(calls[0].error, undefined); | ||
assert.strictEqual(calls[0].arguments.length, 1); | ||
assert.strictEqual(typeof calls[0].arguments[0], 'number'); | ||
assert.strictEqual(fs.readFileSync(file, 'utf8'), data); | ||
}); | ||
|
||
await t.test('does not perform flush', (t) => { | ||
const spy = t.mock.method(fs, 'fsyncSync'); | ||
|
||
for (const v of [undefined, null, false]) { | ||
const file = nextFile(); | ||
fs.appendFileSync(file, data, { flush: v }); | ||
assert.strictEqual(fs.readFileSync(file, 'utf8'), data); | ||
} | ||
|
||
assert.strictEqual(spy.mock.calls.length, 0); | ||
}); | ||
}); | ||
|
||
test('callback version', async (t) => { | ||
await t.test('validation', (t) => { | ||
for (const v of ['true', '', 0, 1, [], {}, Symbol()]) { | ||
assert.throws(() => { | ||
fs.appendFileSync(nextFile(), data, { flush: v }); | ||
}, { code: 'ERR_INVALID_ARG_TYPE' }); | ||
} | ||
}); | ||
|
||
await t.test('performs flush', (t, done) => { | ||
const spy = t.mock.method(fs, 'fsync'); | ||
const file = nextFile(); | ||
fs.appendFile(file, data, { flush: true }, common.mustSucceed(() => { | ||
const calls = spy.mock.calls; | ||
assert.strictEqual(calls.length, 1); | ||
assert.strictEqual(calls[0].result, undefined); | ||
assert.strictEqual(calls[0].error, undefined); | ||
assert.strictEqual(calls[0].arguments.length, 2); | ||
assert.strictEqual(typeof calls[0].arguments[0], 'number'); | ||
assert.strictEqual(typeof calls[0].arguments[1], 'function'); | ||
assert.strictEqual(fs.readFileSync(file, 'utf8'), data); | ||
done(); | ||
})); | ||
}); | ||
|
||
await t.test('does not perform flush', (t, done) => { | ||
const values = [undefined, null, false]; | ||
const spy = t.mock.method(fs, 'fsync'); | ||
let cnt = 0; | ||
|
||
for (const v of values) { | ||
const file = nextFile(); | ||
|
||
fs.appendFile(file, data, { flush: v }, common.mustSucceed(() => { | ||
assert.strictEqual(fs.readFileSync(file, 'utf8'), data); | ||
cnt++; | ||
|
||
if (cnt === values.length) { | ||
assert.strictEqual(spy.mock.calls.length, 0); | ||
done(); | ||
} | ||
})); | ||
} | ||
}); | ||
}); | ||
|
||
test('promise based version', async (t) => { | ||
await t.test('validation', async (t) => { | ||
for (const v of ['true', '', 0, 1, [], {}, Symbol()]) { | ||
await assert.rejects(() => { | ||
return fsp.appendFile(nextFile(), data, { flush: v }); | ||
}, { code: 'ERR_INVALID_ARG_TYPE' }); | ||
} | ||
}); | ||
|
||
await t.test('success path', async (t) => { | ||
for (const v of [undefined, null, false, true]) { | ||
const file = nextFile(); | ||
await fsp.appendFile(file, data, { flush: v }); | ||
assert.strictEqual(await fsp.readFile(file, 'utf8'), data); | ||
} | ||
}); | ||
}); |