summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/tests/phpunit/PageTranslationParserTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/Translate/tests/phpunit/PageTranslationParserTest.php')
-rw-r--r--www/wiki/extensions/Translate/tests/phpunit/PageTranslationParserTest.php64
1 files changed, 64 insertions, 0 deletions
diff --git a/www/wiki/extensions/Translate/tests/phpunit/PageTranslationParserTest.php b/www/wiki/extensions/Translate/tests/phpunit/PageTranslationParserTest.php
new file mode 100644
index 00000000..5e82176e
--- /dev/null
+++ b/www/wiki/extensions/Translate/tests/phpunit/PageTranslationParserTest.php
@@ -0,0 +1,64 @@
+<?php
+/**
+ * @author Niklas Laxström
+ * @copyright Copyright © 2010-2013, Niklas Laxström
+ * @license GPL-2.0-or-later
+ * @file
+ */
+
+/**
+ * Custom testing framework for page translation parser.
+ * @ingroup PageTranslation
+ * @group Database
+ */
+class PageTranslationParserTest extends MediaWikiTestCase {
+ public static function provideTestFiles() {
+ $dir = __DIR__;
+ $testFiles = glob( "$dir/pagetranslation/*.ptfile" );
+ foreach ( $testFiles as $i => $file ) {
+ $testFiles[$i] = [ $file ];
+ }
+
+ return $testFiles;
+ }
+
+ /**
+ * @dataProvider provideTestFiles
+ */
+ public function testParsing( $file ) {
+ $filename = basename( $file );
+ list( $pagename, ) = explode( '.', $filename, 2 );
+ $title = Title::newFromText( $pagename );
+ $translatablePage = TranslatablePage::newFromText( $title, file_get_contents( $file ) );
+
+ $pattern = dirname( $file ) . "/$pagename";
+
+ if ( $filename === 'FailNotAtomic.ptfile' ) {
+ $this->markTestSkipped( 'Extended validation not yet implemented' );
+ }
+
+ $failureExpected = strpos( $pagename, 'Fail' ) === 0;
+
+ if ( $failureExpected ) {
+ $this->setExpectedException( 'TPException' );
+ }
+
+ $parse = $translatablePage->getParse();
+ $this->assertInstanceOf( 'TPParse', $parse );
+
+ if ( file_exists( "$pattern.ptsource" ) ) {
+ $source = $parse->getSourcePageText();
+ $this->assertEquals( file_get_contents( "$pattern.ptsource" ), $source );
+ }
+
+ if ( file_exists( "$pattern.pttarget" ) ) {
+ $target = $parse->getTranslationPageText( [] );
+ $this->assertEquals( file_get_contents( "$pattern.pttarget" ), $target );
+ }
+
+ // Custom tests written in php
+ if ( file_exists( "$pattern.pttest" ) ) {
+ require "$pattern.pttest";
+ }
+ }
+}