| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
- namespace Illuminate\Tests\Support;
- use ArrayAccess;
- use Illuminate\Support\Facades\Facade;
- use Mockery as m;
- use Mockery\MockInterface;
- use PHPUnit\Framework\TestCase;
- use stdClass;
- class SupportFacadeTest extends TestCase
- {
- protected function setUp(): void
- {
- Facade::clearResolvedInstances();
- FacadeStub::setFacadeApplication(null);
- }
- protected function tearDown(): void
- {
- m::close();
- }
- public function testFacadeCallsUnderlyingApplication()
- {
- $app = new ApplicationStub;
- $app->setAttributes(['foo' => $mock = m::mock(stdClass::class)]);
- $mock->shouldReceive('bar')->once()->andReturn('baz');
- FacadeStub::setFacadeApplication($app);
- $this->assertSame('baz', FacadeStub::bar());
- }
- public function testShouldReceiveReturnsAMockeryMock()
- {
- $app = new ApplicationStub;
- $app->setAttributes(['foo' => new stdClass]);
- FacadeStub::setFacadeApplication($app);
- $this->assertInstanceOf(MockInterface::class, $mock = FacadeStub::shouldReceive('foo')->once()->with('bar')->andReturn('baz')->getMock());
- $this->assertSame('baz', $app['foo']->foo('bar'));
- }
- public function testSpyReturnsAMockerySpy()
- {
- $app = new ApplicationStub;
- $app->setAttributes(['foo' => new stdClass]);
- FacadeStub::setFacadeApplication($app);
- $this->assertInstanceOf(MockInterface::class, $spy = FacadeStub::spy());
- FacadeStub::foo();
- $spy->shouldHaveReceived('foo');
- }
- public function testShouldReceiveCanBeCalledTwice()
- {
- $app = new ApplicationStub;
- $app->setAttributes(['foo' => new stdClass]);
- FacadeStub::setFacadeApplication($app);
- $this->assertInstanceOf(MockInterface::class, $mock = FacadeStub::shouldReceive('foo')->once()->with('bar')->andReturn('baz')->getMock());
- $this->assertInstanceOf(MockInterface::class, $mock = FacadeStub::shouldReceive('foo2')->once()->with('bar2')->andReturn('baz2')->getMock());
- $this->assertSame('baz', $app['foo']->foo('bar'));
- $this->assertSame('baz2', $app['foo']->foo2('bar2'));
- }
- public function testCanBeMockedWithoutUnderlyingInstance()
- {
- FacadeStub::shouldReceive('foo')->once()->andReturn('bar');
- $this->assertSame('bar', FacadeStub::foo());
- }
- }
- class FacadeStub extends Facade
- {
- protected static function getFacadeAccessor()
- {
- return 'foo';
- }
- }
- class ApplicationStub implements ArrayAccess
- {
- protected $attributes = [];
- public function setAttributes($attributes)
- {
- $this->attributes = $attributes;
- }
- public function instance($key, $instance)
- {
- $this->attributes[$key] = $instance;
- }
- public function offsetExists($offset): bool
- {
- return isset($this->attributes[$offset]);
- }
- #[\ReturnTypeWillChange]
- public function offsetGet($key)
- {
- return $this->attributes[$key];
- }
- public function offsetSet($key, $value): void
- {
- $this->attributes[$key] = $value;
- }
- public function offsetUnset($key): void
- {
- unset($this->attributes[$key]);
- }
- }
|