-
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.
test: test if {read,write}File honour file position
- Loading branch information
1 parent
acae706
commit adca945
Showing
4 changed files
with
178 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
'use strict'; | ||
|
||
/* | ||
* This test makes sure that `readFile()` always reads from the current | ||
* position of the file, instead of reading from the beginning of the file. | ||
*/ | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const path = require('path'); | ||
const { writeFileSync } = require('fs'); | ||
const { open } = require('fs').promises; | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
tmpdir.refresh(); | ||
|
||
const fn = path.join(tmpdir.path, 'test.txt'); | ||
writeFileSync(fn, 'Hello World'); | ||
|
||
async function readFileTest() { | ||
const handle = await open(fn, 'r'); | ||
|
||
/* Read only five bytes, so that the position moves to five. */ | ||
const buf = Buffer.alloc(5); | ||
const { bytesRead } = await handle.read(buf, 0, 5, null); | ||
assert.strictEqual(bytesRead, 5); | ||
assert.deepStrictEqual(buf.toString(), 'Hello'); | ||
|
||
/* readFile() should read from position five, instead of zero. */ | ||
assert.deepStrictEqual((await handle.readFile()).toString(), ' World'); | ||
} | ||
|
||
|
||
readFileTest() | ||
.then(common.mustCall()); |
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,36 @@ | ||
'use strict'; | ||
|
||
/* | ||
* This test makes sure that `writeFile()` always writes from the current | ||
* position of the file, instead of truncating the file. | ||
*/ | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const path = require('path'); | ||
const { readFileSync } = require('fs'); | ||
const { open } = require('fs').promises; | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
tmpdir.refresh(); | ||
|
||
const fn = path.join(tmpdir.path, 'test.txt'); | ||
|
||
async function writeFileTest() { | ||
const handle = await open(fn, 'w'); | ||
|
||
/* Write only five bytes, so that the position moves to five. */ | ||
const buf = Buffer.from('Hello'); | ||
const { bytesWritten } = await handle.write(buf, 0, 5, null); | ||
assert.strictEqual(bytesWritten, 5); | ||
|
||
/* Write some more with writeFile(). */ | ||
await handle.writeFile('World'); | ||
|
||
/* New content should be written at position five, instead of zero. */ | ||
assert.deepStrictEqual(readFileSync(fn).toString(), 'HelloWorld'); | ||
} | ||
|
||
|
||
writeFileTest() | ||
.then(common.mustCall()); |
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,58 @@ | ||
'use strict'; | ||
|
||
/* | ||
* This test makes sure that `writeFile()` always writes from the current | ||
* position of the file, instead of truncating the file, when used with file | ||
* descriptors. | ||
*/ | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const join = require('path').join; | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
tmpdir.refresh(); | ||
|
||
{ | ||
/* writeFileSync() test. */ | ||
const filename = join(tmpdir.path, 'test.txt'); | ||
|
||
/* Open the file descriptor. */ | ||
const fd = fs.openSync(filename, 'w'); | ||
|
||
/* Write only five characters, so that the position moves to five. */ | ||
assert.deepStrictEqual(fs.writeSync(fd, 'Hello'), 5); | ||
assert.deepStrictEqual(fs.readFileSync(filename).toString(), 'Hello'); | ||
|
||
/* Write some more with writeFileSync(). */ | ||
fs.writeFileSync(fd, 'World'); | ||
|
||
/* New content should be written at position five, instead of zero. */ | ||
assert.deepStrictEqual(fs.readFileSync(filename).toString(), 'HelloWorld'); | ||
} | ||
|
||
{ | ||
/* writeFile() test. */ | ||
const file = join(tmpdir.path, 'test1.txt'); | ||
|
||
/* Open the file descriptor. */ | ||
fs.open(file, 'w', common.mustCall((err, fd) => { | ||
assert.ifError(err); | ||
|
||
/* Write only five characters, so that the position moves to five. */ | ||
fs.write(fd, 'Hello', common.mustCall((err, bytes) => { | ||
assert.ifError(err); | ||
assert.strictEqual(bytes, 5); | ||
assert.deepStrictEqual(fs.readFileSync(file).toString(), 'Hello'); | ||
|
||
/* Write some more with writeFile(). */ | ||
fs.writeFile(fd, 'World', common.mustCall((err) => { | ||
assert.ifError(err); | ||
|
||
/* New content should be written at position five, instead of zero. */ | ||
assert.deepStrictEqual(fs.readFileSync(file).toString(), 'HelloWorld'); | ||
})); | ||
})); | ||
})); | ||
} |