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
|
<?php
namespace Illuminate\Tests\Support;
use BadMethodCallException;
use Illuminate\Support\Traits\Macroable;
use PHPUnit\Framework\TestCase;
class SupportMacroableTest extends TestCase
{
private $macroable;
protected function setUp(): void
{
$this->macroable = $this->createObjectForTrait();
}
private function createObjectForTrait()
{
return new EmptyMacroable;
}
public function testRegisterMacro()
{
$macroable = $this->macroable;
$macroable::macro(__CLASS__, function () {
return 'Taylor';
});
$this->assertSame('Taylor', $macroable::{__CLASS__}());
}
public function testHasMacro()
{
$macroable = $this->macroable;
$macroable::macro('foo', function () {
return 'Taylor';
});
$this->assertTrue($macroable::hasMacro('foo'));
$this->assertFalse($macroable::hasMacro('bar'));
}
public function testRegisterMacroAndCallWithoutStatic()
{
$macroable = $this->macroable;
$macroable::macro(__CLASS__, function () {
return 'Taylor';
});
$this->assertSame('Taylor', $macroable->{__CLASS__}());
}
public function testWhenCallingMacroClosureIsBoundToObject()
{
TestMacroable::macro('tryInstance', function () {
return $this->protectedVariable;
});
TestMacroable::macro('tryStatic', function () {
return static::getProtectedStatic();
});
$instance = new TestMacroable;
$result = $instance->tryInstance();
$this->assertSame('instance', $result);
$result = TestMacroable::tryStatic();
$this->assertSame('static', $result);
}
public function testClassBasedMacros()
{
TestMacroable::mixin(new TestMixin);
$instance = new TestMacroable;
$this->assertSame('instance-Adam', $instance->methodOne('Adam'));
}
public function testClassBasedMacrosNoReplace()
{
TestMacroable::macro('methodThree', function () {
return 'bar';
});
TestMacroable::mixin(new TestMixin, false);
$instance = new TestMacroable;
$this->assertSame('bar', $instance->methodThree());
TestMacroable::mixin(new TestMixin);
$this->assertSame('foo', $instance->methodThree());
}
public function testFlushMacros()
{
TestMacroable::macro('flushMethod', function () {
return 'flushMethod';
});
$instance = new TestMacroable;
$this->assertSame('flushMethod', $instance->flushMethod());
TestMacroable::flushMacros();
$this->expectException(BadMethodCallException::class);
$instance->flushMethod();
}
public function testFlushMacrosStatic()
{
TestMacroable::macro('flushMethod', function () {
return 'flushMethod';
});
$instance = new TestMacroable;
$this->assertSame('flushMethod', $instance::flushMethod());
TestMacroable::flushMacros();
$this->expectException(BadMethodCallException::class);
$instance::flushMethod();
}
public function testMacroWithArguments()
{
$this->macroable::macro('concatenate', function ($arg1, $arg2) {
return $arg1.' '.$arg2;
});
$result = $this->macroable::concatenate('Hello', 'World');
$this->assertSame('Hello World', $result);
}
public function testMacroWithDefaultArguments()
{
$this->macroable::macro('greet', function ($name = 'Guest') {
return 'Hello, '.$name;
});
$this->assertSame('Hello, Guest', $this->macroable::greet());
$this->assertSame('Hello, Saleh', $this->macroable::greet('Saleh'));
}
public function testCallingUndefinedMacroThrowsException()
{
$this->expectException(BadMethodCallException::class);
$this->macroable::nonExistentMacro();
}
public function testMethodConflictDoesNotThrowException()
{
$this->macroable::macro('existingMethod', function () {
return 'oldMethod';
});
// Replacing existing macro.
$this->macroable::macro('existingMethod', function () {
return 'newMethod';
});
$this->assertSame('newMethod', $this->macroable::existingMethod());
}
}
class EmptyMacroable
{
use Macroable;
}
class TestMacroable
{
use Macroable;
protected $protectedVariable = 'instance';
protected static function getProtectedStatic()
{
return 'static';
}
}
class TestMixin
{
public function methodOne()
{
return function ($value) {
return $this->methodTwo($value);
};
}
protected function methodTwo()
{
return function ($value) {
return $this->protectedVariable.'-'.$value;
};
}
protected function methodThree()
{
return function () {
return 'foo';
};
}
}
|