summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Query/Parser/TokenizerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Query/Parser/TokenizerTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Query/Parser/TokenizerTest.php99
1 files changed, 99 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Query/Parser/TokenizerTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Query/Parser/TokenizerTest.php
new file mode 100644
index 00000000..6c509426
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Query/Parser/TokenizerTest.php
@@ -0,0 +1,99 @@
+<?php
+
+namespace SMW\Tests\Query\Parser;
+
+use SMW\Query\Parser\Tokenizer;
+
+/**
+ * @covers \SMW\Query\Parser\Tokenizer
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 3.0
+ *
+ * @author mwjames
+ */
+class TokenizerTest extends \PHPUnit_Framework_TestCase {
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ Tokenizer::class,
+ new Tokenizer()
+ );
+ }
+
+ /**
+ * @dataProvider tokenProvider
+ */
+ public function testGetToken( $currentString, $stoppattern, $expectedRes, $expectedCurrent ) {
+
+ $instance = new Tokenizer();
+ $instance->setDefaultPattern( [] );
+
+ $res = $instance->getToken( $currentString, $stoppattern );
+
+ $this->assertEquals(
+ $expectedRes,
+ $res
+ );
+
+ $this->assertEquals(
+ $expectedCurrent,
+ $currentString
+ );
+ }
+
+ public function tokenProvider() {
+
+ yield [
+ '',
+ '',
+ '',
+ ''
+ ];
+
+ yield [
+ '[[Foo]]',
+ '',
+ '[[',
+ 'Foo]]'
+ ];
+
+ yield [
+ '|Foo',
+ '',
+ '|',
+ 'Foo'
+ ];
+
+ yield [
+ '::Foo',
+ '',
+ '::',
+ 'Foo'
+ ];
+
+ yield [
+ 'Foo]]',
+ '',
+ 'Foo',
+ ']]'
+ ];
+
+ yield [
+ 'Foo]][[Bar',
+ '',
+ 'Foo',
+ ']][[Bar'
+ ];
+
+ yield [
+ ']][[Bar',
+ '',
+ ']]',
+ '[[Bar'
+ ];
+ }
+
+}