Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * @link https://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Soft..
Decoded Output download
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yiiunitrameworkase;
use Yii;
use yiiase\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)
{
$expected = str_replace('\', '/', $expected);
$actual = str_replace('\', '/', $actual);
$this->assertEquals($expected, $actual, $message, $delta, $maxDepth, $canonicalize, $ignoreCase);
}
public function testSetBaseUrl()
{
$theme = new Theme(['baseUrl' => '@web/themes/basic']);
$expected = Yii::getAlias('@web/themes/basic');
$this->assertEquals($expected, $theme->baseUrl);
}
public function testGetUrlFilledBaseUrl()
{
$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()
{
$theme = new Theme(['baseUrl' => null]);
$this->expectException('yiiase\InvalidConfigException');
$theme->getUrl('/js/test.js');
}
public function testSetBasePath()
{
$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()
{
$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()
{
$theme = new Theme(['baseUrl' => null]);
$this->expectException('yiiase\InvalidConfigException');
$theme->getPath('/img/logo.gif');
}
public function testApplyToEmptyBasePath()
{
$theme = new Theme(['basePath' => null]);
$this->expectException('yiiase\InvalidConfigException');
$theme->applyTo(null);
}
public function testApplyToEmptyPathMap()
{
$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()
{
$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()
{
$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()
{
$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()
{
$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);
}
}
?>
Did this file decode correctly?
Original Code
<?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)
{
$expected = str_replace('\\', '/', $expected);
$actual = str_replace('\\', '/', $actual);
$this->assertEquals($expected, $actual, $message, $delta, $maxDepth, $canonicalize, $ignoreCase);
}
public function testSetBaseUrl()
{
$theme = new Theme(['baseUrl' => '@web/themes/basic']);
$expected = Yii::getAlias('@web/themes/basic');
$this->assertEquals($expected, $theme->baseUrl);
}
public function testGetUrlFilledBaseUrl()
{
$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()
{
$theme = new Theme(['baseUrl' => null]);
$this->expectException('yii\base\InvalidConfigException');
$theme->getUrl('/js/test.js');
}
public function testSetBasePath()
{
$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()
{
$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()
{
$theme = new Theme(['baseUrl' => null]);
$this->expectException('yii\base\InvalidConfigException');
$theme->getPath('/img/logo.gif');
}
public function testApplyToEmptyBasePath()
{
$theme = new Theme(['basePath' => null]);
$this->expectException('yii\base\InvalidConfigException');
$theme->applyTo(null);
}
public function testApplyToEmptyPathMap()
{
$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()
{
$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()
{
$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()
{
$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()
{
$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);
}
}
Function Calls
None |
Stats
MD5 | 46789b501d5ceffaeecbee11167be22c |
Eval Count | 0 |
Decode Time | 137 ms |