/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
tests/View/Blade/BladeComponentsTest.php
85 строк
4 KB
Jason McCreary
[13.x] Mockery cleanup (#61117)
10 авг 2026, 20:23
Не верифицирован
10 авг 2026, 20:23
2ee40ee
Код
Авторство
О чём код?
<?php namespace Illuminate\Tests\View\Blade; use Illuminate\View\Component; use Illuminate\View\ComponentAttributeBag; use Mockery; class BladeComponentsTest extends AbstractBladeTestCase { public function testComponentsAreCompiled() { $this->assertSame('<?php $__env->startComponent(\'foo\', ["foo" => "bar"]); ?>', $this->compiler->compileString('@component(\'foo\', ["foo" => "bar"])')); $this->assertSame('<?php $__env->startComponent(\'foo\'); ?>', $this->compiler->compileString('@component(\'foo\')')); } public function testClassComponentsAreCompiled() { $this->assertSame(str_replace("\r\n", "\n", '<?php if (isset($component)) { $__componentOriginal2dda3d2f2f9b76bd400bf03f0b84e87f = $component; } ?> <?php if (isset($attributes)) { $__attributesOriginal2dda3d2f2f9b76bd400bf03f0b84e87f = $attributes; } ?> <?php $component = Illuminate\Tests\View\Blade\ComponentStub::class::resolve(["foo" => "bar"] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?> <?php $component->withName(\'test\'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startComponent($component->resolveView(), $component->data()); ?>'), $this->compiler->compileString('@component(\'Illuminate\Tests\View\Blade\ComponentStub::class\', \'test\', ["foo" => "bar"])')); } public function testEndComponentsAreCompiled() { $this->compiler::newComponentHash('foo'); $this->assertSame('<?php echo $__env->renderComponent(); ?>', $this->compiler->compileString('@endcomponent')); } public function testEndComponentClassesAreCompiled() { $this->compiler::newComponentHash('foo'); $this->assertSame(str_replace("\r\n", "\n", '<?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if (isset($__attributesOriginal79aef92e83454121ab6e5f64077e7d8a)): ?> <?php $attributes = $__attributesOriginal79aef92e83454121ab6e5f64077e7d8a; ?> <?php unset($__attributesOriginal79aef92e83454121ab6e5f64077e7d8a); ?> <?php endif; ?> <?php if (isset($__componentOriginal79aef92e83454121ab6e5f64077e7d8a)): ?> <?php $component = $__componentOriginal79aef92e83454121ab6e5f64077e7d8a; ?> <?php unset($__componentOriginal79aef92e83454121ab6e5f64077e7d8a); ?> <?php endif; ?>'), $this->compiler->compileString('@endcomponentClass')); } public function testSlotsAreCompiled() { $this->assertSame('<?php $__env->slot(\'foo\', null, ["foo" => "bar"]); ?>', $this->compiler->compileString('@slot(\'foo\', null, ["foo" => "bar"])')); $this->assertSame('<?php $__env->slot(\'foo\'); ?>', $this->compiler->compileString('@slot(\'foo\')')); } public function testEndSlotsAreCompiled() { $this->assertSame('<?php $__env->endSlot(); ?>', $this->compiler->compileString('@endslot')); } public function testPropsAreExtractedFromParentAttributesCorrectlyForClassComponents() { $attributes = new ComponentAttributeBag(['foo' => 'baz', 'other' => 'ok']); $component = Mockery::mock(Component::class); $component->shouldReceive('withName', 'test'); $component->expects('shouldRender')->andReturn(false); Component::resolveComponentsUsing(fn () => $component); $template = $this->compiler->compileString('@component(\'Illuminate\Tests\View\Blade\ComponentStub::class\', \'test\', ["foo" => "bar"])'); ob_start(); eval(" ?> $template <?php endif; "); ob_get_clean(); } } class ComponentStub extends Component { public function render() { return ''; } }