Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@nodelib /
fs.stat /
src /
providers /
[ HOME SHELL ]
Name
Size
Permission
Action
async.spec.ts
3.19
KB
-rw-r--r--
async.ts
1.23
KB
-rw-r--r--
sync.spec.ts
2.61
KB
-rw-r--r--
sync.ts
518
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : async.spec.ts
import * as assert from 'assert'; import * as fs from 'fs'; import * as sinon from 'sinon'; import { Stats } from '../../../fs.macchiato'; import Settings from '../settings'; import * as provider from './async'; describe('Providers → Async', () => { describe('.read', () => { it('should return lstat for non-symlink entry', (done) => { const lstat = sinon.stub().yields(null, new Stats()) as unknown as typeof fs.lstat; const settings = new Settings({ fs: { lstat } }); provider.read('filepath', settings, (error, stats) => { assert.strictEqual(error, null); assert.strictEqual(stats.ino, 0); done(); }); }); it('should return lstat for symlink entry when the "followSymbolicLink" option is disabled', (done) => { const lstat = sinon.stub().yields(null, new Stats({ isSymbolicLink: true })) as unknown as typeof fs.lstat; const settings = new Settings({ followSymbolicLink: false, fs: { lstat } }); provider.read('filepath', settings, (error, stats) => { assert.strictEqual(error, null); assert.strictEqual(stats.ino, 0); done(); }); }); it('should return stat for symlink entry', (done) => { const lstat = sinon.stub().yields(null, new Stats({ isSymbolicLink: true })) as unknown as typeof fs.lstat; const stat = sinon.stub().yields(null, new Stats({ ino: 1 })) as unknown as typeof fs.stat; const settings = new Settings({ fs: { lstat, stat } }); provider.read('filepath', settings, (error, stats) => { assert.strictEqual(error, null); assert.strictEqual(stats.ino, 1); done(); }); }); it('should return marked stat for symlink entry when the "markSymbolicLink" option is enabled', (done) => { const lstat = sinon.stub().yields(null, new Stats({ isSymbolicLink: true })) as unknown as typeof fs.lstat; const stat = sinon.stub().yields(null, new Stats({ ino: 1 })) as unknown as typeof fs.stat; const settings = new Settings({ fs: { lstat, stat }, markSymbolicLink: true }); provider.read('filepath', settings, (error, stats) => { assert.strictEqual(error, null); assert.strictEqual(stats.isSymbolicLink(), true); done(); }); }); it('should return lstat for broken symlink entry when the "throwErrorOnBrokenSymbolicLink" option is disabled', (done) => { const lstat = sinon.stub().yields(null, new Stats({ isSymbolicLink: true })) as unknown as typeof fs.lstat; const stat = sinon.stub().yields(new Error()) as unknown as typeof fs.stat; const settings = new Settings({ fs: { lstat, stat }, throwErrorOnBrokenSymbolicLink: false }); provider.read('filepath', settings, (error, stats) => { assert.strictEqual(error, null); assert.strictEqual(stats.ino, 0); done(); }); }); it('should throw an error when symlink entry is broken', (done) => { const lstat = sinon.stub().yields(null, new Stats({ isSymbolicLink: true })) as unknown as typeof fs.lstat; const stat = sinon.stub().yields(new Error('broken')) as unknown as typeof fs.stat; const settings = new Settings({ fs: { lstat, stat } }); provider.read('filepath', settings, (error) => { assert.strictEqual(error.message, 'broken'); done(); }); }); }); });
Close