Files
yii2/tests/framework/base/ThemeTest.php
2024-03-20 17:27:20 -03:00

171 lines
5.1 KiB
PHP

<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yiiunit\framework\base;
use Yii;
use yii\base\Theme;
use yiiunit\TestCase;
/**
* @group base
*/
class ThemeTest extends TestCase
{
protected function setUp(): void
{
$config = ['aliases' => ['@web' => '']];
$this->mockWebApplication($config);
}
private function assertPathEquals($expected, $actual, $message = '', $delta = 0.0, $maxDepth = 10, $canonicalize = false, $ignoreCase = false): void
{
$expected = str_replace('\\', '/', (string) $expected);
$actual = str_replace('\\', '/', (string) $actual);
$this->assertEquals($expected, $actual, $message);
}
public function testSetBaseUrl(): void
{
$theme = new Theme(['baseUrl' => '@web/themes/basic']);
$expected = Yii::getAlias('@web/themes/basic');
$this->assertEquals($expected, $theme->baseUrl);
}
public function testGetUrlFilledBaseUrl(): void
{
$theme = new Theme(['baseUrl' => '@web/themes/basic']);
$expected = Yii::getAlias('@web/themes/basic/js/test.js');
$actual = $theme->getUrl('/js/test.js');
$this->assertEquals($expected, $actual);
}
public function testGetUrlNotFilledBaseUrl(): void
{
$theme = new Theme(['baseUrl' => null]);
$this->expectException('yii\base\InvalidConfigException');
$theme->getUrl('/js/test.js');
}
public function testSetBasePath(): void
{
$theme = new Theme(['basePath' => '@app/framework/base/fixtures/themes/basic']);
$expected = Yii::getAlias('@app/framework/base/fixtures/themes/basic');
$this->assertEquals($expected, $theme->basePath);
}
public function testGetPathFilledBasePath(): void
{
$theme = new Theme(['basePath' => '@app/framework/base/fixtures/themes/basic']);
$expected = Yii::getAlias('@app/framework/base/fixtures/themes/basic/img/logo.gif');
$actual = $theme->getPath('/img/logo.gif');
$this->assertPathEquals($expected, $actual);
}
public function testGetPathNotFilledBasePath(): void
{
$theme = new Theme(['baseUrl' => null]);
$this->expectException('yii\base\InvalidConfigException');
$theme->getPath('/img/logo.gif');
}
public function testApplyToEmptyBasePath(): void
{
$theme = new Theme(['basePath' => null]);
$this->expectException('yii\base\InvalidConfigException');
$theme->applyTo(null);
}
public function testApplyToEmptyPathMap(): void
{
$theme = new Theme(['basePath' => '@app/framework/base/fixtures/themes/basic']);
$expected = Yii::getAlias('@app/framework/base/fixtures/themes/basic/views/site/index.php');
$actual = $theme->applyTo(Yii::$app->basePath . '/views/site/index.php');
$this->assertPathEquals($expected, $actual);
}
public function testApplyToFilledPathMap(): void
{
$config = [
'pathMap' => [
'@app/views' => '@app/framework/base/fixtures/themes/basic/views',
],
];
$theme = new Theme($config);
$expected = Yii::getAlias('@app/framework/base/fixtures/themes/basic/views/site/index.php');
$actual = $theme->applyTo(Yii::$app->basePath . '/views/site/index.php');
$this->assertPathEquals($expected, $actual);
}
public function testApplyToFilledPathMapNotExistsViewInFirstTheme(): void
{
$config = [
'pathMap' => [
'@app/views' => [
'@app/framework/base/fixtures/themes/basic/views',
'@app/framework/base/fixtures/themes/christmas/views',
],
],
];
$theme = new Theme($config);
$expected = Yii::getAlias('@app/framework/base/fixtures/themes/christmas/views/site/main.php');
$actual = $theme->applyTo(Yii::$app->basePath . '/views/site/main.php');
$this->assertPathEquals($expected, $actual);
}
public function testApplyToFilledPathMapAndInheritThemes(): void
{
$config = [
'pathMap' => [
'@app/views' => [
'@app/framework/base/fixtures/themes/christmas/views',
'@app/framework/base/fixtures/themes/basic/views',
],
],
];
$theme = new Theme($config);
$expected = Yii::getAlias('@app/framework/base/fixtures/themes/christmas/views/site/index.php');
$actual = $theme->applyTo(Yii::$app->basePath . '/views/site/index.php');
$this->assertPathEquals($expected, $actual);
}
public function testApplyToFilledPathMapAndFileNotExists(): void
{
$config = [
'pathMap' => [
'@app/views' => '@app/framework/base/fixtures/themes/christmas/views',
],
];
$theme = new Theme($config);
$expected = Yii::getAlias(Yii::$app->basePath . '/views/main/index.php');
$actual = $theme->applyTo($expected);
$this->assertPathEquals($expected, $actual);
}
}