forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSupportFacadeTest.php
More file actions
executable file
·82 lines (59 loc) · 2.38 KB
/
SupportFacadeTest.php
File metadata and controls
executable file
·82 lines (59 loc) · 2.38 KB
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
<?php
use Mockery as m;
class SupportFacadeTest extends PHPUnit_Framework_TestCase {
public function setUp()
{
Illuminate\Support\Facades\Facade::clearResolvedInstances();
FacadeStub::setFacadeApplication(null);
}
public function tearDown()
{
m::close();
}
public function testFacadeCallsUnderlyingApplication()
{
$app = new ApplicationStub;
$app->setAttributes(array('foo' => $mock = m::mock('StdClass')));
$mock->shouldReceive('bar')->once()->andReturn('baz');
FacadeStub::setFacadeApplication($app);
$this->assertEquals('baz', FacadeStub::bar());
}
public function testShouldReceiveReturnsAMockeryMock()
{
$app = new ApplicationStub;
$app->setAttributes(array('foo' => new StdClass));
FacadeStub::setFacadeApplication($app);
$this->assertInstanceOf('Mockery\MockInterface', $mock = FacadeStub::shouldReceive('foo')->once()->with('bar')->andReturn('baz')->getMock());
$this->assertEquals('baz', $app['foo']->foo('bar'));
}
public function testShouldReceiveCanBeCalledTwice()
{
$app = new ApplicationStub;
$app->setAttributes(array('foo' => new StdClass));
FacadeStub::setFacadeApplication($app);
$this->assertInstanceOf('Mockery\MockInterface', $mock = FacadeStub::shouldReceive('foo')->once()->with('bar')->andReturn('baz')->getMock());
$this->assertInstanceOf('Mockery\MockInterface', $mock = FacadeStub::shouldReceive('foo2')->once()->with('bar2')->andReturn('baz2')->getMock());
$this->assertEquals('baz', $app['foo']->foo('bar'));
$this->assertEquals('baz2', $app['foo']->foo2('bar2'));
}
public function testCanBeMockedWithoutUnderlyingInstance()
{
FacadeStub::shouldReceive('foo')->once()->andReturn('bar');
$this->assertEquals('bar', FacadeStub::foo());
}
}
class FacadeStub extends Illuminate\Support\Facades\Facade {
protected static function getFacadeAccessor()
{
return 'foo';
}
}
class ApplicationStub implements ArrayAccess {
protected $attributes = array();
public function setAttributes($attributes) { $this->attributes = $attributes; }
public function instance($key, $instance) { $this->attributes[$key] = $instance; }
public function offsetExists($offset) { return isset($this->attributes[$offset]); }
public function offsetGet($key) { return $this->attributes[$key]; }
public function offsetSet($key, $value) { $this->attributes[$key] = $value; }
public function offsetUnset($key) { unset($this->attributes[$key]); }
}