-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRenderTest.php
446 lines (390 loc) · 13.1 KB
/
RenderTest.php
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
<?php
declare(strict_types = 1);
namespace PHPMicroTemplate\Tests;
use ArrayAccess;
use ArrayObject;
use PHPMicroTemplate\Exception\FileSystemException;
use PHPMicroTemplate\Exception\SyntaxErrorException;
use PHPMicroTemplate\Exception\UndefinedSymbolException;
use PHPMicroTemplate\Render;
use PHPMicroTemplate\Tests\Objects\Product;
use PHPUnit\Framework\TestCase;
use stdClass;
/**
* Class RenderTest
*
* @package PHPMicroTemplate\Tests
*/
class RenderTest extends TestCase
{
/** @var Render */
private $render;
public function setUp(): void
{
$this->render = new Render(__DIR__ . '/Templates/');
}
public function testRenderNotExistingTemplate(): void
{
$this->expectException(FileSystemException::class);
$this->expectExceptionMessage('Template nonExistingTemplate.template not found');
$this->render->renderTemplate('nonExistingTemplate.template');
}
public function testUndefinedVariable(): void
{
$this->expectException(UndefinedSymbolException::class);
$this->expectExceptionMessage('Unknown variable name');
$this->render->renderTemplate('undefinedVariable.template', ['firstname' => 'John']);
}
public function testMethodOnNonObject(): void
{
$this->expectException(UndefinedSymbolException::class);
$this->expectExceptionMessage('Trying to call getPrice on non-object product');
$this->render->renderTemplate('undefinedMethod.template', ['product' => false]);
}
public function testUndefinedMethod(): void
{
$this->expectException(UndefinedSymbolException::class);
$this->expectExceptionMessage('Function getPrice on object product not callable');
$this->render->renderTemplate('undefinedMethod.template', ['product' => new Product('Wood', true)]);
}
/**
* Check basic template rendering including variable replacement, nested loops and nested conditions
*/
public function testRenderTemplate(): void
{
$products = [
new Product('Hammer', true),
new Product('Nails', false),
new Product('Wood', true, ['Oak', 'Birch']),
];
$result = $this->render->renderTemplate(
'productList.template',
[
'pageTitle' => 'Available products',
'productHead' => 'Product',
'products' => $products,
'showVersion' => true
]
);
$this->assertXmlStringEqualsXmlFile(__DIR__ . '/Expectations/productListWithVersion', $result);
$products = [
new Product('Hammer', true),
new Product('Nails', true),
new Product('Wood', false),
];
$result = $this->render->renderTemplate(
'productList.template',
[
'pageTitle' => 'Available products',
'productHead' => 'Product',
'products' => $products,
'showVersion' => false
]
);
$this->assertXmlStringEqualsXmlFile(__DIR__ . '/Expectations/productListWithoutVersion', $result);
}
/**
* Check loop with key value pair
*/
public function testRenderKeyValueLoopTemplate(): void
{
$products = [
'Best Hammer' => new Product('Hammer', true),
'Nailed It' => new Product('Nails', false),
'Most Solid' => new Product('Wood', true, ['Oak', 'Birch']),
];
$result = $this->render->renderTemplate('keyValueLoop.template', ['products' => $products]);
$this->assertXmlStringEqualsXmlFile(__DIR__ . '/Expectations/keyValueLoop', $result);
}
/**
* Test if the syntax of a template is whitespace tolerant
*/
public function testWhitespaceTolerance(): void
{
$products = [
new Product('Hammer', true),
new Product('Nails', true),
new Product('Wood', false),
];
$result = $this->render->renderTemplate(
'productListWhitespaceTolerance.template',
[
'pageTitle' => 'Available products',
'productHead' => 'Product',
'products' => $products,
// null must be handled as a falsely value
'showVersion' => null
]
);
$this->assertXmlStringEqualsXmlFile(__DIR__ . '/Expectations/productListWithoutVersion', $result);
}
/**
* Test multiple loops following each other
*
* @dataProvider loopDataProvider
*/
public function testMultipleLoops($products): void
{
$result = $this->render->renderTemplate('multipleLoops.template', ['products' => $products]);
$this->assertXmlStringEqualsXmlFile(__DIR__ . '/Expectations/multipleLoops', $result);
}
public function loopDataProvider(): array
{
$products = [
new Product('Hammer', true),
new Product('Nails', true),
new Product('Wood', true),
];
return [
'array' => [$products],
'ArrayObject' => [new ArrayObject($products)],
];
}
/**
* Test if function parameters are resolved.
* Test nested function calls and multiple parameters for a single function
*/
public function testFunctionParameter(): void
{
$products = [
new Product('Hammer', true),
new Product('Wood', true, ['Oak', 'Birch']),
];
$result = $this->render->renderTemplate(
'parameters.template',
[
'viewHelper' => new ViewHelper(),
'products' => $products,
'productsNextPage' => 5
]
);
$this->assertXmlStringEqualsXmlFile(__DIR__ . '/Expectations/parameters', $result);
}
/**
* Test if invalid function parameters throw a SyntaxErrorException
*
* @dataProvider invalidFunctionParameterProvider
*
* @param string $template
*/
public function testInvalidFunctionParameter(string $template): void
{
$this->expectException(SyntaxErrorException::class);
$this->render->renderTemplateString(
$template,
[
'viewHelper' => new ViewHelper(),
'variable' => 10,
'object' => new class () {
public function get()
{
return 11;
}
}
]
);
}
public function invalidFunctionParameterProvider(): array
{
return [
['{{ viewHelper.sum(,) }}'],
['{{ viewHelper.sum(,) }}'],
['{{ viewHelper.sum(variable,) }}'],
['{{ viewHelper.sum(,variable) }}'],
['{{ viewHelper.sum(object.get(),) }}'],
['{{ viewHelper.sum(,object.get()) }}'],
['{{ viewHelper.sum(variable,object.get(),) }}'],
['{{ viewHelper.sum(variable object.get()) }}'],
];
}
public function testNestedVariable(): void
{
$vars = [
'person' => [
'name' => [
'firstName' => 'Hans',
'lastName' => 'Schmidt',
],
],
];
$this->assertSame(
'Schmidt, Hans',
$this->render->renderTemplateString('{{ person.name.lastName }}, {{ person.name.firstName }}', $vars)
);
}
public function testNestedMethod(): void
{
$vars = [
'person' => [
'name' => [
'firstName' => 'Hans',
'lastName' => 'Schmidt',
'render' => new class () {
public function renderName(string $firstName, string $lastName): string
{
return "$lastName, $firstName";
}
}
],
],
];
$this->assertSame(
'Schmidt, Hans',
$this->render->renderTemplateString(
'{{ person.name.render.renderName(person.name.firstName, person.name.lastName) }}',
$vars
)
);
}
/**
* @dataProvider resolveErrorDataProvider
*
* @param string $var
*/
public function testResolveErrorCallback(string $var): void
{
$this->render->onResolveError(function (string $resolveError) use ($var): string {
$this->assertSame($var, $resolveError);
return 'callback-result';
});
$this->assertSame('callback-result', $this->render->renderTemplateString("{{ $var }}"));
}
public function resolveErrorDataProvider()
{
return [
'simple variable' => ['person'],
'nested variable' => ['person.name'],
'object function call' => ['person.renderName()'],
'object function call with parameters' => ['person.renderName(firstname, lastname)'],
];
}
/**
* @dataProvider propertyDataProvider
*/
public function testAccessExistingProperty($person): void
{
$this->assertSame(
' Schmidt, Hans',
$this->render->renderTemplateString(
'{{ person.title }} {{ person.lastName }}, {{ person.firstName }}',
[
'person' => $person,
]
)
);
}
/**
* @dataProvider propertyDataProvider
*/
public function testAccessNonExistingPropertyFails($person): void
{
$this->expectException(UndefinedSymbolException::class);
$this->expectExceptionMessage('Unknown variable person.age');
$this->render->renderTemplateString(
'{{ person.age }}',
[
'person' => $person,
]
);
}
public function testConstantExpressions(): void
{
$this->assertSame(
'Schmidt, Hans!!;43;1;',
$this->render->renderTemplateString("{{ 'Schmidt, Hans!!' }};{{ 43 }};{{ true }};{{ false }}")
);
}
public function testConstantExpressionsAsFunctionParameter(): void
{
$this->assertSame(
'ABC;abc;10',
$this->render->renderTemplateString(
"{{ viewHelper.castCase( 'aBc', true ) }};{{ viewHelper.castCase( 'AbC', false ) }};{{ viewHelper.double( 5 ) }}",
[
'viewHelper' => new ViewHelper(),
]
)
);
}
public function testBuiltinFunctionCall(): void
{
$this->assertSame('HELLO WORLD', $this->render->renderTemplateString("{{ strtoupper('hello world') }}"));
}
/**
* @dataProvider topLevelFunctionCallDataProvider
*/
public function testTopLevelFunctionCall(callable $callback): void
{
$this->assertSame(
'HELLO WORLD',
$this->render->renderTemplateString("{{ up('hello world') }}", ['up' => $callback])
);
}
public function topLevelFunctionCallDataProvider()
{
return [
'builtin' => ['strtoupper'],
'closure' => [function ($i) { return strtoupper($i); } ],
'object method' => [[new ViewHelper(), 'up']],
'static method' => [[ViewHelper::class, 'up']],
];
}
public function testNotCallableMethod(): void
{
$this->expectException(UndefinedSymbolException::class);
$this->expectExceptionMessage('Function unknownMethod not callable');
$this->render->renderTemplateString("{{ unknownMethod('abc') }}");
}
public function propertyDataProvider(): array
{
return [
'array' => [
[
'firstName' => 'Hans',
'lastName' => 'Schmidt',
'title' => null,
],
],
'arrayAccess' => [$this->getArrayAccessObject()],
'object' => [$this->getPersonObject()],
];
}
private function getArrayAccessObject(): ArrayAccess
{
return new class () implements ArrayAccess {
private $data = [
'firstName' => 'Hans',
'lastName' => 'Schmidt',
'title' => null,
];
#[\ReturnTypeWillChange]
public function offsetExists($offset)
{
return array_key_exists($offset, $this->data);
}
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
return $this->data[$offset];
}
#[\ReturnTypeWillChange]
public function offsetSet($offset, $value): void
{
$this->data[$offset] = $value;
}
#[\ReturnTypeWillChange]
public function offsetUnset($offset): void
{
unset($this->data[$offset]);
}
};
}
public function getPersonObject(): stdClass
{
$person = new stdClass();
$person->lastName = 'Schmidt';
$person->firstName = 'Hans';
$person->title = null;
return $person;
}
}