!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:     skip_explanation.js (2.29 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
'use strict';

var tap = require('tap');
var test = require('../');
var concat = require('concat-stream');
var stripFullStack = require('./common').stripFullStack;

tap.test('test skip explanations', function (assert) {
	assert.plan(1);

	var verify = function (output) {
		assert.deepEqual(stripFullStack(output.toString('utf8')), [
			'TAP version 13',
			'# SKIP (this skips)',
			'# some tests might skip',
			'ok 1 this runs',
			'ok 2 failing assert is skipped # SKIP',
			'ok 3 this runs',
			'# incomplete test',
			'ok 4 run sh',
			'ok 5 run openssl # SKIP',
			'# incomplete test with explanation',
			'ok 6 run sh (conditional skip) # SKIP',
			'ok 7 run openssl # SKIP can\'t run on windows platforms',
			'ok 8 this runs',
			'# too much explanation',
			'ok 9 run openssl # SKIP Installer cannot work on windows and fails to add to PATH Err: (2401) denied',
			'',
			'1..9',
			'# tests 9',
			'# pass  9',
			'',
			'# ok',
			''
		]);
	};

	var tapeTest = test.createHarness();
	tapeTest.createStream().pipe(concat(verify));

	tapeTest('(this skips)', { skip: true }, function (t) {
		t.fail('doesn\'t run');
		t.fail('this doesn\'t run too', { skip: false });
		t.end();
	});

	tapeTest('some tests might skip', function (t) {
		t.pass('this runs');
		t.fail('failing assert is skipped', { skip: true });
		t.pass('this runs');
		t.end();
	});

	tapeTest('incomplete test', function (t) {
		// var platform = process.platform; something like this needed
		var platform = 'win32';

		t.pass('run sh', { skip: platform !== 'win32' });
		t.pass('run openssl', { skip: platform === 'win32' });
		t.end();
	});

	tapeTest('incomplete test with explanation', function (t) {
		// var platform = process.platform; something like this needed
		var platform = 'win32';

		t.fail('run sh (conditional skip)', { skip: platform === 'win32' });
		t.fail('run openssl', { skip: platform === 'win32' && 'can\'t run on windows platforms' });
		t.pass('this runs');
		t.end();
	});

	tapeTest('too much explanation', function (t) {
		// var platform = process.platform; something like this needed
		var platform = 'win32';

		t.fail(
			'run openssl',
			{ skip: platform === 'win32' && 'Installer cannot work on windows\nand fails to add to PATH\n\n Err: (2401) denied' }
		);
		t.end();
	});
});

// vim: set softtabstop=4 shiftwidth=4:

:: 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.0057 ]--