summaryrefslogtreecommitdiff
path: root/extensions/ParserFunctions
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2014-04-25 06:26:49 +0200
committerPierre Schmitz <pierre@archlinux.de>2014-04-25 06:26:49 +0200
commit2e44b49a2db3026050b136de9b00f749dd3ff939 (patch)
treeef048f4db79a93c25cfc86319264aa7ae2a4ae0b /extensions/ParserFunctions
parent9441dde8bfb95277df073717ed7817dced40f948 (diff)
Update to MediaWiki 1.22.6
Diffstat (limited to 'extensions/ParserFunctions')
-rw-r--r--extensions/ParserFunctions/.gitreview5
-rw-r--r--extensions/ParserFunctions/tests/ExpressionTest.php76
2 files changed, 0 insertions, 81 deletions
diff --git a/extensions/ParserFunctions/.gitreview b/extensions/ParserFunctions/.gitreview
deleted file mode 100644
index decb9867..00000000
--- a/extensions/ParserFunctions/.gitreview
+++ /dev/null
@@ -1,5 +0,0 @@
-[gerrit]
-host=gerrit.wikimedia.org
-port=29418
-project=mediawiki/extensions/ParserFunctions.git
-defaultbranch=master
diff --git a/extensions/ParserFunctions/tests/ExpressionTest.php b/extensions/ParserFunctions/tests/ExpressionTest.php
deleted file mode 100644
index 169a9cb4..00000000
--- a/extensions/ParserFunctions/tests/ExpressionTest.php
+++ /dev/null
@@ -1,76 +0,0 @@
-<?php
-class ExpressionTest extends MediaWikiTestCase {
-
- /**
- * @var ExprParser
- */
- protected $parser;
-
- protected function setUp() {
- parent::setUp();
- $this->parser = new ExprParser();
- }
-
- /**
- * @dataProvider provideExpressions
- */
- function testExpression( $input, $expected ) {
- $this->assertEquals(
- $expected,
- $this->parser->doExpression( $input )
- );
- }
-
- function provideExpressions() {
- return array(
- array( '1 or 0', '1' ),
- array( 'not (1 and 0)', '1' ),
- array( 'not 0', '1' ),
- array( '4 < 5', '1' ),
- array( '-5 < 2', '1' ),
- array( '-2 <= -2', '1' ),
- array( '4 > 3', '1' ),
- array( '4 > -3', '1' ),
- array( '5 >= 2', '1' ),
- array( '2 >= 2', '1' ),
- array( '1 != 2', '1' ),
- array( '-4 * -4 = 4 * 4', '1' ),
- array( 'not (1 != 1)', '1' ),
- array( '1 + 1', '2' ),
- array( '-1 + 1', '0' ),
- array( '+1 + 1', '2' ),
- array( '4 * 4', '16' ),
- array( '(1/3) * 3', '1' ),
- array( '3 / 1.5', '2' ),
- array( '3 / 0.2', '15' ),
- array( '3 / ( 2.0 * 0.1 )', '15' ),
- array( '3 / ( 2.0 / 10 )', '15' ),
- array( '3 / (- 0.2 )', '-15' ),
- array( '3 / abs( 0.2 )', '15' ),
- array( '3 mod 2', '1' ),
- array( '1e4', '10000' ),
- array( '1e-2', '0.01' ),
- array( '4.0 round 0', '4' ),
- array( 'ceil 4', '4' ),
- array( 'floor 4', '4' ),
- array( '4.5 round 0', '5' ),
- array( '4.2 round 0', '4' ),
- array( '-4.2 round 0', '-4' ),
- array( '-4.5 round 0', '-5' ),
- array( '-2.0 round 0', '-2' ),
- array( 'ceil -3', '-3' ),
- array( 'floor -6.0', '-6' ),
- array( 'ceil 4.2', '5' ),
- array( 'ceil -4.5', '-4' ),
- array( 'floor -4.5', '-5' ),
- array( 'abs(-2)', '2' ),
- array( 'ln(exp(1))', '1' ),
- array( 'trunc(4.5)', '4' ),
- array( 'trunc(-4.5)', '-4' ),
- array( '123 fmod (2^64-1)', '123' ),
- array( '5.7 mod 1.3', '0' ),
- array( '5.7 fmod 1.3', '0.5' ),
- );
- }
-}
-