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
|
<?php
namespace Illuminate\Tests\View;
use Illuminate\Config\Repository as Config;
use Illuminate\Container\Container;
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\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
{
$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);
parent::setUp();
}
protected function tearDown(): void
{
m::close();
Facade::clearResolvedInstances();
Facade::setFacadeApplication(null);
Container::setInstance(null);
}
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::c6327913fef3fca4518bcd7df1d0ff630758e241', $component->resolveView());
}
public function testRegularViewsGetReturned()
{
$view = m::mock(View::class);
$this->viewFactory->shouldReceive('make')->once()->with('alert', [], [])->andReturn($view);
$component = new TestRegularViewComponent;
$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());
}
}
class TestInlineViewComponent extends Component
{
public $title;
public function __construct($title = 'foo')
{
$this->title = $title;
}
public function render()
{
return 'Hello {{ $title }}';
}
}
class TestRegularViewComponent extends Component
{
public $title;
public function __construct($title = 'foo')
{
$this->title = $title;
}
public function render()
{
return 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>");
}
}
|