|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Liip\MonitorBundle\Tests\Helper; |
|
4
|
|
|
|
|
5
|
|
|
use Liip\MonitorBundle\Helper\PathHelper; |
|
6
|
|
|
|
|
7
|
|
|
class PathHelperTest extends \PHPUnit_Framework_TestCase |
|
8
|
|
|
{ |
|
9
|
|
|
private $container = null; |
|
10
|
|
|
|
|
11
|
|
|
public function testGetRoutesJs() |
|
12
|
|
|
{ |
|
13
|
|
|
$testedClass = $this->getNewTestedClass(); |
|
14
|
|
|
$this->assertContains('api.test = "route_test";', $testedClass->getRoutesJs(array('test' => array()))); |
|
15
|
|
|
} |
|
16
|
|
|
|
|
17
|
|
|
public function testGetScriptTags() |
|
18
|
|
|
{ |
|
19
|
|
|
$testedClass = $this->getNewTestedClass(); |
|
20
|
|
|
$this->assertContains('<script type="text/javascript" charset="utf-8" src="url_path"></script>', $testedClass->getScriptTags(array('path'))); |
|
21
|
|
|
} |
|
22
|
|
|
|
|
23
|
|
|
public function testGetStyleTags() |
|
24
|
|
|
{ |
|
25
|
|
|
$testedClass = $this->getNewTestedClass(); |
|
26
|
|
|
$this->assertContains('<link rel="stylesheet" href="url_path" type="text/css">', $testedClass->getStyleTags(array('path'))); |
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
|
|
private function getContainerSf3Mock() |
|
30
|
|
|
{ |
|
31
|
|
|
$routerMock = $this->getRouterMock(); |
|
32
|
|
|
$assetHelperMock = $this->getAssetHelperMock(); |
|
33
|
|
|
$container = $this->getMock('Symfony\Component\DependencyInjection\ContainerInterface'); |
|
34
|
|
|
$container |
|
35
|
|
|
->expects($this->any()) |
|
36
|
|
|
->method('get') |
|
37
|
|
|
->will($this->returnCallback(function ($param) use ($routerMock, $assetHelperMock) { |
|
38
|
|
|
if ($param == 'router') { |
|
39
|
|
|
return $routerMock; |
|
40
|
|
|
} elseif ($param == 'assets.packages') { |
|
41
|
|
|
return $assetHelperMock; |
|
42
|
|
|
} |
|
43
|
|
|
throw new \Exception(); |
|
44
|
|
|
})); |
|
45
|
|
|
|
|
46
|
|
|
$container |
|
47
|
|
|
->expects($this->any()) |
|
48
|
|
|
->method('has') |
|
49
|
|
|
->with($this->equalTo('templating.helper.assets')) |
|
50
|
|
|
->willReturn(false); |
|
51
|
|
|
|
|
52
|
|
|
return $container; |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
private function getContainerSf2Mock() |
|
56
|
|
|
{ |
|
57
|
|
|
$routerMock = $this->getRouterMock(); |
|
58
|
|
|
$assetHelperMock = $this->getAssetHelperMock(); |
|
59
|
|
|
$container = $this->getMock('Symfony\Component\DependencyInjection\ContainerInterface'); |
|
60
|
|
|
$container |
|
61
|
|
|
->expects($this->any()) |
|
62
|
|
|
->method('get') |
|
63
|
|
|
->will($this->returnCallback(function ($param) use ($routerMock, $assetHelperMock) { |
|
64
|
|
|
if ($param == 'router') { |
|
65
|
|
|
return $routerMock; |
|
66
|
|
|
} elseif ($param == 'templating.helper.assets') { |
|
67
|
|
|
return $assetHelperMock; |
|
68
|
|
|
} |
|
69
|
|
|
throw new \Exception(); |
|
70
|
|
|
})); |
|
71
|
|
|
|
|
72
|
|
|
$container |
|
73
|
|
|
->expects($this->any()) |
|
74
|
|
|
->method('has') |
|
75
|
|
|
->with($this->equalTo('templating.helper.assets')) |
|
76
|
|
|
->willReturn(true); |
|
77
|
|
|
|
|
78
|
|
|
return $container; |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
private function getContainerMock() |
|
82
|
|
|
{ |
|
83
|
|
|
$symfony_version = \Symfony\Component\HttpKernel\Kernel::VERSION; |
|
84
|
|
|
if (version_compare($symfony_version, '3.0.0') === -1) { |
|
85
|
|
|
$container = $this->getContainerSf2Mock(); |
|
86
|
|
|
} else { |
|
87
|
|
|
$container = $this->getContainerSf3Mock(); |
|
88
|
|
|
} |
|
89
|
|
|
|
|
90
|
|
|
return $container; |
|
91
|
|
|
} |
|
92
|
|
|
|
|
93
|
|
|
private function getRouterMock() |
|
94
|
|
|
{ |
|
95
|
|
|
$router = $this->getMock('Symfony\Component\Routing\Generator\UrlGeneratorInterface'); |
|
96
|
|
|
$router |
|
97
|
|
|
->expects($this->any()) |
|
98
|
|
|
->method('generate') |
|
99
|
|
|
->will($this->returnCallback(function ($arg) { return 'route_'.$arg; })); |
|
100
|
|
|
|
|
101
|
|
|
return $router; |
|
102
|
|
|
} |
|
103
|
|
|
|
|
104
|
|
|
private function getAssetHelperMock() |
|
105
|
|
|
{ |
|
106
|
|
|
if (class_exists('Symfony\Bundle\FrameworkBundle\Templating\Helper\AssetsHelper')) { |
|
107
|
|
|
$helper = $this->getMockBuilder('Symfony\Bundle\FrameworkBundle\Templating\Helper\AssetsHelper') |
|
108
|
|
|
->disableOriginalConstructor() |
|
109
|
|
|
->getMock(); |
|
110
|
|
|
} else { |
|
111
|
|
|
$helper = $this->getMockBuilder('Symfony\Component\Templating\Helper\AssetsHelper') |
|
112
|
|
|
->disableOriginalConstructor() |
|
113
|
|
|
->getMock(); |
|
114
|
|
|
} |
|
115
|
|
|
|
|
116
|
|
|
$helper |
|
117
|
|
|
->method('getUrl') |
|
118
|
|
|
->will($this->returnCallback(function ($arg) { return 'url_'.$arg; })); |
|
119
|
|
|
|
|
120
|
|
|
return $helper; |
|
121
|
|
|
} |
|
122
|
|
|
|
|
123
|
|
|
public function getNewTestedClass() |
|
124
|
|
|
{ |
|
125
|
|
|
$symfony_version = \Symfony\Component\HttpKernel\Kernel::VERSION; |
|
126
|
|
|
|
|
127
|
|
|
return new PathHelper($this->container, $symfony_version); |
|
128
|
|
|
} |
|
129
|
|
|
|
|
130
|
|
|
public function setUp() |
|
131
|
|
|
{ |
|
132
|
|
|
$this->container = $this->getContainerMock(); |
|
133
|
|
|
} |
|
134
|
|
|
} |
|
135
|
|
|
|