summaryrefslogtreecommitdiff
path: root/test/stdout/0002
blob: 2cb01372e75d0cd282b51d1eaa12ddd5faeae05b (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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
> 
> # These expansions can test variables in the configuration, but as there
> # is no message being processed, there is no message-related data. But
> # that of course gets tested in plenty of other places.
> 
> # Some fixed variables
> 
> exim_path: TESTSUITE/eximdir/exim
> exim_version: x.yz
> config_dir: TESTSUITE
> config_file: TESTSUITE/test-config
> primary_hostname: myhost.test.ex
> primary_hostname: myhost.test.ex
> qualify_domain: myhost.test.ex
> bounce_return_size_limit: 102400
> spool_directory: TESTSUITE/spool
> queue_name: 
> Failed: unknown variable in "${unknown}"
> h_subject: (should be empty)
> h_subject: (should be empty)
> Failed: unknown expansion operator "header_subject"
> 
> # $message_headers should be empty
> message_headers: ><
> 
> # Continuation
> xy
> xy
> 
> # Overlong names and overbig numbers
> 
> Failed: unknown variable name "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
> Failed: unknown variable in "${aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa}"
> +
> +
> 
> eval:   0
> eval:   1
> eval:   -1
> eval:   1
> eval:   2
> eval:   7
> eval:   9
> eval:   4
> eval:   6
> eval:   42
> Failed: error in expression evaluation: expecting number or opening parenthesis (after processing "")
> eval:   -2
> eval:   1
> eval:   1
> Failed: error in expression evaluation: expecting closing parenthesis (after processing "-2 - (-3")
> Failed: error in expression evaluation: expecting operator (after processing "-2 - -3")
> eval:   1
> eval:   -5
> eval:   1
> eval:   40962
> eval:   63
> Failed: error in expression evaluation: expecting operator (after processing "0")
> eval10: 77
> eval10: 8
> Failed: error in expression evaluation: expecting operator (after processing "0")
> eval:   4
> eval:   4
> eval:   4
> eval:   13
> eval:   9
> eval:   6
> eval:   3
> eval:   0
> eval:   24
> eval:   4608
> eval:   4608
> eval:   -4608
> 
> # List operations
> 
> filter: "a:b:c"
> filter: a:c
> filter: a'c
> filter: ''a' ''c
> filter: ""
> 
> map: ""
> map: a:b:c
> map: ::a::: ::b::: ::c::
> map: fail string
> map: []:[b]:[c]
> 
> reduce: "+"
> reduce: +abc
> reduce: 6
> reduce: 9
> # Check for extract corrupting reduce's 
> reduce: a , b
> 
> listnamed: *.aa.bb : ^\Nxxx(.*)
> listnamed: *.aa.bb : ^\Nxxx(.*)
> listnamed: V4NET.11.12.13 : iplsearch;TESTSUITE/aux-fixed/0002.iplsearch
> listnamed: *.aa.bb : ^\Nxxx(.*) : ;;
> listnamed: a : b;c : *.aa.bb : ^\Nxxx(.*) : ;; : 2001::630::212::8::204::::b664
> Failed: "nolist" is not a named list
> listnamed: *.aa.bb : ^\Nxxx(.*)
> Failed: "hlist" is not a domain named list
> Failed: bad suffix on "list" operator
> 
> listcount: 3
> listcount: 0
> listcount: 3
> listcount: 2
> 
> listextract: b
> listextract: XcX
> listextract: 
> listextract: 
> listextract: fail
> Failed: "listextract" failed and "fail" requested
> 
> listquote: abcd
> listquote: ab::cd
> listquote: ::a::b::c::d::
> listquote: ab::::cd
> listquote: ab:cd
> listquote: ab;;cd
> listquote:   ab  cd
> listquote: < >
> 
> sort: 1:2:3:4
> sort: 4,3,2,1
> sort: a:aa:B:c
> sort: 10 smtp.ex.com:100 r2.ex.com:666 r99.ex.com
> sort: 10,smtp.ex.com:100,r2.ex.com:666,r99.ex.com
> sort: ""
> 
> # Tests with iscntrl() and illegal separators
> 
> map: 'a'
''
'b'
'c'
> 
> Failed: error in expression evaluation: expecting number or opening parenthesis (after processing "0+") inside "reduce" item
> reduce: 6
> reduce: 6
> reduce: 6
> 
> # Operators
> 
> Failed: Not enough arguments for 'acl' (min is 1)
> Failed: Not enough arguments for 'acl' (min is 1)
> Failed: ERROR from acl "a_nosuch"
> acl: (0) [] []
> acl: (1) [person@dom.ain] []
> acl: (2) [firstarg] [secondarg]
> acl: (1) [arg with spaces] []
> acl: 
> acl: 
> acl: (0) [] []
> acl: (1) [person@dom.ain] []
> Failed: DEFER from acl "a_defer"
> acl: (2) [new arg1] [top_arg_1]
> acl:  (1) [1] [] (1) [2] [] (1) [3] [] (1) [4] []
> 
> addrss: local-part@dom.ain
> addrss: local-part@dom.ain
> addrss: local-part@dom.ain
> addrss: local-part@dom.ain
> addrss: local-part@dom.ain
> addrss: local-part.dot-atom@dom.ain
> addrss: local-part@dom.ain
> domain: dom.ain
> domain: dom.ain
> domain: dom.ain
> domain: 
> 
> addresses: ''abc@xyz' ''pqr@xyz
> addresses: local-part@dom.ain
> addresses: local-part@dom.ain+xyz@abc
> addresses: local-part@dom.ain:xyz@abc:p@q:r@s
> addresses: 
> Failed: output separator missing in expanding ${addresses:>}
> 
> escape:     B7\267F2\362
> excape8bit: undisturbed text	tab
newline	tab\134backslash ~tilde\177DEL\200\201.
> 
> expand: $primary_hostname myhost.test.ex
> hash:   jmg monty fbWx
> hash:   abcX abX aX X
> hex2b64:EjRWeA==
> hex2b64:q83v
> hex2b64:q83v
> hex2b64:Gis8TV5v
> Failed: "1a2b3c4d5e6" contains an odd number of characters
> Failed: "1a2b3c4d5e6g" is not a hex string
> hex2b64:MPPJPkZDbetYunCBao7BJA==
> hex2b64:ztcfpyNSMb7Tg/rP3EHE3cwi7PE=
> 
> base32: 0  <>
> base32: 1  <b>
> base32: 31 <7>
> base32: 32 <ba>
> base32: 42 <bk>
> Failed: argument for base32 operator is "0x1", which is not a decimal number
> 
> base32d: 0  0
> base32d: 1  1
> base32d: 31 31
> base32d: 32 32
> base32d: 42 42
> Failed: argument for base32d operator is "ABC", which is not a base 32 number
> 
> the base62 operator is actually a base36 operator in the Darwin and Cygwin
> environments. Write cunning tests that produce the same output in both cases,
> while doing a reasonable check.
> 
> base62:  OK
> base62d: OK
> base62d: OK
> Failed: argument for base62 operator is "12345x", which is not a decimal number
> Failed: argument for base62d operator is "0003D7.", which is not a base 36/62 number
> 
> hmac:   dd97e3ba5d1a61b5006108f8c8252953
> hmac:   0210cf9d274b53f1550f657c378b29e8bfed1064
> md5:    77add1d5f41223d5582fca736a5cb335
> sha1:   DA39A3EE5E6B4B0D3255BFEF95601890AFD80709
> sha1:   A9993E364706816ABA3E25717850C26C9CD0D89D
> mask:   192.168.10.192/28
> mask:   192.168.10.206/32
> Failed: mask value too big in "192.168.10.206/33"
> mask:   0.0.0.0/0
> Failed: missing mask value in "192.168.10.206"
> Failed: "a.b.c.d" is not an IP address
> ipv6denorm: 0000:0000:0000:0000:0000:0000:0000:0001
> ipv6denorm: fe00:0000:0000:0000:0000:0000:0000:0001
> ipv6denorm: 0000:0000:0000:0000:0000:ffff:c0a8:0001
> ipv6denorm: fe80:0000:0000:0000:0000:0000:c0a8:0001
> ipv6norm:   ::1
> ipv6norm:   2a00::
> ipv6norm:   2a00::1
> ipv6norm:   2a00:eadf::1:0
> ipv6norm:   2a00:eadf:0:1::
> ipv6norm:   2a00::
> ipv6norm:   2a00:2:3:4:5:6:7:8
> nhash:  19 0/61
> lc/uc:  the quick  BROWN FOX
> length: The quick  abc
> lclpt:  local-part
> lclpt:  local-part
> lclpt:  local.part
> lclpt:  a.b.c
> quote:  aZ09_.-Q "ab*cd" "abcd\"ef"
> quote:  "nl(\n)"
> quote:  "cr(\r)"
> quote:  "tab(	)"
> quote:  "xff(ÿ)"
> quote:  Empty>""<
> quote_local_part: abcd
> quote_local_part: O'Reilly
> quote_local_part: "a space"
> quote_local_part: ".something"
> quote_local_part: "something."
> quote_local_part: joe.bloggs
> quote_local_part: a!b
> quote_local_part: "x@y"
> quote_local_part: ab*cd
> quote_local_part: "x:y"
> quote_local_part: "abcd\"ef"
> quote_local_part: ""
> rxquote:aZ09\_\,\-Q ab\*cd abcd\"ef
> hexquote: \x01\x02\x03\x04\x05\x06\x07\x20\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x20\x10\x11\x12\x13\x14\x15\x16\x17\x20\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20\x20!"#$%&'\x20()*+,-./\x2001234567\x2089:;<=>?\x20@ABCDEFG\x20HIJKLMNO\x20PQRSTUVW\x20XYZ[\]^_\x20`abcdefg\x20hijklmno\x20pqrstuvw\x20xyz{|}~\x7f
> substr: ba 34  1
> substr: barb rhuba
> substr: 
> substr: 
> str2b64:YWJjZA==
> str2b64:VGhlIHF1aWNrIGJyb3duIAogZm94
> base64: YWJjZA==
> base64: VGhlIHF1aWNrIGJyb3duIAogZm94
> base64d:abcd
> base64d:The quick brown 
 fox
> strlen: 0
> strlen: 1
> strlen: 8
> time_eval:     10
> time_eval:     7200
> time_eval:     86700
> time_eval:     788645
> Failed: string "14" is not an Exim time interval in "time_eval" operator
> Failed: string "rhubarb" is not an Exim time interval in "time_eval" operator
> time_interval: 0s
> time_interval: 44s
> time_interval: 1w4d13h46m39s
> Failed: string "-1" is not a positive number in "time_interval" operator
> Failed: string "rhubarb" is not a positive number in "time_interval" operator
> 
> # stat is a bit tricky, but some of the fields of the aux-var directory
> # should be the same on all systems
> 
> stat:   40755
> stat:   drwxr-xr-x
> Failed: stat(/a/non/existent/file) failed: No such file or directory
> 
> # "Operators" that have expanded arguments
> 
> hash:   jmg monty fbWx
> hash:   abcX abX aX X
> nhash:  19 0/61
> length: The quick  abc
> substr: ba 34  1
> substr: 
> 
> # Error forms
> 
> Failed: Not enough arguments for 'hash' (min is 2)
> Failed: "nonnumber" is not a number (in "hash" expansion)
> Failed: Too many arguments for 'hash' (max is 3)
> Failed: "-2" is not a positive number (in "substr" expansion)
> 
> # Skipped operators
> 
> addrss: NO
> domain: NO
> escape: NO
> expand: NO
> hash:   NO
> md5:    NO
> mask:   NO
> 
> # Number suffixes in conditions
> 1k: y
> 1K: y
> 1M: y
> 1G: y
> 
> # Numeric overflow
> # >32b should work, >64b not
> 
> 1 > 2047M                n
> 1 > 2048M                n
> 1 > 4096000000           n
> 1 > 4096M                n
> 1 > 4611686018427387904  n
> Failed: absolute value of integer "46116860184273879040" is too large (overflow)
> 
> # Conditions
> 
> 2=2:    y
> 2==2:   y
> 3=2:    n
> 2==3:   n
> !2=2:   n
> !2==2:  n
> !3=2:   y
> !2==3:  y
> 2>3:    n
> 3>3:    n
> 4>3:    y
> 1>-1:   y
> 2>=3:   n
> 3>=3:   y
> 4>=3:   y
> 2<3:    y
> 3<3:    n
> 4<3:    n
> 2<=3:   y
> 3<=3:   y
> 4<=3:   n
> 5<=3:   n
> -3<=1:  y
> 
> 5>3k:   n
> 5>3m:   n
> Failed: invalid integer "3z "
> Failed: integer expected but "a" found
> Failed: integer expected but "${substr_2_2:65535}" found
> 
> >0:     n
> =:      y
> -2<:    y
> 08>07:  y
> 011=11: y
> 
> def:y   y
> def:n   n
> Failed: unknown variable "post" after "def:"
> def:h_f n
> def:h_f n
> Failed: curly-bracket problem in conditional yes/no parsing: 'yes' part did not start with '{'
 remaining string is ':{y}{n}}'
> 
> exists: y
> exists: n
> 
> eq:     y
> eq:     n
> !eq:    n
> !eq:    y
> 
> eqi:    y
> eqi:    y
> eqi:    n
> !eqi:   n
> !eqi:   n
> !eqi:   y
> 
> lt:     y
> lti:    n
> le:     y
> lei:    y
> gt:     n
> gti:    n
> ge:     n
> gei:    y
> 
> isip:   y  1.2.3.4
> isip4:  y  1.2.3.4
> isip6:  n  1.2.3.4
> isip:   n  ::1.2.3.256
> isip4:  n  1.2.3.256
> isip:   n  1:2:3:4
> isip4:  n  1:2:3:4
> isip6:  n  1:2:3:4
> isip:   y      ::1
> isip4:  n      ::1
> isip6:  y      ::1
> isip:   y  fe80::a00:20ff:fe86:a061
> isip4:  n  fe80::a00:20ff:fe86:a061
> isip6:  y  fe80::a00:20ff:fe86:a061
> isip:   y  fe80::1.2.3.4
> isip:   n  rhubarb
> isip4:  n  rhubarb
> isip6:  n  rhubarb
> 
> match:  cdab
> match:  cdab
> match:  cdab
> Failed: "if" failed and "fail" requested
> match:  cd[xyz]ab
> 
> match_domain:    yes
> match_domain:    no
> match_domain:    yes
> match_domain:    yes
> match_domain:    no
> 
>  >x@zz.aa.bb< [zz] >x@zz.aa.bb< 
> 
>  >x@xxxabc< [abc] >x@xxxabc< 
> 
> match_address:   yes
> match_address:   yes
> 
> match_local_part:yes
> match_local_part:yes
> 
> match_ip:        01 true
> match_ip:        02 
> match_ip:        03 true
> match_ip:        04 true
> match_ip:        05 
> match_ip:        06 
> match_ip:        07 true
> match_ip:        08 true
> match_ip:        09 
> match_ip:        10 true
> Failed: "somename" is not an IP address
> match_ip:        12 true
> match_ip:        13 true
> match_ip:        14 true
> match_ip:        15 true
> 
> queue_running:  n
> first_delivery: n
> 
> queue_running after or: y
> first_delivery after or: y
> 
> # acl expansion condition
> acl if: Y:(0) [] []
> acl if: Y:(1) [argY] []
> acl if: N:(2) [argN] [arg2]
> Failed: DEFER from acl "a_defer"
> 
> # Default values for both if strings
> 
> ${if eq{1}{1}}  >true<
> ${if eq{1}{2}}  ><
> 
> # Lookups: DIR is the testing directory. In this test we can only use the
> # lookups that are required in all cases.
> 
> CALLER
> 
> ==X@Y
> ==*
> ==*@Z
> ==*
> 
> data for a.b.c.d
> failed x.y.z
> data for *.p.q
> data for *.p.q
> data for *.p.q
> Failed: "lookup" failed and "fail" requested
> data for *
> 
> q1:  "abc"
> q2:  "xyz":
> q3:  "pqr"  :
> q4:  "a:b" abc continued data (make sure not key)
> q5:  "\"quoted\""
> q6:  "white space"
> q7:  "b\\s"
> 
> abc:   abc
> a.b.c: *.b.c
> ab.c:  *b.c
> xyz:   ^X
> .Xyz:   ^X
> .Zyz:   ^Z
> a b:   "^a +b"
> a  b:  "^a +b"
> a:b:   lookup succeeded
> a.b:   ^a\\.+b
> a..b:  ^a\\.+b
> a9b:   \N^a\d+b
> a99b:  \N^a\d+b
> 
> # Should give the same results as above because expansion does nothing
> 
> abc:   abc
> a.b.c: *.b.c
> ab.c:  *b.c
> xyz:   ^X
> .Xyz:   ^X
> .Zyz:   ^Z
> a b:   "^a +b"
> a  b:  "^a +b"
> a:b:   lookup succeeded
> 
> # Should fail because of no expansion
> 
> a.b:   NO
> a..b:  NO
> a9b:   NO
> a99b:  NO
> 
> # But these should succeed
> 
> a\:b:  ^a\\.+b
> a\:Xb: ^a\\.+b
> 
> # Some tests of case-(in)dependence
> 
> .MiXeD-CD:  Data found for case-dependent MiXeD-CD
> .MixeD-CD:  NOT FOUND
> .MiXeD-Ncd: Data found for case-independent MiXeD-nCD
> .MixeD-Ncd: Data found for case-independent MiXeD-nCD
> 
> # IP address (CIDR) lookups
> 
> 1.2.3.4:      data for 1.2.3.4
> 1.2.3.5:      
> 1.2.3.5:      data for *
> abcd::cdab:   data for abcd::cdab
> 192.168.1.2:  data for 192.168.0.0/16
> 192.168.5.6:  data for 192.168.0.0/16
> abcd:abcd::   data for abcd:abcd::/32
> abcd:abcd:1:: data for abcd:abcd::/32
> abcd:abcd::3  data for abcd:abcd::/32
> Failed: lookup of "rhubarb" gave DEFER: "rhubarb" is not a valid iplsearch key (an IP address, with optional CIDR mask, is wanted): in a host list, use net-iplsearch as the search type
> 
> 
> # Nested Lookups - style 1
> 
> The data for key1->key2
> Failed: "lookup" failed and "fail" requested
> 
> # Nested Lookups - style 2
> 
> The data for key1->key2
> failed for key4
> 
> # Other nesting tests
> 
> 1-in-1
> 2-in-2
> both-in-1,both-in-2
> Failed: "lookup" failed and "fail" requested
> 
> # Lookup quotes for standardly expected lookups
> 
> lsearch  !@#$%^&*()_-+=|\~`1234567890{[}]qwertyuiop:;"'asdfghjkl<,>.?/zxcvbnm
> Failed: unknown lookup type "xxx"
> 
> # Extract
> 
> 2
> 2
> 2
> 2
> empty:<>
> empty:<>
> <3>
> <3>
> empty:<>
> empty:<>
> no Z
> no 4
> Failed: "extract" failed and "fail" requested
> Failed: "extract" failed and "fail" requested
> D
> a:b:c:d:e
> a
> e
> a
> FAIL
> b
> 
> b
> three four
> Failed: first argument of "extract" must not be empty
> Failed: first argument of "extract" must not be empty
> b
> 
> a:b:c
> Failed: missing '}' closing extract inside "map" item
> a:b:c
> 
> # Translation
> 
> abcdea aaa xyz zbcdez
> abcdea a   z   zbcdez
> abcdea a       abcdea
> abcdea abc z   zzzdez
> 
> # Boolean
> "TrUe"                true      EXPECT: true
> "FALSE"               false     EXPECT: false
> " yes"                true      EXPECT: true
> " no"                 false     EXPECT: false
> "yes "                true      EXPECT: true
> "-1"                  true     EXPECT: true
> "0"                   false     EXPECT: false
> "1"                   true      EXPECT: true
> " 0 "                 false     EXPECT: false
> " 1 "                 true      EXPECT: true
> "1111111111111111111" true      EXPECT: true
> "9"                   true      EXPECT: true
> " "                   false     EXPECT: false
> Failed: unrecognised boolean value "text"
> Failed: unrecognised boolean value "text"
> Failed: unrecognised boolean value "-text"
> Failed: unrecognised boolean value "text"
> Failed: unrecognised boolean value "text"
> "00"                  false     EXPECT: false
> "!true"               false     EXPECT: false
> "!false"              true      EXPECT: true
> 
> "TrUe"                true      EXPECT: true
> "FALSE"               false     EXPECT: false
> " yes"                true      EXPECT: true
> " no"                 false     EXPECT: false
> "yes "                true      EXPECT: true
> "-1"                  true      EXPECT: true
> "0"                   false     EXPECT: false
> "1"                   true      EXPECT: true
> " 0 "                 false     EXPECT: false
> " 1 "                 true      EXPECT: true
> "1111111111111111111" true      EXPECT: true
> "9"                   true      EXPECT: true
> " "                   false     EXPECT: false
> "text"                true      EXPECT: true
> " text"               true      EXPECT: true
> "text "               true      EXPECT: true
> " text "              true      EXPECT: true
> "00"                  true      EXPECT: true
> "!true"               false     EXPECT: false
> "!false"              true      EXPECT: true
> 
> # RFC 2047
> 
> abcd      abcd
> <:abcd:>  =?iso-8859-8?Q?=3C=3Aabcd=3A=3E?=
> <:ab cd:> =?iso-8859-8?Q?=3C=3Aab_cd=3A=3E?=
> long:     =?iso-8859-8?Q?_here_we_go=3A_a_string_that_is_going_to_be_encoded=3A_it_will_go_ov?= =?iso-8859-8?Q?er_the_75-char_limit?=
> long:     =?iso-8859-8?Q?_here_we_go=3A_a_string_that_is_going_to_be_encoded=3A_it_will_go_ov?= =?iso-8859-8?Q?er_the_75-char_limit_by_a_long_way=3B_in_fact_this_on?= =?iso-8859-8?Q?e_will_go_over_the_150_character_limit?=
> 
> # RFC 2047 decode
> 
> abcd      abcd
> <:abcd:>  <:abcd:>
> <:ab cd:> <:ab cd:>
> Long:      here we go: a string that is going to be encoded: it will go over the 75-char limit
> Long:      here we go: a string that is going to be encoded: it will go over the 75-char limit by a long way; in fact this one will go over the 150 character limit
> 
> # UTF-8
> 
> abcd      abcd
> aÀÿd      aÀÿd
> toobig    a_d
> 
> # Substitution
> 
> ${sg{abcdefabcdef}{abc}{xyz}}          =xyzdefxyzdef
> ${sg{ab:xy::z}{:}{::}}                 =ab::xy::::z
> ${sg{abcdefabcdef}{(..)[^c]}{>$1<}}    =a><><><ef
> ${sg{abcdefabcdef}{(..)[^c]}{>\$1<}}   =a>bc<>ef<>bc<ef
> ${sg{abcdefabcdef}{(..)[^c]}{>\N$1\N<}}=a>bc<>ef<>bc<ef
> ${sg{abbab}{a*}{+}}                    =++b+b++b+
> 
> # File insertion
> 
> Failed: Not enough arguments for 'readfile' (min is 1)
> abcde
12345

xyz

> abcde12345xyz
> abcde:12345::xyz:
> abcde - 12345 -  - xyz - 
> Failed: failed to open /non/exist/file: No such file or directory
> non-exist
> >abcde!12345!!xyz!<
> 
> # Calling a command
> 
> abcd
1234

> rc=0
> 1
> rc=0
> abcd
1234

> rc=0
> 2
> rc=1
> abcd
1234

> rc=1
> N
> rc=127
> >><<
> rc=0
> 1!=2
> rc=0
> 
> # PRVS
> 
> prvs=xxxxxxxxxx=userx@test.ex
> prvs=xxxxxxxxxx=userx@test.ex
> prvs=xxxxxxxxxx=userx@test.ex
> 
> # Syntax errors
> 
> Failed: prvs third argument must be a single digit
> Failed: prvs third argument must be a single digit
> Failed: prvs third argument must be a single digit
> 
> # Correct checks; can't put explicit addresses in the tests, because they
> # will change over time.
> 
> userx@test.ex
> result=1
> 
> >1< >userx@test.ex< >1<
> result=1
> 
> userx@test.ex
> result=1
> 
> # Incorrect secret
> 
> userx@test.ex
> result=
> 
> 0
> result=
> 
> # Non-prvs address
> 
> >><<
> result=
> 
> # Syntax errors
> 
> Failed: "${tod_log" is not a known operator (or a } is missing in a variable reference)
> Failed: "${tod_log" is not a known operator (or a } is missing in a variable reference)
> Failed: missing } at end of string
> Failed: missing } at end of string
> Failed: hmac algorithm "xxx" is not recognised
> Failed: each subcondition inside an "and{...}" condition must be in its own {}
> Failed: unknown condition "xya" inside "and{...}" condition
> Failed: condition name expected, but found "${lookup{x}lsear" inside "and{...}" condition
> Failed: missing } at end of string - could be header name not terminated by colon
> Failed: curly-bracket problem in conditional yes/no parsing: did not close with '}'
 remaining string is ''
> Failed: missing or misplaced { or } - could be header name not terminated by colon
> Failed: each subcondition inside an "or{...}" condition must be in its own {}
> Failed: missing } at end of condition inside "or" group
> Failed: unknown condition "yes" inside "or{...}" condition
> Failed: non-digit after underscore in "substr_1_"
> Failed: non-digit after underscore in "substr__3"
> 
> # Iterations: forany and forall
> 
> yes
> yes
> yes
> no
> yes
> no
> no
> yes
> yes
> 
> Failed: unknown condition "yes" inside "forany" condition
> Failed: missing } at end of condition inside "forany"
> 
> yes
> no
> no
> no
> 
> no
> yes
> yes
> yes
> 
> # Expect yes
> outer=yes item='' (unset)
> 
> # Expect no
> outer=no
> 
> # Error inside nest - check message is helpful
> Failed: missing } at end of condition inside "forall" inside "forany" condition
> 
> 
> # Miscellaneous (for bug fixes, etc)
> 
> true
> 
> # Environment access
> 
> CALLER
> correct
> 
> # JSON
> 
> "http://www.example.com/image/481989943"
> 100
> 943
> 943
> 
> "green"
> green
> <>
> expect: <>
> 
> 59
> 59
> 
> {"1":116, "2":943, "3":234}
> expect: {"1":116, "2":943, "3":234}
> 
> {"1":116, "2":943, "3":234}
> expect: {"1":116, "2":943, "3":234}
> 
> <>
> expect: <>
> <>
> expect: <>
> 
> yes
> yes
> 
> 
> escape: B7·F2ò
> 
> primary_hostname: myhost.test.ex
> sender_address: sndr@dom
> match:  cdab
> Failed: "if" failed and "fail" requested
> yes
> match_address:   no
> 
> primary_hostname: myhost.test.ex
> match:  cdab
> Failed: "if" failed and "fail" requested
> yes
> match_address:   no
> 
> -be Sender host name and address etc, all unset
> -oMa  sender_host_address = 
>       sender_host_port = 0
> -oMaa sender_host_authenticated = 
> -oMai authenticated_id = CALLER
> -oMas authenticated_sender = CALLER@myhost.test.ex
> -oMi  interface_address = 
>       interface_port = -1
> -oMr  received_protocol = 
> -oMs  sender_host_name = 
> -oMt  sender_ident = CALLER
> 
> -be Sender host name and address etc, all set except host name.
> -oMa  sender_host_address = V4NET.0.0.1
>       sender_host_port = 1234
> -oMaa sender_host_authenticated = AAA
> -oMai authenticated_id = philip
> -oMas authenticated_sender = xx@yy.zz
> -oMi  interface_address = 1.1.1.1
>       interface_port = 99
> -oMr  received_protocol = special
> -oMt  sender_ident = me
> 
> -be Sender host name explicitly set
> -oMa  sender_host_address = V4NET.0.0.1
>       sender_host_port = 1234
> -oMs  sender_host_name = my.host.name
> 
> be Sender host name lookup fails (V4NET.11.12.13 is not reverse registered)
> -oMs  sender_host_name = 
>       host_lookup_failed = 1
> 
> -be Sender host name and protocol set by Sendmail-compatible option
> -p  received_protocol = special
> -p  sender_host_name = host.name
> 
> -be Sender host name and address etc, all set except host name
> -oMa  sender_host_address = V4NET.0.0.1
>       sender_host_port = 1234
> -oMaa sender_host_authenticated = AAA
> -oMai authenticated_id = philip
> -oMas authenticated_sender = xx@yy.zz
> -oMi  interface_address = 1.1.1.1
>       interface_port = 99
> -oMr  received_protocol = special
> ----> No lookup yet: No
> -oMs  sender_host_name = ten-1.test.ex
> -oMt  sender_ident = me
> 

**** SMTP testing session as if from host V4NET.0.0.1
**** but without any ident (RFC 1413) callback.
**** This is not for real!

550 Administrative prohibition

**** SMTP testing session as if from host V4NET.0.0.2
**** but without any ident (RFC 1413) callback.
**** This is not for real!

550 Administrative prohibition

**** SMTP testing session as if from host V4NET.0.0.0
**** but without any ident (RFC 1413) callback.
**** This is not for real!

220 myhost.test.ex ESMTP Exim x.yz Tue, 2 Mar 1999 09:44:33 +0000
250 OK
250 Accepted
354 Enter message, ending with "." on a line by itself
550 reply_address=<>
250 OK
250 Accepted
354 Enter message, ending with "." on a line by itself
550 reply_address=<a@b>
250 OK
250 Accepted
354 Enter message, ending with "." on a line by itself
550 reply_address=<c@d>
250 OK
250 Accepted
354 Enter message, ending with "." on a line by itself
550 reply_address=<>
250 OK
250 Accepted
354 Enter message, ending with "." on a line by itself
550 reply_address=<x@y>
221 myhost.test.ex closing connection

**** SMTP testing session as if from host V4NET.0.0.0
**** but without any ident (RFC 1413) callback.
**** This is not for real!

220 myhost.test.ex ESMTP Exim x.yz Tue, 2 Mar 1999 09:44:33 +0000
250 OK
250 Accepted
354 Enter message, ending with "." on a line by itself
550 reply_address=<>
221 myhost.test.ex closing connection

**** SMTP testing session as if from host V4NET.0.0.0
**** but without any ident (RFC 1413) callback.
**** This is not for real!

220 myhost.test.ex ESMTP Exim x.yz Tue, 2 Mar 1999 09:44:33 +0000
250 OK
250 Accepted
354 Enter message, ending with "." on a line by itself
550 reply_address=<>
221 myhost.test.ex closing connection
> match_ip:        15 
> match_ip:        16 
> 
> in list
> in list
> 
> '${listextract {2} {<. my.target.host.name}}'  =>   'target'
>