���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/home/real/node-v13.0.1/test/parallel/ |
'use strict'; const common = require('../common'); /* * These tests make sure that the `options` object passed to these functions are * never altered. * * Refer: https://github.com/nodejs/node/issues/7655 */ const assert = require('assert'); const fs = require('fs'); const path = require('path'); const errHandler = (e) => assert.ifError(e); const options = Object.freeze({}); const tmpdir = require('../common/tmpdir'); tmpdir.refresh(); fs.readFile(__filename, options, common.mustCall(errHandler)); fs.readFileSync(__filename, options); fs.readdir(__dirname, options, common.mustCall(errHandler)); fs.readdirSync(__dirname, options); if (common.canCreateSymLink()) { const sourceFile = path.resolve(tmpdir.path, 'test-readlink'); const linkFile = path.resolve(tmpdir.path, 'test-readlink-link'); fs.writeFileSync(sourceFile, ''); fs.symlinkSync(sourceFile, linkFile); fs.readlink(linkFile, options, common.mustCall(errHandler)); fs.readlinkSync(linkFile, options); } { const fileName = path.resolve(tmpdir.path, 'writeFile'); fs.writeFileSync(fileName, 'ABCD', options); fs.writeFile(fileName, 'ABCD', options, common.mustCall(errHandler)); } { const fileName = path.resolve(tmpdir.path, 'appendFile'); fs.appendFileSync(fileName, 'ABCD', options); fs.appendFile(fileName, 'ABCD', options, common.mustCall(errHandler)); } { const watch = fs.watch(__filename, options, common.mustNotCall()); watch.close(); } { fs.watchFile(__filename, options, common.mustNotCall()); fs.unwatchFile(__filename); } { fs.realpathSync(__filename, options); fs.realpath(__filename, options, common.mustCall(errHandler)); } { const tempFileName = path.resolve(tmpdir.path, 'mkdtemp-'); fs.mkdtempSync(tempFileName, options); fs.mkdtemp(tempFileName, options, common.mustCall(errHandler)); } { const fileName = path.resolve(tmpdir.path, 'streams'); fs.WriteStream(fileName, options).once('open', common.mustCall(() => { fs.ReadStream(fileName, options).destroy(); })).end(); }