gplx/mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/MaintenanceLoggerTest.php

65 lines
1.5 KiB
PHP

<?php
namespace SMW\Tests\Maintenance;
use SMW\Maintenance\MaintenanceLogger;
use SMW\Tests\PHPUnitCompat;
/**
* @covers \SMW\Maintenance\MaintenanceLogger
* @group semantic-mediawiki
*
* @license GPL-2.0-or-later
* @since 2.4
*
* @author mwjames
*/
class MaintenanceLoggerTest extends \PHPUnit\Framework\TestCase {
use PHPUnitCompat;
public function testCanConstruct() {
$manualEntryLogger = $this->getMockBuilder( '\SMW\MediaWiki\ManualEntryLogger' )
->disableOriginalConstructor()
->getMock();
$this->assertInstanceOf(
'\SMW\Maintenance\MaintenanceLogger',
new MaintenanceLogger( 'Foo', $manualEntryLogger )
);
}
public function testLog() {
$manualEntryLogger = $this->getMockBuilder( '\SMW\MediaWiki\ManualEntryLogger' )
->disableOriginalConstructor()
->getMock();
$manualEntryLogger->expects( $this->once() )
->method( 'log' )
->with(
$this->stringContains( 'maintenance' ),
'Foo',
'Foo',
$this->stringContains( 'bar' ) );
$instance = new MaintenanceLogger( 'Foo', $manualEntryLogger );
$instance->log( 'bar' );
}
public function testLogWithInvalidNameLengthThrowsException() {
$manualEntryLogger = $this->getMockBuilder( '\SMW\MediaWiki\ManualEntryLogger' )
->disableOriginalConstructor()
->getMock();
$manualEntryLogger->expects( $this->never() )
->method( 'log' );
$instance = new MaintenanceLogger( 'Foo', $manualEntryLogger );
$instance->setMaxNameChars( 2 );
$this->expectException( 'RuntimeException' );
$instance->log( 'bar' );
}
}