|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of the php-phantomjs. |
|
5
|
|
|
* |
|
6
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
7
|
|
|
* file that was distributed with this source code. |
|
8
|
|
|
*/ |
|
9
|
|
|
namespace JonnyW\PhantomJs\Tests\Unit\Procedure; |
|
10
|
|
|
|
|
11
|
|
|
use Twig_Environment; |
|
12
|
|
|
use Twig_Loader_String; |
|
13
|
|
|
use JonnyW\PhantomJs\Engine; |
|
14
|
|
|
use JonnyW\PhantomJs\Cache\FileCache; |
|
15
|
|
|
use JonnyW\PhantomJs\Cache\CacheInterface; |
|
16
|
|
|
use JonnyW\PhantomJs\Parser\JsonParser; |
|
17
|
|
|
use JonnyW\PhantomJs\Parser\ParserInterface; |
|
18
|
|
|
use JonnyW\PhantomJs\Template\TemplateRenderer; |
|
19
|
|
|
use JonnyW\PhantomJs\Template\TemplateRendererInterface; |
|
20
|
|
|
use JonnyW\PhantomJs\Procedure\Input; |
|
21
|
|
|
use JonnyW\PhantomJs\Procedure\Output; |
|
22
|
|
|
use JonnyW\PhantomJs\Procedure\Procedure; |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* PHP PhantomJs |
|
26
|
|
|
* |
|
27
|
|
|
* @author Jon Wenmoth <[email protected]> |
|
28
|
|
|
*/ |
|
29
|
|
|
class ProcedureTest extends \PHPUnit_Framework_TestCase |
|
30
|
|
|
{ |
|
31
|
|
|
|
|
32
|
|
|
/** +++++++++++++++++++++++++++++++++++ **/ |
|
33
|
|
|
/** ++++++++++++++ TESTS ++++++++++++++ **/ |
|
34
|
|
|
/** +++++++++++++++++++++++++++++++++++ **/ |
|
35
|
|
|
|
|
36
|
|
|
/** |
|
37
|
|
|
* Test procedure template can be |
|
38
|
|
|
* set in procedure |
|
39
|
|
|
* |
|
40
|
|
|
* @access public |
|
41
|
|
|
* @return void |
|
42
|
|
|
*/ |
|
43
|
|
|
public function testProcedureTemplateCanBeSetInProcedure() |
|
44
|
|
|
{ |
|
45
|
|
|
$template = 'PROCEDURE_TEMPLATE'; |
|
46
|
|
|
|
|
47
|
|
|
$engne = $this->getEngine(); |
|
48
|
|
|
$parser = $this->getParser(); |
|
49
|
|
|
$cache = $this->getCache(); |
|
50
|
|
|
$renderer = $this->getRenderer(); |
|
51
|
|
|
|
|
52
|
|
|
$procedure = $this->getProcedure($engne, $parser, $cache, $renderer); |
|
53
|
|
|
$procedure->setTemplate($template); |
|
54
|
|
|
|
|
55
|
|
|
$this->assertSame($procedure->getTemplate(), $template); |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
/** |
|
59
|
|
|
* Test procedure can be compiled. |
|
60
|
|
|
* |
|
61
|
|
|
* @access public |
|
62
|
|
|
* @return void |
|
63
|
|
|
*/ |
|
64
|
|
|
public function testProcedureCanBeCompiled() |
|
65
|
|
|
{ |
|
66
|
|
|
$template = 'TEST_{{ input.get("uncompiled") }}_PROCEDURE'; |
|
67
|
|
|
|
|
68
|
|
|
$engne = $this->getEngine(); |
|
69
|
|
|
$parser = $this->getParser(); |
|
70
|
|
|
$cache = $this->getCache(); |
|
71
|
|
|
$renderer = $this->getRenderer(); |
|
72
|
|
|
|
|
73
|
|
|
$input = $this->getInput(); |
|
74
|
|
|
$input->set('uncompiled', 'COMPILED'); |
|
75
|
|
|
|
|
76
|
|
|
$procedure = $this->getProcedure($engne, $parser, $cache, $renderer); |
|
77
|
|
|
$procedure->setTemplate($template); |
|
78
|
|
|
|
|
79
|
|
|
$this->assertSame('TEST_COMPILED_PROCEDURE', $procedure->compile($input)); |
|
80
|
|
|
} |
|
81
|
|
|
|
|
82
|
|
|
/** |
|
83
|
|
|
* Test not writable exception is thrown if procedure |
|
84
|
|
|
* script cannot be written to file |
|
85
|
|
|
* |
|
86
|
|
|
* @access public |
|
87
|
|
|
* @return void |
|
88
|
|
|
*/ |
|
89
|
|
|
public function testNotWritableExceptionIsThrownIfProcedureScriptCannotBeWrittenToFile() |
|
90
|
|
|
{ |
|
91
|
|
|
$this->setExpectedException('\JonnyW\PhantomJs\Exception\NotWritableException'); |
|
92
|
|
|
|
|
93
|
|
|
$engne = $this->getEngine(); |
|
94
|
|
|
$parser = $this->getParser(); |
|
95
|
|
|
$renderer = $this->getRenderer(); |
|
96
|
|
|
|
|
97
|
|
|
$cache = $this->getCache('/an/invalid/dir'); |
|
98
|
|
|
|
|
99
|
|
|
$input = $this->getInput(); |
|
100
|
|
|
$output = $this->getOutput(); |
|
101
|
|
|
|
|
102
|
|
|
$procedure = $this->getProcedure($engne, $parser, $cache, $renderer); |
|
103
|
|
|
$procedure->run($input, $output); |
|
104
|
|
|
} |
|
105
|
|
|
|
|
106
|
|
|
/** |
|
107
|
|
|
* Test procedure failed exception is thrown if procedure |
|
108
|
|
|
* cannot be run. |
|
109
|
|
|
* |
|
110
|
|
|
* @access public |
|
111
|
|
|
* @return void |
|
112
|
|
|
*/ |
|
113
|
|
|
public function testProcedureFailedExceptionIsThrownIfProcedureCannotBeRun() |
|
114
|
|
|
{ |
|
115
|
|
|
$this->setExpectedException('\JonnyW\PhantomJs\Exception\ProcedureFailedException'); |
|
116
|
|
|
|
|
117
|
|
|
$parser = $this->getParser(); |
|
118
|
|
|
$cache = $this->getCache(); |
|
119
|
|
|
$renderer = $this->getRenderer(); |
|
120
|
|
|
$input = $this->getInput(); |
|
121
|
|
|
$output = $this->getOutput(); |
|
122
|
|
|
|
|
123
|
|
|
$engne = $this->getEngine(); |
|
124
|
|
|
$engne->method('getCommand') |
|
|
|
|
|
|
125
|
|
|
->will($this->throwException(new \Exception())); |
|
126
|
|
|
|
|
127
|
|
|
$procedure = $this->getProcedure($engne, $parser, $cache, $renderer); |
|
128
|
|
|
$procedure->run($input, $output); |
|
129
|
|
|
} |
|
130
|
|
|
|
|
131
|
|
|
/** +++++++++++++++++++++++++++++++++++ **/ |
|
132
|
|
|
/** ++++++++++ TEST ENTITIES ++++++++++ **/ |
|
133
|
|
|
/** +++++++++++++++++++++++++++++++++++ **/ |
|
134
|
|
|
|
|
135
|
|
|
/** |
|
136
|
|
|
* Get procedure instance. |
|
137
|
|
|
* |
|
138
|
|
|
* @access protected |
|
139
|
|
|
* @param \JonnyW\PhantomJs\Engine $engine |
|
140
|
|
|
* @param \JonnyW\PhantomJs\Parser\ParserInterface $parser |
|
141
|
|
|
* @param \JonnyW\PhantomJs\Cache\CacheInterface $cacheHandler |
|
142
|
|
|
* @param \JonnyW\PhantomJs\Template\TemplateRendererInterface $renderer |
|
143
|
|
|
* @return \JonnyW\PhantomJs\Procedure\Procedure |
|
144
|
|
|
*/ |
|
145
|
|
|
protected function getProcedure(Engine $engine, ParserInterface $parser, CacheInterface $cacheHandler, TemplateRendererInterface $renderer) |
|
146
|
|
|
{ |
|
147
|
|
|
$procedure = new Procedure($engine, $parser, $cacheHandler, $renderer); |
|
148
|
|
|
|
|
149
|
|
|
return $procedure; |
|
150
|
|
|
} |
|
151
|
|
|
|
|
152
|
|
|
/** |
|
153
|
|
|
* Get parser. |
|
154
|
|
|
* |
|
155
|
|
|
* @access protected |
|
156
|
|
|
* @return \JonnyW\PhantomJs\Parser\JsonParser |
|
157
|
|
|
*/ |
|
158
|
|
|
protected function getParser() |
|
159
|
|
|
{ |
|
160
|
|
|
$parser = new JsonParser(); |
|
161
|
|
|
|
|
162
|
|
|
return $parser; |
|
163
|
|
|
} |
|
164
|
|
|
|
|
165
|
|
|
/** |
|
166
|
|
|
* Get cache. |
|
167
|
|
|
* |
|
168
|
|
|
* @access protected |
|
169
|
|
|
* @param string $cacheDir (default: '') |
|
170
|
|
|
* @param string $extension (default: 'proc') |
|
171
|
|
|
* @return \JonnyW\PhantomJs\Cache\FileCache |
|
172
|
|
|
*/ |
|
173
|
|
|
protected function getCache($cacheDir = '', $extension = 'proc') |
|
|
|
|
|
|
174
|
|
|
{ |
|
175
|
|
|
$cache = new FileCache(($cacheDir ? $cacheDir : sys_get_temp_dir()), 'proc'); |
|
176
|
|
|
|
|
177
|
|
|
return $cache; |
|
178
|
|
|
} |
|
179
|
|
|
|
|
180
|
|
|
/** |
|
181
|
|
|
* Get template renderer. |
|
182
|
|
|
* |
|
183
|
|
|
* @access protected |
|
184
|
|
|
* @return \JonnyW\PhantomJs\Template\TemplateRenderer |
|
185
|
|
|
*/ |
|
186
|
|
|
protected function getRenderer() |
|
187
|
|
|
{ |
|
188
|
|
|
$twig = new Twig_Environment( |
|
189
|
|
|
new Twig_Loader_String() |
|
|
|
|
|
|
190
|
|
|
); |
|
191
|
|
|
|
|
192
|
|
|
$renderer = new TemplateRenderer($twig); |
|
193
|
|
|
|
|
194
|
|
|
return $renderer; |
|
195
|
|
|
} |
|
196
|
|
|
|
|
197
|
|
|
/** |
|
198
|
|
|
* Get input |
|
199
|
|
|
* |
|
200
|
|
|
* @access protected |
|
201
|
|
|
* @return \JonnyW\PhantomJs\Procedure\Input |
|
202
|
|
|
*/ |
|
203
|
|
|
protected function getInput() |
|
204
|
|
|
{ |
|
205
|
|
|
$input = new Input(); |
|
206
|
|
|
|
|
207
|
|
|
return $input; |
|
208
|
|
|
} |
|
209
|
|
|
|
|
210
|
|
|
/** |
|
211
|
|
|
* Get output. |
|
212
|
|
|
* |
|
213
|
|
|
* @access protected |
|
214
|
|
|
* @return \JonnyW\PhantomJs\Procedure\Output |
|
215
|
|
|
*/ |
|
216
|
|
|
protected function getOutput() |
|
217
|
|
|
{ |
|
218
|
|
|
$output = new Output(); |
|
219
|
|
|
|
|
220
|
|
|
return $output; |
|
221
|
|
|
} |
|
222
|
|
|
|
|
223
|
|
|
/** +++++++++++++++++++++++++++++++++++ **/ |
|
224
|
|
|
/** ++++++++++ MOCKS / STUBS ++++++++++ **/ |
|
225
|
|
|
/** +++++++++++++++++++++++++++++++++++ **/ |
|
226
|
|
|
|
|
227
|
|
|
/** |
|
228
|
|
|
* Get engine |
|
229
|
|
|
* |
|
230
|
|
|
* @access protected |
|
231
|
|
|
* @return \JonnyW\PhantomJs\Engine |
|
232
|
|
|
*/ |
|
233
|
|
|
protected function getEngine() |
|
234
|
|
|
{ |
|
235
|
|
|
$engine = $this->getMock('\JonnyW\PhantomJs\Engine'); |
|
236
|
|
|
|
|
237
|
|
|
return $engine; |
|
238
|
|
|
} |
|
239
|
|
|
} |
|
240
|
|
|
|
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.