summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Utils/LoggerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Utils/LoggerTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Utils/LoggerTest.php62
1 files changed, 62 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Utils/LoggerTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Utils/LoggerTest.php
new file mode 100644
index 00000000..a2c436d6
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Utils/LoggerTest.php
@@ -0,0 +1,62 @@
+<?php
+
+namespace SMW\Tests\Utils;
+
+use SMW\Utils\Logger;
+
+/**
+ * @covers \SMW\Utils\Logger
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 3.0
+ *
+ * @author mwjames
+ */
+class LoggerTest extends \PHPUnit_Framework_TestCase {
+
+ private $logger;
+
+ protected function setUp() {
+
+ $this->logger = $this->getMockBuilder( '\Psr\Log\LoggerInterface' )
+ ->disableOriginalConstructor()
+ ->getMock();
+ }
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ Logger::class,
+ new Logger( $this->logger )
+ );
+ }
+
+ /**
+ * @dataProvider logProvider
+ */
+ public function testLog( $role, $message, $context ) {
+
+ $this->logger->expects( $this->once() )
+ ->method( 'log' );
+
+ $instance = new Logger( $this->logger, $role );
+ $instance->log( 'Foo', $message, $context );
+ }
+
+ public function logProvider() {
+
+ yield [
+ Logger::ROLE_DEVELOPER,
+ 'Foo',
+ [ 'Foo' ]
+ ];
+
+ yield [
+ Logger::ROLE_DEVELOPER,
+ 'Foo',
+ [ 'Foo', [ 'Bar' => 123 ] ]
+ ];
+ }
+
+}