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
|
<?php
namespace Illuminate\Tests\View;
use Illuminate\View\ComponentAttributeBag;
use PHPUnit\Framework\TestCase;
class ViewComponentAttributeBagTest extends TestCase
{
public function testAttributeRetrieval()
{
$bag = new ComponentAttributeBag(['class' => 'font-bold', 'name' => 'test']);
$this->assertSame('class="font-bold"', (string) $bag->whereStartsWith('class'));
$this->assertSame('font-bold', (string) $bag->whereStartsWith('class')->first());
$this->assertSame('name="test"', (string) $bag->whereDoesntStartWith('class'));
$this->assertSame('test', (string) $bag->whereDoesntStartWith('class')->first());
$this->assertSame('class="mt-4 font-bold" name="test"', (string) $bag->merge(['class' => 'mt-4']));
$this->assertSame('class="mt-4 font-bold" name="test"', (string) $bag->merge(['class' => 'mt-4', 'name' => 'foo']));
$this->assertSame('class="mt-4 font-bold" id="bar" name="test"', (string) $bag->merge(['class' => 'mt-4', 'id' => 'bar']));
$this->assertSame('class="mt-4 font-bold" name="test"', (string) $bag(['class' => 'mt-4']));
$this->assertSame('class="mt-4 font-bold"', (string) $bag->only('class')->merge(['class' => 'mt-4']));
$this->assertSame('name="test" class="font-bold"', (string) $bag->merge(['name' => 'default']));
$this->assertSame('class="font-bold" name="test"', (string) $bag->merge([]));
$this->assertSame('class="mt-4 font-bold"', (string) $bag->merge(['class' => 'mt-4'])->only('class'));
$this->assertSame('class="mt-4 font-bold"', (string) $bag->only('class')(['class' => 'mt-4']));
$this->assertSame('font-bold', $bag->get('class'));
$this->assertSame('bar', $bag->get('foo', 'bar'));
$this->assertSame('font-bold', $bag['class']);
$this->assertSame('class="mt-4 font-bold" name="test"', (string) $bag->class('mt-4'));
$this->assertSame('class="mt-4 font-bold" name="test"', (string) $bag->class(['mt-4']));
$this->assertSame('class="mt-4 ml-2 font-bold" name="test"', (string) $bag->class(['mt-4', 'ml-2' => true, 'mr-2' => false]));
$bag = new ComponentAttributeBag([]);
$this->assertSame('class="mt-4"', (string) $bag->merge(['class' => 'mt-4']));
$bag = new ComponentAttributeBag([
'test-string' => 'ok',
'test-null' => null,
'test-false' => false,
'test-true' => true,
'test-0' => 0,
'test-0-string' => '0',
'test-empty-string' => '',
]);
$this->assertSame('test-string="ok" test-true="test-true" test-0="0" test-0-string="0" test-empty-string=""', (string) $bag);
$this->assertSame('test-string="ok" test-true="test-true" test-0="0" test-0-string="0" test-empty-string=""', (string) $bag->merge());
$bag = (new ComponentAttributeBag)
->merge([
'test-escaped' => '<tag attr="attr">',
]);
$this->assertSame('test-escaped="<tag attr="attr">"', (string) $bag);
$bag = (new ComponentAttributeBag)
->merge([
'test-string' => 'ok',
'test-null' => null,
'test-false' => false,
'test-true' => true,
'test-0' => 0,
'test-0-string' => '0',
'test-empty-string' => '',
]);
$this->assertSame('test-string="ok" test-true="test-true" test-0="0" test-0-string="0" test-empty-string=""', (string) $bag);
}
}
|