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 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
|
<?php
namespace Illuminate\Tests\View;
use Closure;
use Illuminate\Config\Repository as Config;
use Illuminate\Container\Container;
use Illuminate\Contracts\Container\BindingResolutionException;
use Illuminate\Contracts\Support\Htmlable;
use Illuminate\Contracts\View\Factory as FactoryContract;
use Illuminate\Support\Facades\Facade;
use Illuminate\Support\HtmlString;
use Illuminate\View\Component;
use Illuminate\View\ComponentSlot;
use Illuminate\View\Factory;
use Illuminate\View\View;
use Mockery as m;
use PHPUnit\Framework\TestCase;
class ComponentTest extends TestCase
{
protected $viewFactory;
protected $config;
protected function setUp(): void
{
parent::setUp();
$this->config = m::mock(Config::class);
$container = new Container;
$this->viewFactory = m::mock(Factory::class);
$container->instance('view', $this->viewFactory);
$container->alias('view', FactoryContract::class);
$container->instance('config', $this->config);
Container::setInstance($container);
Facade::setFacadeApplication($container);
}
protected function tearDown(): void
{
m::close();
Facade::clearResolvedInstances();
Facade::setFacadeApplication(null);
Container::setInstance(null);
Component::flushCache();
Component::forgetFactory();
parent::tearDown();
}
public function testInlineViewsGetCreated()
{
$this->config->shouldReceive('get')->once()->with('view.compiled')->andReturn('/tmp');
$this->viewFactory->shouldReceive('exists')->once()->andReturn(false);
$this->viewFactory->shouldReceive('addNamespace')->once()->with('__components', '/tmp');
$component = new TestInlineViewComponent;
$this->assertSame('__components::57b7a54afa0eb51fd9b88eec031c9e9e', $component->resolveView());
}
public function testRegularViewsGetReturnedUsingViewHelper()
{
$view = m::mock(View::class);
$this->viewFactory->shouldReceive('make')->once()->with('alert', [], [])->andReturn($view);
$component = new TestRegularViewComponentUsingViewHelper;
$this->assertSame($view, $component->resolveView());
}
public function testRenderingStringClosureFromComponent()
{
$this->config->shouldReceive('get')->once()->with('view.compiled')->andReturn('/tmp');
$this->viewFactory->shouldReceive('exists')->once()->andReturn(false);
$this->viewFactory->shouldReceive('addNamespace')->once()->with('__components', '/tmp');
$component = new class() extends Component
{
protected $title;
public function __construct($title = 'World')
{
$this->title = $title;
}
public function render()
{
return function (array $data) {
return "<p>Hello {$this->title}</p>";
};
}
};
$closure = $component->resolveView();
$viewPath = $closure([]);
$this->viewFactory->shouldReceive('make')->with($viewPath, [], [])->andReturn('<p>Hello World</p>');
$this->assertInstanceOf(Closure::class, $closure);
$this->assertSame('__components::9cc08f5001b343c093ee1a396da820dc', $viewPath);
$hash = str_replace('__components::', '', $viewPath);
$this->assertSame('<p>Hello World</p>', file_get_contents("/tmp/{$hash}.blade.php"));
}
public function testRegularViewsGetReturnedUsingViewMethod()
{
$view = m::mock(View::class);
$this->viewFactory->shouldReceive('make')->once()->with('alert', [], [])->andReturn($view);
$component = new TestRegularViewComponentUsingViewMethod;
$this->assertSame($view, $component->resolveView());
}
public function testRegularViewNamesGetReturned()
{
$this->viewFactory->shouldReceive('exists')->once()->andReturn(true);
$this->viewFactory->shouldReceive('addNamespace')->never();
$component = new TestRegularViewNameViewComponent;
$this->assertSame('alert', $component->resolveView());
}
public function testHtmlablesGetReturned()
{
$component = new TestHtmlableReturningViewComponent;
$view = $component->resolveView();
$this->assertInstanceOf(Htmlable::class, $view);
$this->assertSame('<p>Hello foo</p>', $view->toHtml());
}
public function testResolveWithUnresolvableDependency()
{
$this->expectException(BindingResolutionException::class);
$this->expectExceptionMessage('Unresolvable dependency resolving');
TestInlineViewComponentWhereRenderDependsOnProps::resolve([]);
}
public function testResolveDependenciesWithoutContainer()
{
$component = TestInlineViewComponentWhereRenderDependsOnProps::resolve(['content' => 'foo']);
$this->assertSame('foo', $component->render());
$component = new class extends Component
{
public $content;
public function __construct($a = null, $b = null)
{
$this->content = $a.$b;
}
public function render()
{
return $this->content;
}
};
$component = $component::resolve(['a' => 'a', 'b' => 'b']);
$component = $component::resolve(['b' => 'b', 'a' => 'a']);
$this->assertSame('ab', $component->render());
}
public function testResolveDependenciesWithContainerIfNecessary()
{
$component = TestInlineViewComponentWithContainerDependencies::resolve([]);
$this->assertSame($this->viewFactory, $component->dependency);
$component = TestInlineViewComponentWithContainerDependenciesAndProps::resolve(['content' => 'foo']);
$this->assertSame($this->viewFactory, $component->dependency);
$this->assertSame('foo', $component->render());
}
public function testResolveComponentsUsing()
{
$component = new TestInlineViewComponent;
Component::resolveComponentsUsing(fn () => $component);
$this->assertSame($component, Component::resolve('bar'));
}
public function testBladeViewCacheWithRegularViewNameViewComponent()
{
$component = new TestRegularViewNameViewComponent;
$this->viewFactory->shouldReceive('exists')->twice()->andReturn(true);
$this->assertSame('alert', $component->resolveView());
$this->assertSame('alert', $component->resolveView());
$this->assertSame('alert', $component->resolveView());
$this->assertSame('alert', $component->resolveView());
$cache = (fn () => $component::$bladeViewCache)->call($component);
$this->assertSame([$component::class.'::alert' => 'alert'], $cache);
$component::flushCache();
$cache = (fn () => $component::$bladeViewCache)->call($component);
$this->assertSame([], $cache);
$this->assertSame('alert', $component->resolveView());
$this->assertSame('alert', $component->resolveView());
$this->assertSame('alert', $component->resolveView());
$this->assertSame('alert', $component->resolveView());
}
public function testBladeViewCacheWithInlineViewComponent()
{
$component = new TestInlineViewComponent;
$this->viewFactory->shouldReceive('exists')->twice()->andReturn(false);
$this->config->shouldReceive('get')->twice()->with('view.compiled')->andReturn('/tmp');
$this->viewFactory->shouldReceive('addNamespace')
->with('__components', '/tmp')
->twice();
$compiledViewName = '__components::57b7a54afa0eb51fd9b88eec031c9e9e';
$contents = '::Hello {{ $title }}';
$cacheKey = $component::class.$contents;
$this->assertSame($compiledViewName, $component->resolveView());
$this->assertSame($compiledViewName, $component->resolveView());
$this->assertSame($compiledViewName, $component->resolveView());
$this->assertSame($compiledViewName, $component->resolveView());
$cache = (fn () => $component::$bladeViewCache)->call($component);
$this->assertSame([$cacheKey => $compiledViewName], $cache);
$component::flushCache();
$cache = (fn () => $component::$bladeViewCache)->call($component);
$this->assertSame([], $cache);
$this->assertSame($compiledViewName, $component->resolveView());
$this->assertSame($compiledViewName, $component->resolveView());
$this->assertSame($compiledViewName, $component->resolveView());
$this->assertSame($compiledViewName, $component->resolveView());
}
public function testBladeViewCacheWithInlineViewComponentWhereRenderDependsOnProps()
{
$componentA = new TestInlineViewComponentWhereRenderDependsOnProps('A');
$componentB = new TestInlineViewComponentWhereRenderDependsOnProps('B');
$this->viewFactory->shouldReceive('exists')->twice()->andReturn(false);
$this->config->shouldReceive('get')->twice()->with('view.compiled')->andReturn('/tmp');
$this->viewFactory->shouldReceive('addNamespace')
->with('__components', '/tmp')
->twice();
$compiledViewNameA = '__components::9b0498cbe3839becd0d496e05c553485';
$compiledViewNameB = '__components::9d1b9bc4078a3e7274d3766ca02423f3';
$cacheAKey = $componentA::class.'::A';
$cacheBKey = $componentB::class.'::B';
$this->assertSame($compiledViewNameA, $componentA->resolveView());
$this->assertSame($compiledViewNameA, $componentA->resolveView());
$this->assertSame($compiledViewNameB, $componentB->resolveView());
$this->assertSame($compiledViewNameB, $componentB->resolveView());
$cacheA = (fn () => $componentA::$bladeViewCache)->call($componentA);
$cacheB = (fn () => $componentB::$bladeViewCache)->call($componentB);
$this->assertSame($cacheA, $cacheB);
$this->assertSame([
$cacheAKey => $compiledViewNameA,
$cacheBKey => $compiledViewNameB,
], $cacheA);
$componentA::flushCache();
$cacheA = (fn () => $componentA::$bladeViewCache)->call($componentA);
$cacheB = (fn () => $componentB::$bladeViewCache)->call($componentB);
$this->assertSame($cacheA, $cacheB);
$this->assertSame([], $cacheA);
}
public function testFactoryGetsSharedBetweenComponents()
{
$regular = new TestRegularViewNameViewComponent;
$inline = new TestInlineViewComponent;
$getFactory = fn ($component) => (fn () => $component->factory())->call($component);
$this->assertSame($this->viewFactory, $getFactory($regular));
Container::getInstance()->instance('view', 'foo');
$this->assertSame($this->viewFactory, $getFactory($inline));
Component::forgetFactory();
$this->assertNotSame($this->viewFactory, $getFactory($inline));
}
public function testComponentSlotIsEmpty()
{
$slot = new ComponentSlot();
$this->assertTrue((bool) $slot->isEmpty());
}
public function testComponentSlotSanitizedEmpty()
{
// default sanitizer should remove all html tags
$slot = new ComponentSlot('<!-- test -->');
$linebreakingSlot = new ComponentSlot("\n \t");
$moreComplexSlot = new ComponentSlot('<!--
<p>commented HTML</p>
<img border="0" src="" alt="">
-->');
$this->assertFalse((bool) $slot->hasActualContent());
$this->assertFalse((bool) $linebreakingSlot->hasActualContent('trim'));
$this->assertFalse((bool) $moreComplexSlot->hasActualContent());
}
public function testComponentSlotSanitizedNotEmpty()
{
// default sanitizer should remove all html tags
$slot = new ComponentSlot('<!-- test -->not empty');
$linebreakingSlot = new ComponentSlot("\ntest \t");
$moreComplexSlot = new ComponentSlot('before<!--
<p>commented HTML</p>
<img border="0" src="" alt="">
-->after');
$this->assertTrue((bool) $slot->hasActualContent());
$this->assertTrue((bool) $linebreakingSlot->hasActualContent('trim'));
$this->assertTrue((bool) $moreComplexSlot->hasActualContent());
}
public function testComponentSlotIsNotEmpty()
{
$slot = new ComponentSlot('test');
$anotherSlot = new ComponentSlot('test<!-- test -->');
$moreComplexSlot = new ComponentSlot('t<!--
<p>Look at this cool image:</p>
<img border="0" src="pic_trulli.jpg" alt="Trulli">
-->est');
$this->assertTrue((bool) $slot->hasActualContent());
$this->assertTrue((bool) $anotherSlot->hasActualContent());
$this->assertTrue((bool) $moreComplexSlot->hasActualContent());
}
}
class TestInlineViewComponent extends Component
{
public $title;
public function __construct($title = 'foo')
{
$this->title = $title;
}
public function render()
{
return 'Hello {{ $title }}';
}
}
class TestInlineViewComponentWithContainerDependencies extends Component
{
public $dependency;
public function __construct(FactoryContract $dependency)
{
$this->dependency = $dependency;
}
public function render()
{
return '';
}
}
class TestInlineViewComponentWithContainerDependenciesAndProps extends Component
{
public $content;
public $dependency;
public function __construct(FactoryContract $dependency, $content)
{
$this->content = $content;
$this->dependency = $dependency;
}
public function render()
{
return $this->content;
}
}
class TestInlineViewComponentWithoutDependencies extends Component
{
public function render()
{
return 'alert';
}
}
class TestInlineViewComponentWhereRenderDependsOnProps extends Component
{
public $content;
public function __construct($content)
{
$this->content = $content;
}
public function render()
{
return $this->content;
}
}
class TestRegularViewComponentUsingViewHelper extends Component
{
public $title;
public function __construct($title = 'foo')
{
$this->title = $title;
}
public function render()
{
return view('alert');
}
}
class TestRegularViewComponentUsingViewMethod extends Component
{
public $title;
public function __construct($title = 'foo')
{
$this->title = $title;
}
public function render()
{
return $this->view('alert');
}
}
class TestRegularViewNameViewComponent extends Component
{
public $title;
public function __construct($title = 'foo')
{
$this->title = $title;
}
public function render()
{
return 'alert';
}
}
class TestHtmlableReturningViewComponent extends Component
{
protected $title;
public function __construct($title = 'foo')
{
$this->title = $title;
}
public function render()
{
return new HtmlString("<p>Hello {$this->title}</p>");
}
}
|