Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

115 lines
3.8 KiB

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\framework\web;
use yii\caching\FileCache;
use yii\web\View;
use yiiunit\TestCase;
/**
* @group web
*/
class ViewTest extends TestCase
{
protected function setUp()
{
parent::setUp();
}
public function testRegisterJsFileWithAlias()
{
$this->mockWebApplication([
'components' => [
'request' => [
'scriptFile' => __DIR__ . '/baseUrl/index.php',
'scriptUrl' => '/baseUrl/index.php',
],
],
]);
$view = new View();
$view->registerJsFile('@web/js/somefile.js', ['position' => View::POS_HEAD]);
$html = $view->render('@yiiunit/data/views/layout.php', ['content' => 'content']);
$this->assertContains('<script src="/baseUrl/js/somefile.js"></script></head>', $html);
$view = new View();
$view->registerJsFile('@web/js/somefile.js', ['position' => View::POS_BEGIN]);
$html = $view->render('@yiiunit/data/views/layout.php', ['content' => 'content']);
$this->assertContains('<body>' . PHP_EOL . '<script src="/baseUrl/js/somefile.js"></script>', $html);
$view = new View();
$view->registerJsFile('@web/js/somefile.js', ['position' => View::POS_END]);
$html = $view->render('@yiiunit/data/views/layout.php', ['content' => 'content']);
$this->assertContains('<script src="/baseUrl/js/somefile.js"></script></body>', $html);
}
public function testRegisterCssFileWithAlias()
{
$this->mockWebApplication([
'components' => [
'request' => [
'scriptFile' => __DIR__ . '/baseUrl/index.php',
'scriptUrl' => '/baseUrl/index.php',
],
],
]);
$view = new View();
$view->registerCssFile('@web/css/somefile.css');
$html = $view->render('@yiiunit/data/views/layout.php', ['content' => 'content']);
$this->assertContains('<link href="/baseUrl/css/somefile.css" rel="stylesheet"></head>', $html);
}
public function testRegisterregisterCsrfMetaTags()
{
$this->mockWebApplication([
'components' => [
'request' => [
'scriptFile' => __DIR__ . '/baseUrl/index.php',
'scriptUrl' => '/baseUrl/index.php',
],
'cache' => [
'class' => FileCache::className(),
],
],
]);
$view = new View();
$view->registerCsrfMetaTags();
$html = $view->render('@yiiunit/data/views/layout.php', ['content' => 'content']);
$this->assertContains('<meta name="csrf-param" content="_csrf">', $html);
$this->assertContains('<meta name="csrf-token" content="', $html);
$csrfToken1 = $this->getCSRFTokenValue($html);
// regenerate token
\Yii::$app->request->getCsrfToken(true);
$view->registerCsrfMetaTags();
$html = $view->render('@yiiunit/data/views/layout.php', ['content' => 'content']);
$this->assertContains('<meta name="csrf-param" content="_csrf">', $html);
$this->assertContains('<meta name="csrf-token" content="', $html);
$csrfToken2 = $this->getCSRFTokenValue($html);
$this->assertNotSame($csrfToken1, $csrfToken2);
}
/**
* Parses CSRF token from page HTML.
*
* @param string $html
* @return string CSRF token
*/
private function getCSRFTokenValue($html)
{
if (!preg_match('~<meta name="csrf-token" content="([^"]+)">~', $html, $matches)) {
$this->fail("No CSRF-token meta tag found. HTML was:\n$html");
}
return $matches[1];
}
}