1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
<?php
namespace Illuminate\Tests\View\Blade;
class BladeEchoTest extends AbstractBladeTestCase
{
public function testEchosAreCompiled()
{
$this->assertSame('<?php echo $name; ?>', $this->compiler->compileString('{!!$name!!}'));
$this->assertSame('<?php echo $name; ?>', $this->compiler->compileString('{!! $name !!}'));
$this->assertSame('<?php echo $name; ?>', $this->compiler->compileString('{!!
$name
!!}'));
$this->assertSame('<?php echo e($name); ?>', $this->compiler->compileString('{{{$name}}}'));
$this->assertSame('<?php echo e($name); ?>', $this->compiler->compileString('{{$name}}'));
$this->assertSame('<?php echo e($name); ?>', $this->compiler->compileString('{{ $name }}'));
$this->assertSame('<?php echo e($name); ?>', $this->compiler->compileString('{{
$name
}}'));
$this->assertSame("<?php echo e(\$name); ?>\n\n", $this->compiler->compileString("{{ \$name }}\n"));
$this->assertSame("<?php echo e(\$name); ?>\r\n\r\n", $this->compiler->compileString("{{ \$name }}\r\n"));
$this->assertSame("<?php echo e(\$name); ?>\n\n", $this->compiler->compileString("{{ \$name }}\n"));
$this->assertSame("<?php echo e(\$name); ?>\r\n\r\n", $this->compiler->compileString("{{ \$name }}\r\n"));
$this->assertSame('<?php echo e("Hello world or foo"); ?>',
$this->compiler->compileString('{{ "Hello world or foo" }}'));
$this->assertSame('<?php echo e("Hello world or foo"); ?>',
$this->compiler->compileString('{{"Hello world or foo"}}'));
$this->assertSame('<?php echo e($foo + $or + $baz); ?>', $this->compiler->compileString('{{$foo + $or + $baz}}'));
$this->assertSame('<?php echo e("Hello world or foo"); ?>', $this->compiler->compileString('{{
"Hello world or foo"
}}'));
$this->assertSame('<?php echo e(\'Hello world or foo\'); ?>',
$this->compiler->compileString('{{ \'Hello world or foo\' }}'));
$this->assertSame('<?php echo e(\'Hello world or foo\'); ?>',
$this->compiler->compileString('{{\'Hello world or foo\'}}'));
$this->assertSame('<?php echo e(\'Hello world or foo\'); ?>', $this->compiler->compileString('{{
\'Hello world or foo\'
}}'));
$this->assertSame('<?php echo e(myfunc(\'foo or bar\')); ?>',
$this->compiler->compileString('{{ myfunc(\'foo or bar\') }}'));
$this->assertSame('<?php echo e(myfunc("foo or bar")); ?>',
$this->compiler->compileString('{{ myfunc("foo or bar") }}'));
$this->assertSame('<?php echo e(myfunc("$name or \'foo\'")); ?>',
$this->compiler->compileString('{{ myfunc("$name or \'foo\'") }}'));
}
public function testEscapedWithAtEchosAreCompiled()
{
$this->assertSame('{{$name}}', $this->compiler->compileString('@{{$name}}'));
$this->assertSame('{{ $name }}', $this->compiler->compileString('@{{ $name }}'));
$this->assertSame('{{
$name
}}',
$this->compiler->compileString('@{{
$name
}}'));
$this->assertSame('{{ $name }}
',
$this->compiler->compileString('@{{ $name }}
'));
}
}
|