summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-watch-encoding.js
blob: 449d0c8bf4050cbda4e830077fcf19e0d25582c2 (plain)
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
'use strict';

const common = require('../common');
const fs = require('fs');
const path = require('path');
const assert = require('assert');

if (common.isFreeBSD) {
  common.skip('Test currently not working on FreeBSD');
  return;
}

common.refreshTmpDir();

const fn = '新建文夹件.txt';
const a = path.join(common.tmpDir, fn);

const watcher1 = fs.watch(
  common.tmpDir,
  {encoding: 'hex'},
  (event, filename) => {
    if (filename)
      assert.equal(filename, 'e696b0e5bbbae69687e5a4b9e4bbb62e747874');
    watcher1.close();
  }
);

const watcher2 = fs.watch(
  common.tmpDir,
  (event, filename) => {
    if (filename)
      assert.equal(filename, fn);
    watcher2.close();
  }
);

const watcher3 = fs.watch(
  common.tmpDir,
  {encoding: 'buffer'},
  (event, filename) => {
    if (filename) {
      assert(filename instanceof Buffer);
      assert.equal(filename.toString('utf8'), fn);
    }
    watcher3.close();
  }
);

const fd = fs.openSync(a, 'w+');
fs.closeSync(fd);

process.on('exit', () => {
  fs.unlink(a);
});