mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-16 22:39:52 +08:00
- Removed `form_begin`, `form_end` - Added `use()` and `ViewRenderer::uses` that are importing classes and namespaces - Added widget dynamic functions `*_begin`, `*_end`, `*_widget`, `widget_end` - Added more tests
119 lines
3.8 KiB
PHP
119 lines
3.8 KiB
PHP
<?php
|
|
namespace yiiunit\extensions\twig;
|
|
|
|
use yii\web\AssetManager;
|
|
use yii\web\View;
|
|
use Yii;
|
|
use yiiunit\data\base\Singer;
|
|
use yiiunit\TestCase;
|
|
|
|
/**
|
|
* Tests Twig view renderer
|
|
*
|
|
* @author Alexander Makarov <sam@rmcreative.ru>
|
|
* @author Carsten Brandt <mail@cebe.cc>
|
|
*/
|
|
class ViewRendererTest extends TestCase
|
|
{
|
|
protected function setUp()
|
|
{
|
|
$this->mockApplication();
|
|
}
|
|
|
|
/**
|
|
* https://github.com/yiisoft/yii2/issues/1755
|
|
*/
|
|
public function testLayoutAssets()
|
|
{
|
|
$view = $this->mockView();
|
|
$content = $view->renderFile('@yiiunit/extensions/twig/views/layout.twig');
|
|
|
|
$this->assertEquals(1, preg_match('#<script src="/assets/[0-9a-z]+/jquery\\.js"></script>\s*</body>#', $content), 'Content does not contain the jquery js:' . $content);
|
|
}
|
|
|
|
public function testAppGlobal()
|
|
{
|
|
$view = $this->mockView();
|
|
$content = $view->renderFile('@yiiunit/extensions/twig/views/layout.twig');
|
|
|
|
$this->assertEquals(1, preg_match('#<meta charset="' . Yii::$app->charset . '"/>#', $content), 'Content does not contain charset:' . $content);
|
|
}
|
|
|
|
/**
|
|
* https://github.com/yiisoft/yii2/issues/3877
|
|
*/
|
|
public function testLexerOptions()
|
|
{
|
|
$view = $this->mockView();
|
|
$content = $view->renderFile('@yiiunit/extensions/twig/views/comments.twig');
|
|
|
|
$this->assertFalse(strpos($content, 'CUSTOM_LEXER_TWIG_COMMENT'), 'Custom comment lexerOptions were not applied: ' . $content);
|
|
$this->assertTrue(strpos($content, 'DEFAULT_TWIG_COMMENT') !== false, 'Default comment style was not modified via lexerOptions:' . $content);
|
|
}
|
|
|
|
public function testForm()
|
|
{
|
|
$view = $this->mockView();
|
|
$model = new Singer();
|
|
$content = $view->renderFile('@yiiunit/extensions/twig/views/form.twig', ['model' => $model]);
|
|
$this->assertEquals(1, preg_match('#<form id="login-form" class="form-horizontal" action="/form-handler" method="post">.*?</form>#s', $content), 'Content does not contain form:' . $content);
|
|
}
|
|
|
|
public function testCalls()
|
|
{
|
|
$view = $this->mockView();
|
|
$model = new Singer();
|
|
$content = $view->renderFile('@yiiunit/extensions/twig/views/calls.twig', ['model' => $model]);
|
|
$this->assertFalse(strpos($content, 'silence'), 'silence should not be echoed when void() used: ' . $content);
|
|
$this->assertTrue(strpos($content, 'echo') !== false, 'echo should be there:' . $content);
|
|
$this->assertTrue(strpos($content, 'variable') !== false, 'variable should be there:' . $content);
|
|
}
|
|
|
|
/**
|
|
* Mocks view instance
|
|
* @return View
|
|
*/
|
|
protected function mockView()
|
|
{
|
|
return new View([
|
|
'renderers' => [
|
|
'twig' => [
|
|
'class' => 'yii\twig\ViewRenderer',
|
|
'options' => [
|
|
'cache' => false,
|
|
],
|
|
'globals' => [
|
|
'html' => '\yii\helpers\Html',
|
|
'pos_begin' => View::POS_BEGIN,
|
|
],
|
|
'functions' => [
|
|
't' => '\Yii::t',
|
|
'json_encode' => '\yii\helpers\Json::encode',
|
|
],
|
|
'lexerOptions' => [
|
|
'tag_comment' => [ '{*', '*}' ],
|
|
],
|
|
],
|
|
],
|
|
'assetManager' => $this->mockAssetManager(),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Mocks asset manager
|
|
* @return AssetManager
|
|
*/
|
|
protected function mockAssetManager()
|
|
{
|
|
$assetDir = Yii::getAlias('@runtime/assets');
|
|
if (!is_dir($assetDir)) {
|
|
mkdir($assetDir, 0777, true);
|
|
}
|
|
|
|
return new AssetManager([
|
|
'basePath' => $assetDir,
|
|
'baseUrl' => '/assets',
|
|
]);
|
|
}
|
|
}
|