83 lines
2.2 KiB
PHP
83 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace UniversalLanguageSelector\Tests;
|
|
|
|
use \FontRepoCompiler;
|
|
|
|
/**
|
|
* @covers \FontRepoCompiler
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @author Thiemo Kreuz
|
|
*/
|
|
class FontRepoCompilerTest extends \PHPUnit\Framework\TestCase {
|
|
use \PHPUnit4And6Compat;
|
|
|
|
public function testGetLanguages() {
|
|
$instance = new FontRepoCompiler( '', '' );
|
|
|
|
$result = $instance->getLanguages( [ 'languages' => 'de, en' ] );
|
|
$this->assertSame( [ 'de', 'en' ], $result );
|
|
}
|
|
|
|
public function testAppendLanguages() {
|
|
$instance = new FontRepoCompiler( '', '' );
|
|
|
|
$languages = [ 'de' => [] ];
|
|
$fontLanguages = [ 'de', 'en', 'fr*' ];
|
|
|
|
$instance->appendLanguages( $languages, $fontLanguages, 'dummyFontName' );
|
|
$this->assertSame( [
|
|
'de' => [ 'dummyFontName' ],
|
|
'en' => [ 'system', 'dummyFontName' ],
|
|
'fr' => [ 'dummyFontName' ],
|
|
], $languages );
|
|
}
|
|
|
|
public function testGetAllBasicFontInfo() {
|
|
$instance = new FontRepoCompiler( '', '' );
|
|
|
|
$givenInfo = [
|
|
'fontweight' => 'dummyFontWeight',
|
|
'fontstyle' => 'dummyFontStyle',
|
|
'woff' => 'Alef-Regular.woff',
|
|
'bold' => 'dummyBold',
|
|
'bolditalic' => 'dummyBoldItalic',
|
|
'italic' => 'dummyItalic',
|
|
];
|
|
|
|
$result = $instance->getFontInfo( $givenInfo, __DIR__ . '/../../data/fontrepo/fonts/Alef' );
|
|
$this->assertSame( [
|
|
'fontweight' => 'dummyFontWeight',
|
|
'fontstyle' => 'dummyFontStyle',
|
|
'woff' => 'Alef/Alef-Regular.woff?2b430',
|
|
'variants' => [
|
|
'bold' => 'dummyBold',
|
|
'bolditalic' => 'dummyBoldItalic',
|
|
'italic' => 'dummyItalic',
|
|
],
|
|
], $result );
|
|
}
|
|
|
|
public function testScanForWoffFiles() {
|
|
$instance = new FontRepoCompiler( '', '' );
|
|
|
|
$result = $instance->getFontInfo( [], __DIR__ . '/../../data/fontrepo/fonts/Alef' );
|
|
$this->assertSame( [
|
|
'woff' => 'Alef/Alef-Regular.woff?2b430',
|
|
'woff2' => 'Alef/Alef-Regular.woff2?a2499',
|
|
], $result );
|
|
}
|
|
|
|
public function testGetRepository() {
|
|
$path = __DIR__ . '/../../data/fontrepo/fonts';
|
|
$instance = new FontRepoCompiler( $path, 'dummyPath' );
|
|
|
|
$result = $instance->getRepository();
|
|
$this->assertSame( 'dummyPath', $result['base'], 'base' );
|
|
$this->assertContainsOnly( 'array', $result['languages'], 'languages' );
|
|
$this->assertContainsOnly( 'array', $result['fonts'], 'fonts' );
|
|
}
|
|
|
|
}
|