Your IP : 172.70.127.68


Current Path : /var/www/element/data/www/wiki.element.ru/extensions/ParserFunctions/
Upload File :
Current File : /var/www/element/data/www/wiki.element.ru/extensions/ParserFunctions/testExpr.php

<?php

require_once ( getenv( 'MW_INSTALL_PATH' ) !== false
	? getenv( 'MW_INSTALL_PATH' ) . "/maintenance/commandLine.inc"
	: dirname( __FILE__ ) . '/../../maintenance/commandLine.inc' );
require( 'Expr.php' );

$tests = file( 'exprTests.txt' );

$pass = $fail = 0;

// Each test is on one line. The test must always evaluate to '1'.
$parser = new ExprParser;
foreach ( $tests as $test ) {
	$test = trim( $test );
	if ( strpos( $test, ';' ) !== false )
		list( $input, $expected ) = explode( ';', $test );
	else {
		$input = $test;
		$expected = 1;
	}

	$expected = trim( $expected );
	$input = trim( $input );

	$result = $parser->doExpression( $input );
	if ( $result != $expected ) {
		print
			"FAILING test -- $input
 gave a final result of $result, instead of $expected.\n";
		$fail++;
	} else {
		print "PASSED test $test\n";
		$pass++;
	}
}

print "Passed $pass tests, failed $fail tests, out of a total of " . ( $pass + $fail ) . "\n";