-
Notifications
You must be signed in to change notification settings - Fork 1
/
golden_liquid.yaml
7779 lines (7645 loc) · 183 KB
/
golden_liquid.yaml
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
version: 0.23.0
test_groups:
- name: liquid.golden.abs_filter
tests:
- name: negative float
template: '{{ -5.4 | abs }}'
want: '5.4'
context: {}
partials: {}
error: false
strict: false
- name: negative integer
template: '{{ -5 | abs }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: negative string float
template: '{{ ''-5.1'' | abs }}'
want: '5.1'
context: {}
partials: {}
error: false
strict: false
- name: negative string integer
template: '{{ ''-5'' | abs }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: not a string, int or float
template: '{{ a | abs }}'
want: '0'
context:
a: {}
partials: {}
error: false
strict: false
- name: positive float
template: '{{ 5.4 | abs }}'
want: '5.4'
context: {}
partials: {}
error: false
strict: false
- name: positive integer
template: '{{ 5 | abs }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: positive string float
template: '{{ ''5.1'' | abs }}'
want: '5.1'
context: {}
partials: {}
error: false
strict: false
- name: positive string integer
template: '{{ ''5'' | abs }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: string not a number
template: '{{ ''hello'' | abs }}'
want: '0'
context: {}
partials: {}
error: false
strict: false
- name: undefined left value
template: '{{ nosuchthing | abs }}'
want: '0'
context: {}
partials: {}
error: false
strict: false
- name: unexpected argument
template: '{{ -3 | abs: 1 }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: zero
template: '{{ 0 | abs }}'
want: '0'
context: {}
partials: {}
error: false
strict: false
- name: liquid.golden.append_filter
tests:
- name: argument not a string
template: '{{ "hello" | append: 5 }}'
want: hello5
context: {}
partials: {}
error: false
strict: false
- name: concat
template: '{{ "hello" | append: "there" }}'
want: hellothere
context: {}
partials: {}
error: false
strict: false
- name: missing argument
template: '{{ "hello" | append }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: not a string
template: '{{ 5 | append: ''there'' }}'
want: 5there
context: {}
partials: {}
error: false
strict: false
- name: too many arguments
template: '{{ "hello" | append: "how", "are", "you" }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: undefined argument
template: '{{ "hi" | append: nosuchthing }}'
want: hi
context: {}
partials: {}
error: false
strict: false
- name: undefined left value
template: '{{ nosuchthing | append: "hi" }}'
want: hi
context: {}
partials: {}
error: false
strict: false
- name: liquid.golden.assign_tag
tests:
- name: assign a filtered literal
template: '{% assign foo = ''foo'' | upcase %}{{ foo }}'
want: FOO
context: {}
partials: {}
error: false
strict: false
- name: assign a range literal
template: '{% assign foo = (1..3) %}{{ foo | join: ''#'' }}'
want: 1#2#3
context: {}
partials: {}
error: false
strict: false
- name: assign an existing array
template: '{% assign foo = bar %}{{ foo[0] }}/{{ foo[1] }}'
want: a/b
context:
bar:
- a
- b
- c
partials: {}
error: false
strict: false
- name: assign an item from an existing object with quoted notation
template: '{% assign foo = bar[''baz''] %}{{ foo }}'
want: hello
context:
bar:
baz: hello
partials: {}
error: false
strict: false
- name: assign to variable with a hyphen
template: '{% assign some-thing = ''foo'' %}{{ some-thing }}'
want: foo
context: {}
partials: {}
error: false
strict: false
- name: assign with quoted notation and extra whitespace
template: '{% assign foo = bar[ ''baz'' ] %}{{ foo }}'
want: hello
context:
bar:
baz: hello
partials: {}
error: false
strict: false
- name: local variables shadow global variables
template: '{{ foo }}{% assign foo = ''foo'' | upcase %}{{ foo }}'
want: barFOO
context:
foo: bar
partials: {}
error: false
strict: false
- name: liquid.golden.at_least_filter
tests:
- name: argument string not a number
template: '{{ -1 | at_least: "abc" }}'
want: '0'
context: {}
partials: {}
error: false
strict: false
- name: left value not a number
template: '{{ "abc" | at_least: 2 }}'
want: '2'
context: {}
partials: {}
error: false
strict: false
- name: left value not a number negative argument
template: '{{ "abc" | at_least: -2 }}'
want: '0'
context: {}
partials: {}
error: false
strict: false
- name: missing arg
template: '{{ 5 | at_least }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: negative integer < arg
template: '{{ -8 | at_least: 5 }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: positive float < arg
template: '{{ 5.4 | at_least: 8.9 }}'
want: '8.9'
context: {}
partials: {}
error: false
strict: false
- name: positive float > arg
template: '{{ 8.4 | at_least: 5.9 }}'
want: '8.4'
context: {}
partials: {}
error: false
strict: false
- name: positive integer < arg
template: '{{ 5 | at_least: 8 }}'
want: '8'
context: {}
partials: {}
error: false
strict: false
- name: positive integer == arg
template: '{{ 5 | at_least: 5 }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: positive integer > arg
template: '{{ 8 | at_least: 5 }}'
want: '8'
context: {}
partials: {}
error: false
strict: false
- name: positive string > arg
template: '{{ "9" | at_least: 8 }}'
want: '9'
context: {}
partials: {}
error: false
strict: false
- name: too many args
template: '{{ 5 | at_least: 1, 2}}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: undefined argument
template: '{{ 5 | at_least: nosuchthing }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: undefined left value
template: '{{ nosuchthing | at_least: 5 }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: liquid.golden.at_most_filter
tests:
- name: left value not a number
template: '{{ "abc" | at_most: -2 }}'
want: '-2'
context: {}
partials: {}
error: false
strict: false
- name: missing arg
template: '{{ 5 | at_most }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: negative integer < arg
template: '{{ -8 | at_most: 5 }}'
want: '-8'
context: {}
partials: {}
error: false
strict: false
- name: positive float < arg
template: '{{ 5.4 | at_most: 8.9 }}'
want: '5.4'
context: {}
partials: {}
error: false
strict: false
- name: positive float > arg
template: '{{ 8.4 | at_most: 5.9 }}'
want: '5.9'
context: {}
partials: {}
error: false
strict: false
- name: positive integer < arg
template: '{{ 5 | at_most: 8 }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: positive integer == arg
template: '{{ 5 | at_most: 5 }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: positive integer > arg
template: '{{ 8 | at_most: 5 }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: positive string > arg
template: '{{ "9" | at_most: 8 }}'
want: '8'
context: {}
partials: {}
error: false
strict: false
- name: too many args
template: '{{ 5 | at_most: 1, 2}}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: undefined argument
template: '{{ 5 | at_most: nosuchthing }}'
want: '0'
context: {}
partials: {}
error: false
strict: false
- name: undefined left value
template: '{{ nosuchthing | at_most: 5 }}'
want: '0'
context: {}
partials: {}
error: false
strict: false
- name: liquid.golden.base64_decode_filter
tests:
- name: from string
template: '{{ "XyMvLg==" | base64_decode }}'
want: _#/.
context: {}
partials: {}
error: false
strict: false
- name: from string with URL unsafe
template: '{{ a | base64_decode }}'
want: abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ 1234567890 !@#$%^&*()-=_+/?.:;[]{}\|
context:
a: YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXogQUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVogMTIzNDU2Nzg5MCAhQCMkJV4mKigpLT1fKy8/Ljo7W117fVx8
partials: {}
error: false
strict: false
- name: not a string
template: '{{ 5 | base64_decode }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: undefined left value
template: '{{ nosuchthing | base64_decode }}'
want: ''
context: {}
partials: {}
error: false
strict: false
- name: unexpected argument
template: '{{ "hello" | base64_decode: 5 }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: liquid.golden.base64_encode_filter
tests:
- name: from string
template: '{{ "_#/." | base64_encode }}'
want: XyMvLg==
context: {}
partials: {}
error: false
strict: false
- name: from string with URL unsafe
template: '{{ a | base64_encode }}'
want: YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXogQUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVogMTIzNDU2Nzg5MCAhQCMkJV4mKigpLT1fKy8/Ljo7W117fVx8
context:
a: abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ 1234567890 !@#$%^&*()-=_+/?.:;[]{}\|
partials: {}
error: false
strict: false
- name: not a string
template: '{{ 5 | base64_encode }}'
want: NQ==
context: {}
partials: {}
error: false
strict: false
- name: undefined left value
template: '{{ nosuchthing | base64_encode }}'
want: ''
context: {}
partials: {}
error: false
strict: false
- name: unexpected argument
template: '{{ "hello" | base64_encode: 5 }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: liquid.golden.base64_url_safe_decode_filter
tests:
- name: from string
template: '{{ "XyMvLg==" | base64_url_safe_decode }}'
want: _#/.
context: {}
partials: {}
error: false
strict: false
- name: from string with URL unsafe
template: '{{ a | base64_url_safe_decode }}'
want: abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ 1234567890 !@#$%^&*()-=_+/?.:;[]{}\|
context:
a: YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXogQUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVogMTIzNDU2Nzg5MCAhQCMkJV4mKigpLT1fKy8_Ljo7W117fVx8
partials: {}
error: false
strict: false
- name: not a string
template: '{{ 5 | base64_url_safe_decode }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: undefined left value
template: '{{ nosuchthing | base64_url_safe_decode }}'
want: ''
context: {}
partials: {}
error: false
strict: false
- name: unexpected argument
template: '{{ "hello" | base64_url_safe_decode: 5 }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: liquid.golden.base64_url_safe_encode_filter
tests:
- name: from string
template: '{{ "_#/." | base64_url_safe_encode }}'
want: XyMvLg==
context: {}
partials: {}
error: false
strict: false
- name: from string with URL unsafe
template: '{{ a | base64_url_safe_encode }}'
want: YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXogQUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVogMTIzNDU2Nzg5MCAhQCMkJV4mKigpLT1fKy8_Ljo7W117fVx8
context:
a: abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ 1234567890 !@#$%^&*()-=_+/?.:;[]{}\|
partials: {}
error: false
strict: false
- name: not a string
template: '{{ 5 | base64_url_safe_encode }}'
want: NQ==
context: {}
partials: {}
error: false
strict: false
- name: undefined left value
template: '{{ nosuchthing | base64_url_safe_encode }}'
want: ''
context: {}
partials: {}
error: false
strict: false
- name: unexpected argument
template: '{{ "hello" | base64_url_safe_encode: 5 }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: liquid.golden.capitalize_filter
tests:
- name: already capitalized string
template: '{{ "Hello" | capitalize }}'
want: Hello
context: {}
partials: {}
error: false
strict: false
- name: lower case string
template: '{{ "hello" | capitalize }}'
want: Hello
context: {}
partials: {}
error: false
strict: false
- name: undefined left value
template: '{{ nosuchthing | capitalize }}'
want: ''
context: {}
partials: {}
error: false
strict: false
- name: unexpected argument
template: '{{ "hello" | capitalize: 2 }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: liquid.golden.capture_tag
tests:
- name: assign to a variable from a captured variable
template: '{% capture some %}hello{% endcapture %}{% assign other = some %}{{
some }}-{{ other }}'
want: hello-hello
context: {}
partials: {}
error: false
strict: false
- name: capture into a variable with a hyphen
template: '{% capture this-thing %}Hello, {{ customer.first_name }}.{% endcapture
%}{{ this-thing }}'
want: Hello, Holly.
context:
customer:
first_name: Holly
partials: {}
error: false
strict: false
- name: capture template literal and global variable
template: '{% capture greeting %}Hello, {{ customer.first_name }}.{% endcapture
%}{{ greeting }}'
want: Hello, Holly.
context:
customer:
first_name: Holly
partials: {}
error: false
strict: false
- name: liquid.golden.case_tag
tests:
- name: '''when'' expression using an identifier'
template: '{% case title %}{% when other %}foo{% when ''goodbye'' %}bar{% endcase
%}'
want: foo
context:
title: Hello
other: Hello
partials: {}
error: false
strict: false
- name: '''when'' expression using an out of scope identifier'
template: '{% case title %}{% when nosuchthing %}foo{% when ''Hello'' %}bar{%
endcase %}'
want: bar
context:
title: Hello
partials: {}
error: false
strict: false
- name: comma separated when expression
template: '{% case title %}{% when ''foo'' %}foo{% when ''bar'', ''Hello'' %}bar{%
endcase %}'
want: bar
context:
title: Hello
partials: {}
error: false
strict: false
- name: comma string literal
template: '{% case foo %}{% when ''foo'' %}bar{% when '','' %}comma{% endcase
%}'
want: comma
context:
foo: ','
partials: {}
error: false
strict: false
- name: empty when tag
template: '{% case foo %}{% when %}bar{% endcase %}'
want: ''
context:
foo: bar
partials: {}
error: true
strict: false
- name: evaluate multiple matching blocks
template: '{% case title %}{% when ''Hello'' %}foo{% when a, ''Hello'' %}bar{%
endcase %}'
want: foobarbar
context:
title: Hello
a: Hello
partials: {}
error: false
strict: false
- name: falsy when before and truthy when after else
template: '{% case ''x'' %}{% when ''y'' %}foo{% else %}bar{% when ''x'' %}baz{%
endcase %}'
want: barbaz
context: {}
partials: {}
error: false
strict: false
- name: falsy when before and truthy when after multiple else blocks
template: '{% case ''x'' %}{% when ''y'' %}foo{% else %}bar{% else %}baz{% when
''x'' %}qux{% endcase %}'
want: barbazqux
context: {}
partials: {}
error: false
strict: false
- name: mix or and comma separated when expression
template: '{% case title %}{% when ''foo'' %}foo{% when ''bar'' or ''Hello'',
''Hello'' %}bar{% endcase %}'
want: barbar
context:
title: Hello
partials: {}
error: false
strict: false
- name: multiple else blocks
template: '{% case ''x'' %}{% when ''y'' %}foo{% else %}bar{% else %}baz{% endcase
%}'
want: barbaz
context: {}
partials: {}
error: false
strict: false
- name: name not in scope
template: '{% case nosuchthing %}{% when ''foo'' %}foo{% when ''bar'' %}bar{%
endcase %}'
want: ''
context: {}
partials: {}
error: false
strict: false
- name: no match and no default
template: '{% case title %}{% when ''foo'' %}foo{% when ''bar'' %}bar{% endcase
%}'
want: ''
context:
title: Hello
partials: {}
error: false
strict: false
- name: no whens
template: '{% case title %}{% else %}bar{% endcase %}'
want: bar
context:
title: Hello
partials: {}
error: false
strict: false
- name: no whens or default
template: '{% case title %}{% endcase %}'
want: ''
context:
title: Hello
partials: {}
error: false
strict: false
- name: or separated when expression
template: '{% case title %}{% when ''foo'' %}foo{% when ''bar'' or ''Hello'' %}bar{%
endcase %}'
want: bar
context:
title: Hello
partials: {}
error: false
strict: false
- name: simple case/when
template: '{% case title %}{% when ''foo'' %}foo{% when ''Hello'' %}bar{% endcase
%}'
want: bar
context:
title: Hello
partials: {}
error: false
strict: false
- name: switch on array
template: '{% case x %}{% when y %}foo{% endcase %}'
want: foo
context:
x:
- a
- b
- c
y:
- a
- b
- c
partials: {}
error: false
strict: false
- name: tags inside when block
template: '{% case title %}{% when other %}{% if true %}foo{% endif %}{% when
''goodbye'' %}bar{% endcase %}'
want: foo
context:
title: Hello
other: Hello
partials: {}
error: false
strict: false
- name: truthy and empty when block before else
template: '{% case ''x'' %}{% when ''x'' %}{% else %}bar{% endcase %}'
want: ''
context: {}
partials: {}
error: false
strict: false
- name: truthy when before and after else
template: '{% case ''x'' %}{% when ''x'' %}foo{% else %}bar{% when ''x'' %}baz{%
endcase %}'
want: foobaz
context: {}
partials: {}
error: false
strict: false
- name: unexpected when token
template: '{% case title %}{% when ''foo'' %}foo{% when ''bar'' and ''Hello'',
''Hello'' %}bar{% endcase %}'
want: ''
context:
title: Hello
partials: {}
error: false
strict: false
- name: whitespace
template: "{% case title %} \n\t{% when 'foo' %}foo\n{% when 'Hello' %}bar{%\
\ endcase %}"
want: bar
context:
title: Hello
partials: {}
error: false
strict: false
- name: with default
template: '{% case title %}{% when ''foo'' %}foo{% else %}bar{% endcase %}'
want: bar
context:
title: Hello
partials: {}
error: false
strict: false
- name: liquid.golden.ceil_filter
tests:
- name: negative float
template: '{{ -5.4 | ceil }}'
want: '-5'
context: {}
partials: {}
error: false
strict: false
- name: negative integer
template: '{{ -5 | ceil }}'
want: '-5'
context: {}
partials: {}
error: false
strict: false
- name: negative string float
template: '{{ "-5.1" | ceil }}'
want: '-5'
context: {}
partials: {}
error: false
strict: false
- name: not a string, int or float
template: '{{ a | ceil }}'
want: '0'
context:
a: {}
partials: {}
error: false
strict: false
- name: positive float
template: '{{ 5.4 | ceil }}'
want: '6'
context: {}
partials: {}
error: false
strict: false
- name: positive integer
template: '{{ 5 | ceil }}'
want: '5'
context: {}
partials: {}
error: false
strict: false
- name: positive string float
template: '{{ "5.1" | ceil }}'
want: '6'
context: {}
partials: {}
error: false
strict: false
- name: string not a number
template: '{{ "hello" | ceil }}'
want: '0'
context: {}
partials: {}
error: false
strict: false
- name: undefined left value
template: '{{ nosuchthing | ceil }}'
want: '0'
context: {}
partials: {}
error: false
strict: false
- name: unexpected argument
template: '{{ -3.1 | ceil: 1 }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: zero
template: '{{ 0 | ceil }}'
want: '0'
context: {}
partials: {}
error: false
strict: false
- name: liquid.golden.comment_tag
tests:
- name: don't render comments
template: '{% comment %}foo{% endcomment %}'
want: ''
context: {}
partials: {}
error: false
strict: false
- name: don't render comments with tags
template: '{% comment %}{% if true %}{{ title }}{% endif %}{% endcomment %}'
want: ''
context: {}
partials: {}
error: false
strict: false
- name: respect whitespace control in comments
template: "\n{%- comment %}foo{% endcomment -%}\t \r"
want: ''
context: {}
partials: {}
error: false
strict: false
- name: liquid.golden.compact_filter
tests:
- name: array of objects with key property
template: '{% assign x = a | compact: ''title'' %}{% for obj in x %}{% for i in
obj %}({{ i[0] }},{{ i[1] }}){% endfor %}{% endfor %}'
want: (title,foo)(name,a)(title,bar)(name,c)
context:
a:
- title: foo
name: a
- title: null
name: b
- title: bar
name: c
partials: {}
error: false
strict: false
- name: array with a nil
template: '{{ a | compact | join: ''#'' }}'
want: b#a#A
context:
a:
- b
- a
- null
- A
partials: {}
error: false
strict: false
- name: empty array
template: '{{ a | compact | join: ''#'' }}'
want: ''
context:
a: []
partials: {}
error: false
strict: false
- name: left value is not an array
template: '{{ a | compact | first }}'
want: '123'
context:
a: 123
partials: {}
error: false
strict: false
- name: left value is undefined
template: '{{ nosuchthing | compact }}'
want: ''
context: {}
partials: {}
error: false
strict: false
- name: too many arguments
template: '{{ a | compact: ''foo'', ''bar'' }}'
want: ''
context: {}
partials: {}
error: true
strict: false
- name: liquid.golden.concat_filter
tests:
- name: left value contains non string
template: '{{ a | concat: b | join: ''#'' }}'
want: a#b#5#c#d
context:
a:
- a
- b
- 5
b:
- c
- d
partials: {}
error: false
strict: false
- name: left value is not array-like
template: '{{ a | concat: b | join: ''#'' }}'
want: ab#c#d
context:
a: ab
b:
- c
- d
partials: {}
error: false