forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode-fs-null-bytes.ts
More file actions
65 lines (56 loc) · 2.72 KB
/
node-fs-null-bytes.ts
File metadata and controls
65 lines (56 loc) · 2.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import fs from '../../../../src/core/node_fs';
import assert from '../../../harness/wrapped-assert';
export default function() {
var rootFS = fs.getRootFS();
function check(async: Function, sync: Function, arg1?: any, arg2?: any, arg3?: any): void {
var expected = /Path must be a string without null bytes./;
var argsSync = Array.prototype.slice.call(arguments, 2);
var argsAsync = argsSync.concat(function(er: NodeJS.ErrnoException) {
assert(er && er.message.match(expected));
});
if (rootFS.supportsSynch() && sync)
assert.throws(function() {
sync.apply(null, argsSync);
}, expected);
if (async)
async.apply(null, argsAsync);
}
check(fs.appendFile, fs.appendFileSync, 'foo\u0000bar');
check(fs.lstat, fs.lstatSync, 'foo\u0000bar');
check(fs.mkdir, fs.mkdirSync, 'foo\u0000bar', '0755');
check(fs.open, fs.openSync, 'foo\u0000bar', 'r');
check(fs.readFile, fs.readFileSync, 'foo\u0000bar');
check(fs.readdir, fs.readdirSync, 'foo\u0000bar');
check(fs.realpath, fs.realpathSync, 'foo\u0000bar');
check(fs.rename, fs.renameSync, 'foo\u0000bar', 'foobar');
check(fs.rename, fs.renameSync, 'foobar', 'foo\u0000bar');
check(fs.rmdir, fs.rmdirSync, 'foo\u0000bar');
check(fs.stat, fs.statSync, 'foo\u0000bar');
check(fs.truncate, fs.truncateSync, 'foo\u0000bar');
check(fs.unlink, fs.unlinkSync, 'foo\u0000bar');
check(fs.writeFile, fs.writeFileSync, 'foo\u0000bar');
if (rootFS.supportsLinks()) {
check(fs.link, fs.linkSync, 'foo\u0000bar', 'foobar');
check(fs.link, fs.linkSync, 'foobar', 'foo\u0000bar');
check(fs.readlink, fs.readlinkSync, 'foo\u0000bar');
check(fs.symlink, fs.symlinkSync, 'foo\u0000bar', 'foobar');
check(fs.symlink, fs.symlinkSync, 'foobar', 'foo\u0000bar');
}
if (rootFS.supportsProps()) {
check(fs.chmod, fs.chmodSync, 'foo\u0000bar', '0644');
check(fs.chown, fs.chownSync, 'foo\u0000bar', 12, 34);
check(fs.utimes, fs.utimesSync, 'foo\u0000bar', 0, 0);
}
// BFS: We don't support watching files right now.
//check(null, fs.unwatchFile, 'foo\u0000bar', assert.fail);
//check(null, fs.watch, 'foo\u0000bar', assert.fail);
//check(null, fs.watchFile, 'foo\u0000bar', assert.fail);
// an 'error' for exists means that it doesn't exist.
// one of many reasons why this file is the absolute worst.
fs.exists('foo\u0000bar', function(exists) {
assert(!exists);
});
if (rootFS.supportsSynch()) {
assert(!fs.existsSync('foo\u0000bar'));
}
};