summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/Ask/ErrorWidgetTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/Ask/ErrorWidgetTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/Ask/ErrorWidgetTest.php92
1 files changed, 92 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/Ask/ErrorWidgetTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/Ask/ErrorWidgetTest.php
new file mode 100644
index 00000000..7a67c520
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/Ask/ErrorWidgetTest.php
@@ -0,0 +1,92 @@
+<?php
+
+namespace SMW\Tests\MediaWiki\Specials\Ask;
+
+use SMW\MediaWiki\Specials\Ask\ErrorWidget;
+
+/**
+ * @covers \SMW\MediaWiki\Specials\Ask\ErrorWidget
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class ErrorWidgetTest extends \PHPUnit_Framework_TestCase {
+
+ public function testSessionFailure() {
+
+ $this->assertInternalType(
+ 'string',
+ ErrorWidget::sessionFailure()
+ );
+ }
+
+ public function testNoScript() {
+
+ $this->assertInternalType(
+ 'string',
+ ErrorWidget::noScript()
+ );
+ }
+
+ public function testNoResult() {
+
+ $this->assertInternalType(
+ 'string',
+ ErrorWidget::noResult()
+ );
+ }
+
+ /**
+ * @dataProvider queryErrorProvider
+ */
+ public function testGetFormattedQueryErrorElement( $errors, $expected ) {
+
+ $query = $this->getMockBuilder( '\SMWQuery' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $query->expects( $this->atLeastOnce() )
+ ->method( 'getErrors' )
+ ->will( $this->returnValue( $errors ) );
+
+ $this->assertEquals(
+ $expected,
+ ErrorWidget::queryError( $query )
+ );
+ }
+
+ public function queryErrorProvider() {
+
+ $provider[] = [
+ '',
+ ''
+ ];
+
+ $provider[] = [
+ [ 'Foo' ],
+ '<div id="result-error" class="smw-callout smw-callout-error">Foo</div>'
+ ];
+
+ $provider[] = [
+ [ 'Foo', 'Bar' ],
+ '<div id="result-error" class="smw-callout smw-callout-error"><ul><li>Foo</li><li>Bar</li></ul></div>'
+ ];
+
+ $provider[] = [
+ [ 'Foo', [ 'Bar' ] ],
+ '<div id="result-error" class="smw-callout smw-callout-error"><ul><li>Foo</li><li>Bar</li></ul></div>'
+ ];
+
+ // Filter duplicate
+ $provider[] = [
+ [ 'Foo', [ 'Bar' ], 'Bar' ],
+ '<div id="result-error" class="smw-callout smw-callout-error"><ul><li>Foo</li><li>Bar</li></ul></div>'
+ ];
+
+ return $provider;
+ }
+
+}