deno.land / std@0.166.0 / node / _tools / test / parallel / test-fs-write-file-invalid-path.js

test-fs-write-file-invalid-path.js
نووسراو ببینە
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
// deno-fmt-ignore-file// deno-lint-ignore-file
// Copyright Joyent and Node contributors. All rights reserved. MIT license.// Taken from Node 18.12.0// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
'use strict';
const common = require('../common');const assert = require('assert');const fs = require('fs');const path = require('path');
if (!common.isWindows) common.skip('This test is for Windows only.');
const tmpdir = require('../common/tmpdir');tmpdir.refresh();
const DATA_VALUE = 'hello';
// Refs: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx// Ignore '/', '\\' and ':'const RESERVED_CHARACTERS = '<>"|?*';
[...RESERVED_CHARACTERS].forEach((ch) => { const pathname = path.join(tmpdir.path, `somefile_${ch}`); assert.throws( () => { fs.writeFileSync(pathname, DATA_VALUE); }, /^Error: ENOENT: no such file or directory, open '.*'$/, `failed with '${ch}'`);});
// Test for ':' (NTFS data streams).// Refs: https://msdn.microsoft.com/en-us/library/windows/desktop/bb540537.aspxconst pathname = path.join(tmpdir.path, 'foo:bar');fs.writeFileSync(pathname, DATA_VALUE);
let content = '';const fileDataStream = fs.createReadStream(pathname, { encoding: 'utf8'});
fileDataStream.on('data', (data) => { content += data;});
fileDataStream.on('end', common.mustCall(() => { assert.strictEqual(content, DATA_VALUE);}));
std

Version Info

Tagged at
a year ago