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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
<?php
namespace Illuminate\Tests\View\Blade;
use Illuminate\Contracts\View\ViewCompilationException;
class BladeForeachStatementsTest extends AbstractBladeTestCase
{
public function testForeachStatementsAreCompiled()
{
$string = '@foreach ($this->getUsers() as $user)
test
@endforeach';
$expected = '<?php $__currentLoopData = $this->getUsers(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
test
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testForeachStatementsAreCompileWithUppercaseSyntax()
{
$string = '@foreach ($this->getUsers() AS $user)
test
@endforeach';
$expected = '<?php $__currentLoopData = $this->getUsers(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
test
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testForeachStatementsAreCompileWithMultipleLine()
{
$string = '@foreach ([
foo,
bar,
] as $label)
test
@endforeach';
$expected = '<?php $__currentLoopData = [
foo,
bar,
]; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $label): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
test
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testNestedForeachStatementsAreCompiled()
{
$string = '@foreach ($this->getUsers() as $user)
user info
@foreach ($user->tags as $tag)
tag info
@endforeach
@endforeach';
$expected = '<?php $__currentLoopData = $this->getUsers(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
user info
<?php $__currentLoopData = $user->tags; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $tag): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
tag info
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testLoopContentHolderIsExtractedFromForeachStatements()
{
$string = '@foreach ($some_uSers1 as $user)';
$expected = '<?php $__currentLoopData = $some_uSers1; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
$string = '@foreach ($users->get() as $user)';
$expected = '<?php $__currentLoopData = $users->get(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
$string = '@foreach (range(1, 4) as $user)';
$expected = '<?php $__currentLoopData = range(1, 4); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
$string = '@foreach ( $users as $user)';
$expected = '<?php $__currentLoopData = $users; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
$string = '@foreach ($tasks as $task)';
$expected = '<?php $__currentLoopData = $tasks; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $task): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
$string = "@foreach(resolve('App\\\\DataProviders\\\\'.\$provider)->data() as \$key => \$value)
<input {{ \$foo ? 'bar': 'baz' }}>
@endforeach";
$expected = "<?php \$__currentLoopData = resolve('App\\\\DataProviders\\\\'.\$provider)->data(); \$__env->addLoop(\$__currentLoopData); foreach(\$__currentLoopData as \$key => \$value): \$__env->incrementLoopIndices(); \$loop = \$__env->getLastLoop(); ?>
<input <?php echo e(\$foo ? 'bar': 'baz'); ?>>
<?php endforeach; \$__env->popLoop(); \$loop = \$__env->getLastLoop(); ?>";
$this->assertEquals($expected, $this->compiler->compileString($string));
}
/**
* @dataProvider invalidForeachStatementsDataProvider
*/
public function testForeachStatementsThrowHumanizedMessageWhenInvalidStatement($initialStatement)
{
$this->expectException(ViewCompilationException::class);
$this->expectExceptionMessage('Malformed @foreach statement.');
$string = "$initialStatement
test
@endforeach";
$this->compiler->compileString($string);
}
public static function invalidForeachStatementsDataProvider()
{
return [
['@foreach'],
['@foreach()'],
['@foreach ()'],
['@foreach($test)'],
['@foreach($test as)'],
['@foreach(as)'],
['@foreach ( as )'],
];
}
}
|