!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/local/share/.cache/yarn/v6/npm-tape-5.6.1-integrity/node_modules/tape/test/   drwxr-xr-x
Free 13.23 GB of 57.97 GB (22.83%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     import.js (5 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
'use strict';

var tap = require('tap');
var spawn = require('child_process').spawn;
var concat = require('concat-stream');
var hasDynamicImport = require('has-dynamic-import');
var assign = require('object.assign');

function tape(args, options) {
	var bin = __dirname + '/../bin/tape';

	return spawn('node', [bin].concat(args.split(' ')), assign({ cwd: __dirname }, options));
}

tap.test('importing mjs files', function (t) {
	hasDynamicImport().then(function (hasSupport) {
		if (hasSupport) {
			var tc = function (rows) {
				t.same(rows.toString('utf8'), [
					'TAP version 13',
					'# mjs-a',
					'ok 1 test ran',
					'# mjs-b',
					'ok 2 test ran after mjs-a',
					'# mjs-c',
					'ok 3 test ran after mjs-b',
					'# mjs-d',
					'ok 4 test ran after mjs-c',
					'# mjs-e',
					'ok 5 test ran after mjs-d',
					'# mjs-f',
					'ok 6 test ran after mjs-e',
					'# mjs-g',
					'ok 7 test ran after mjs-f',
					'# mjs-h',
					'ok 8 test ran after mjs-g',
					'',
					'1..8',
					'# tests 8',
					'# pass  8',
					'',
					'# ok'
				].join('\n') + '\n\n');
			};

			var ps = tape('import/mjs-*.mjs');
			ps.stdout.pipe(concat(tc));
			ps.stderr.pipe(process.stderr);
			ps.on('exit', function (code) {
				t.equal(code, 0);
				t.end();
			});
		} else {
			t.pass('does not support dynamic import');
			t.end();
		}
	});
});

tap.test('importing type: "module" files', function (t) {
	hasDynamicImport().then(function (hasSupport) {
		if (hasSupport) {
			var tc = function (rows) {
				t.same(rows.toString('utf8'), [
					'TAP version 13',
					'# package-type-a',
					'ok 1 test ran',
					'# package-type-b',
					'ok 2 test ran after package-type-a',
					'# package-type-c',
					'ok 3 test ran after package-type-b',
					'',
					'1..3',
					'# tests 3',
					'# pass  3',
					'',
					'# ok'
				].join('\n') + '\n\n');
			};

			var ps = tape('import/package_type/*.js');
			ps.stdout.pipe(concat(tc));
			ps.stderr.pipe(process.stderr);
			ps.on('exit', function (code) {
				t.equal(code, 0);
				t.end();
			});
		} else {
			t.pass('does not support dynamic import');
			t.end();
		}
	});
});

tap.test('errors importing test files', function (t) {
	hasDynamicImport().then(function (hasSupport) {
		var createTest = function (options) {
			var message = options.error + ' in `' + options.mode + '` mode`';
			var ps = tape(options.files, { env: { NODE_OPTIONS: '--unhandled-rejections=' + options.mode } });
			ps.stderr.pipe(concat(options.unhandledRejection(message)));
			ps.on('exit', function (code/* , sig */) {
				t.equal(code, options.exitCode, message + ' has exit code ' + options.exitCode);
			});
		};

		var warning = function (message) {
			return function (rows) {
				t.match(rows.toString('utf8'), 'UnhandledPromiseRejectionWarning', 'should have unhandled rejection warning: ' + message);
			};
		};

		var noWarning = function (message) {
			return function (rows) {
				t.notMatch(rows.toString('utf8'), 'UnhandledPromiseRejectionWarning', 'should not have unhandled rejection warning: ' + message);
			};
		};

		if (hasSupport) {
			var tests = [{
				files: 'import/syntax-error.mjs import/mjs-a.mjs import/mjs-b.mjs',
				error: 'syntax errors in first imported esm file',
				mode: 'warn',
				exitCode: 0,
				unhandledRejection: warning
			}, {
				files: 'import/throws.mjs import/mjs-a.mjs import/mjs-b.mjs',
				error: 'thrown errors in first imported esm file',
				mode: 'warn',
				exitCode: 0,
				unhandledRejection: warning
			}, {
				files: 'import/mjs-a.mjs import/syntax-error.mjs',
				error: 'syntax error in esm file',
				mode: 'warn',
				exitCode: 1,
				unhandledRejection: warning
			}, {
				files: 'import/syntax-error.mjs',
				error: 'syntax error in esm file',
				mode: 'strict',
				exitCode: 1,
				unhandledRejection: noWarning
			}, {
				files: 'import/throws.mjs',
				error: 'thrown error in esm file',
				mode: 'strict',
				exitCode: 1,
				unhandledRejection: noWarning
			}, {
				files: 'import/syntax-error.cjs',
				error: 'syntax error in cjs file',
				mode: 'warn',
				exitCode: 1,
				unhandledRejection: noWarning
			}, {
				files: 'import/throws.cjs',
				error: 'thrown error in cjs file',
				mode: 'warn',
				exitCode: 1,
				unhandledRejection: noWarning
			}, {
				files: 'import/syntax-error.cjs',
				error: 'syntax error in cjs file',
				mode: 'strict',
				exitCode: 1,
				unhandledRejection: noWarning
			}, {
				files: 'import/throws.cjs',
				error: 'thrown error in cjs file',
				mode: 'strict',
				exitCode: 1,
				unhandledRejection: noWarning
			}, {
				files: 'import/mjs-a.mjs import/syntax-error.cjs',
				error: 'syntax error in cjs file in loading promise',
				mode: 'warn',
				exitCode: 1,
				unhandledRejection: warning
			}, {
				files: 'import/mjs-a.mjs import/syntax-error.cjs',
				error: 'syntax error in cjs file in loading promise',
				mode: 'strict',
				exitCode: 1,
				unhandledRejection: noWarning
			}];

			t.plan(tests.length * 2);

			tests.map(createTest);
		} else {
			t.pass('does not support dynamic import');
			t.end();
		}
	});
});

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0053 ]--