summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Parser/SemanticLinksParserTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Parser/SemanticLinksParserTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Parser/SemanticLinksParserTest.php97
1 files changed, 97 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Parser/SemanticLinksParserTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Parser/SemanticLinksParserTest.php
new file mode 100644
index 00000000..96956f0d
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Parser/SemanticLinksParserTest.php
@@ -0,0 +1,97 @@
+<?php
+
+namespace SMW\Tests\Parser;
+
+use SMW\Parser\LinksProcessor;
+use SMW\Parser\SemanticLinksParser;
+
+/**
+ * @covers \SMW\Parser\SemanticLinksParser
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class SemanticLinksParserTest extends \PHPUnit_Framework_TestCase {
+
+ public function testCanConstruct() {
+
+ $linksProcessor = $this->getMockBuilder( 'SMW\Parser\LinksProcessor' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $instance = new SemanticLinksParser( $linksProcessor );
+
+ $this->assertInstanceOf(
+ 'SMW\Parser\SemanticLinksParser',
+ $instance
+ );
+ }
+
+ /**
+ * @dataProvider textProvider
+ */
+ public function testParse( $text, $expected ) {
+
+ $instance = new SemanticLinksParser(
+ new LinksProcessor()
+ );
+
+ $this->assertEquals(
+ $expected,
+ $instance->parse( $text )
+ );
+ }
+
+ public function textProvider() {
+
+ $provider = [];
+
+ $provider[] = [
+ 'Foo',
+ []
+ ];
+
+ $provider[] = [
+ '[[Foo]]',
+ []
+ ];
+
+ $provider[] = [
+ '[[Foo|Bar]]',
+ []
+ ];
+
+ $provider[] = [
+ '[[Foo::[[Bar]]]]',
+ []
+ ];
+
+ $provider[] = [
+ '[[Foo::Bar]]',
+ [
+ [
+ 'Foo'
+ ],
+ 'Bar',
+ false
+ ]
+ ];
+
+ $provider[] = [
+ '[[Foo::Bar|Foobar]]',
+ [
+ [
+ 'Foo'
+ ],
+ 'Bar',
+ 'Foobar'
+ ]
+ ];
+
+ return $provider;
+ }
+
+}