aboutsummaryrefslogtreecommitdiff
path: root/php/tests/TemplateTest.php
blob: 18e5a6e60f89acddd691c2e431d05a6d0d10440e (plain)
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
<?php
declare(strict_types = 1);

namespace Pablotron\Luigi\Tests;
use \PHPUnit\Framework\TestCase;
use \Luigi\Template;

final class TemplateTest extends TestCase {
  public function testNewTemplate() : void {
    # create template
    $tmpl = new Template('foo%{bar}');

    $this->assertInstanceOf(Template::class, $tmpl);
  }

  public function testRun() : void {
    # create template
    $tmpl = new Template('foo%{bar}');

    # run template
    $r = $tmpl->run([
      'bar' => 'foo',
    ]);

    $this->assertEquals('foofoo', $r);
  }

  public function testOnce() : void {
    # create and run template
    $r = Template::once('foo%{bar}', [
      'bar' => 'foo',
    ]);

    $this->assertEquals('foofoo', $r);
  }

  public function testMultiple() : void {
    # create and run template
    $r = Template::once('foo%{bar}%{baz}', [
      'bar' => 'foo',
      'baz' => 'bar',
    ]);

    $this->assertEquals('foofoobar', $r);
  }

  public function testWhitespace() : void {
    # create and run template
    $r = Template::once('%{ bar}%{ bar }%{ bar}', [
      'bar' => 'foo',
    ]);

    $this->assertEquals('foofoofoo', $r);
  }

  public function testNewlines() : void {
    $str = '%{ 
      bar}%{
    bar
  
    }%{
      bar}';

    # create and run template
    $r = Template::once($str, [
      'bar' => 'foo',
    ]);

    $this->assertEquals('foofoofoo', $r);
  }

  public function testFilter() : void {
    # create and run template
    $r = Template::once('foo%{bar|h}', [
      'bar' => '<',
    ]);

    $this->assertEquals('foo&lt;', $r);
  }

  public function testFilterChain() : void {
    $want = 'foofeab40e1fca77c7360ccca1481bb8ba5f919ce3a';
    # create and run template
    $r = Template::once('foo%{bar|uc|hash sha1}', [
      'bar' => 'foo',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testCustomGlobalFilter() : void {
    \Luigi\Filters::$FILTERS['barify'] = function($s) {
      return 'BAR';
    };

    # create template cache
    $cache = new \Luigi\Cache([
      'foo' => 'foo%{bar|barify}',
    ]);

    # run template
    $r = $cache['foo']->run([
      'bar' => 'foo',
    ]);

    $this->assertEquals('fooBAR', $r);
  }

  public function testCustomTemplateFilter() : void {
    # create template with custom filter
    $tmpl = new Template('foo%{bar|barify}', [
      'barify' => function($s) {
        return 'BAR';
      },
    ]);

    # run template
    $r = $tmpl->run([
      'bar' => 'foo',
    ]);

    $this->assertEquals('fooBAR', $r);
  }

  public function testCache() : void {
    # create template cache
    $cache = new \Luigi\Cache([
      'foo' => 'foo%{bar}',
    ]);

    # run template
    $r = $cache['foo']->run([
      'bar' => 'foo',
    ]);

    $this->assertEquals('foofoo', $r);
  }

  public function testFilterArgs() : void {
    $want = 'foo0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33';

    # run template
    $r = Template::once('foo%{bar|hash sha1}', [
      'bar' => 'foo',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testUnknownKeyError() : void {
    $this->expectException(\Luigi\UnknownKeyError::class);

    # run template
    $r = Template::once('foo%{unknown-key}', [
      'bar' => 'foo',
    ]);
  }

  public function testUnknownFilterError() : void {
    $this->expectException(\Luigi\UnknownFilterError::class);

    # run template
    $r = Template::once('foo%{bar|unknown-filter}', [
      'bar' => 'foo',
    ]);
  }

  public function testUnknownTemplateError() : void {
    $this->expectException(\Luigi\UnknownTemplateError::class);

    # create cache
    $cache = new \Luigi\Cache([
      'foo' => 'foo%{bar}',
    ]);

    # run cached template
    $r = $cache['unknown-template']->run([
      'bar' => 'foo',
    ]);
  }

  public function testDefaultFilterH() : void {
    $want = '&lt;&gt;&amp;&quot;&#039;';

    $r = Template::once('%{val|h}', [
      'val' => '<>&"\'',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterU() : void {
    $want = 'foo%2F%3C%3E';

    $r = Template::once('%{val|u}', [
      'val' => 'foo/<>',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterJson() : void {
    $want = '{"true":true,"false":false,"null":null,"number":5,"string":"foo","hash":{"foo":"bar"},"array":[0,1]}';

    $r = Template::once('%{val|json}', [
      'val' => [
        'true' => true,
        'false' => false,
        'null' => null,
        'number' => 5,
        'string' => 'foo',
        'hash' => [
          'foo' => 'bar',
        ],
        'array' => [0, 1],
      ],
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterHash() : void {
    $want = '0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33';

    # run template
    $r = Template::once('%{val|hash sha1}', [
      'val' => 'foo',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterBase64() : void {
    $want = 'Zm9v';

    # run template
    $r = Template::once('%{val|base64}', [
      'val' => 'foo',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterNl2br() : void {
    $want = "foo<br />\nbar";

    # run template
    $r = Template::once('%{val|nl2br}', [
      'val' => "foo\nbar",
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterUc() : void {
    $want = 'FOO';

    # run template
    $r = Template::once('%{val|uc}', [
      'val' => 'foo',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterLc() : void {
    $want = 'foo';

    # run template
    $r = Template::once('%{val|lc}', [
      'val' => 'FOO',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterTrim() : void {
    $want = 'foo';

    # run template
    $r = Template::once('%{val|trim}', [
      'val' => ' foo ',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterLtrim() : void {
    $want = 'foo ';

    # run template
    $r = Template::once('%{val|ltrim}', [
      'val' => ' foo ',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterRtrim() : void {
    $want = ' foo';

    # run template
    $r = Template::once('%{val|rtrim}', [
      'val' => ' foo ',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterSWithZero() : void {
    $want = 'foos';

    # run template
    $r = Template::once('foo%{val|s}', [
      'val' => 0,
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterSWithOne() : void {
    $want = 'foo';

    # run template
    $r = Template::once('foo%{val|s}', [
      'val' => 1,
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterSWithTwo() : void {
    $want = 'foos';

    # run template
    $r = Template::once('foo%{val|s}', [
      'val' => 2,
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterStrlen() : void {
    $want = '3';

    # run template
    $r = Template::once('%{val|strlen}', [
      'val' => 'foo',
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterCount() : void {
    $want = '2';

    # run template
    $r = Template::once('%{val|count}', [
      'val' => ['foo', 'bar'],
    ]);

    $this->assertEquals($want, $r);
  }

  public function testDefaultFilterKey() : void {
    $want = 'bar';

    # run template
    $r = Template::once('%{val|key foo}', [
      'val' => [
        'foo' => 'bar',
      ],
    ]);

    $this->assertEquals($want, $r);
  }
};