46 lines
735 B
PHP
46 lines
735 B
PHP
<?php
|
|
|
|
namespace SMW\Tests\Utils;
|
|
|
|
use SMW\Tests\PHPUnitCompat;
|
|
use SMW\Utils\Logo;
|
|
|
|
/**
|
|
* @covers \SMW\Utils\Logo
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 3.1
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class LogoTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
use PHPUnitCompat;
|
|
|
|
public function testGet_Small() {
|
|
$this->assertContains(
|
|
'assets/logo_small.svg',
|
|
Logo::get( 'small' )
|
|
);
|
|
}
|
|
|
|
public function testGet_Footer() {
|
|
$fileName = version_compare( MW_VERSION, '1.43', '>=' )
|
|
? 'logo_footer.svg'
|
|
: 'logo_footer_legacy.svg';
|
|
|
|
$this->assertContains(
|
|
"assets/$fileName",
|
|
Logo::get( 'footer' )
|
|
);
|
|
}
|
|
|
|
public function testGet_Unknown() {
|
|
$this->assertNull(
|
|
Logo::get( 'Foo' )
|
|
);
|
|
}
|
|
|
|
}
|