a_nag_group_lookup(): FIX used case-i?sensitive hash function!
[s-mailx.git] / cc-test.sh
blob6c78e598b0693c93a37fa0448b85645c1c38846c
1 #!/bin/sh -
2 #@ Usage: ./cc-test.sh [--check-only s-mailx-binary]
3 #@ TODO _All_ the tests should happen in a temporary subdir.
4 # Public Domain
6 # We need *stealthmua* regardless of $SOURCE_DATE_EPOCH, the program name as
7 # such is a compile-time variable
8 ARGS='-:/ -# -Sdotlock-ignore-error -Sexpandaddr=restrict'
9 ARGS="${ARGS}"' -Smime-encoding=quoted-printable -Snosave -Sstealthmua'
10 ADDARG_UNI=-Sttycharset=UTF-8
11 CONF=./make.rc
12 BODY=./.cc-body.txt
13 MBOX=./.cc-test.mbox
14 MAIL=/dev/null
15 #UTF8_LOCALE= autodetected unless set
17 # Note valgrind has problems with FDs in forked childs, which causes some tests
18 # to fail (the FD is rewound and thus will be dumped twice)
19 MEMTESTER=
20 #MEMTESTER='valgrind --leak-check=full --log-file=.vl-%p '
22 if ( command -v command ) >/dev/null 2>&1; then :; else
23 command() {
24 shift
25 which "${@}"
29 MAKE="${MAKE:-`command -v make`}"
30 awk=${awk:-`command -v awk`}
31 cat=${cat:-`command -v cat`}
32 cksum=${cksum:-`command -v cksum`}
33 rm=${rm:-`command -v rm`}
34 sed=${sed:-`command -v sed`}
35 grep=${grep:-`command -v grep`}
37 # Problem: force $SHELL to be a real shell. It seems some testing environments
38 # use nologin(?), but we need a real shell for command execution
39 if { echo ${SHELL} | ${grep} nologin; } >/dev/null 2>&1; then
40 echo >&2 '$SHELL seems to be nologin, overwriting to /bin/sh!'
41 SHELL=/bin/sh
42 export SHELL
45 # We sometimes "fake" sendmail(1) a.k.a. *mta* with a shell wrapper, and it
46 # happens that /bin/sh is often terribly slow
47 if command -v dash >/dev/null 2>&1; then
48 MYSHELL="`command -v dash`"
49 elif command -v mksh >/dev/null 2>&1; then
50 MYSHELL="`command -v mksh`"
51 else
52 MYSHELL="${SHELL}"
55 ## -- >8 -- 8< -- ##
57 export ARGS ADDARG_UNI CONF BODY MBOX MAIL MAKE awk cat cksum rm sed grep
59 LC_ALL=C LANG=C
60 TZ=UTC
61 # Wed Oct 2 01:50:07 UTC 1996
62 SOURCE_DATE_EPOCH=844221007
64 export LC_ALL LANG TZ SOURCE_DATE_EPOCH
65 unset POSIXLY_CORRECT
67 usage() {
68 echo >&2 "Usage: ./cc-test.sh [--check-only s-mailx-binary]"
69 exit 1
72 CHECK_ONLY= MAILX=
73 if [ "${1}" = --check-only ]; then
74 CHECK_ONLY=1
75 MAILX=${2}
76 [ -x "${MAILX}" ] || usage
78 RAWMAILX=${MAILX}
79 MAILX="${MEMTESTER}${MAILX}"
80 export RAWMAILX MAILX
82 if [ -n "${CHECK_ONLY}" ] && [ -z "${UTF8_LOCALE}" ]; then
83 # Try ourselfs for nl_langinfo(CODESET) output first (requires a new version)
84 i=`LC_ALL=C.utf8 "${RAWMAILX}" ${ARGS} -X '
85 \define cset_test {
86 \if [ "${ttycharset}" @i=% utf ]
87 \echo $LC_ALL
88 \xit 0
89 \end
90 \if [ "${#}" -gt 0 ]
91 \wysh set LC_ALL=${1}
92 \shift
93 \eval xcall cset_test "${@}"
94 \end
95 \xit 1
97 \call cset_test C.UTF-8 POSIX.utf8 POSIX.UTF-8 en_EN.utf8 en_EN.UTF-8 \
98 en_US.utf8 en_US.UTF-8
100 [ $? -eq 0 ] && UTF8_LOCALE=$i
102 if [ -z "${UTF8_LOCALE}" ] && command -v locale >/dev/null 2>&1; then
103 UTF8_LOCALE=`locale -a | { m=
104 while read n; do
105 if { echo ${n} | ${grep} -i 'utf-\{0,1\}8'; } >/dev/null 2>&1; then
106 m=${n}
107 if { echo ${n} | ${grep} -e POSIX -e en_EN -e en_US; }; then
108 exit 0
111 m=${n}
112 done
113 echo ${m}
118 ESTAT=0
120 TRAP_EXIT_ADDONS=
121 trap "${rm} -rf \"${BODY}\" \"${MBOX}\" \${TRAP_EXIT_ADDONS}" EXIT
122 trap "exit 1" HUP INT TERM
124 # cc_all_configs()
125 # Test all configs TODO doesn't cover all *combinations*, stupid!
126 cc_all_configs() {
127 < ${CONF} ${awk} '
128 BEGIN {
129 NOTME["OPT_AUTOCC"] = 1
130 NOTME["OPT_DEBUG"] = 1
131 NOTME["OPT_DEVEL"] = 1
132 NOTME["OPT_NOEXTMD5"] = 1
133 NOTME["OPT_ASAN_ADDRESS"] = 1
134 NOTME["OPT_ASAN_MEMORY"] = 1
135 NOTME["OPT_FORCED_STACKPROT"] = 1
136 NOTME["OPT_NOMEMDBG"] = 1
137 NOTME["OPT_NYD2"] = 1
138 i = 0
140 /^[[:space:]]*OPT_/ {
141 sub(/^[[:space:]]*/, "")
142 # This bails for UnixWare 7.1.4 awk(1), but preceeding = with \
143 # does not seem to be a compliant escape for =
144 #sub(/=.*$/, "")
145 $1 = substr($1, 1, index($1, "=") - 1)
146 if (NOTME[$1])
147 next
148 data[i++] = $1
150 END {
151 # Doing this completely sequentially and not doing make distclean in
152 # between runs should effectively result in lesser compilations.
153 # It is completely dumb nonetheless... TODO
154 for (j = 1; j < i; ++j) {
155 for (k = 1; k < j; ++k)
156 printf data[k] "=1 "
157 for (k = j; k < i; ++k)
158 printf data[k] "=0 "
159 printf "OPT_AUTOCC=1\n"
161 for (j = 1; j < i; ++j) {
162 for (k = 1; k < j; ++k)
163 printf data[k] "=0 "
164 for (k = j; k < i; ++k)
165 printf data[k] "=1 "
166 printf "OPT_AUTOCC=1\n"
168 # With debug
169 for (j = 1; j < i; ++j) {
170 for (k = 1; k < j; ++k)
171 printf data[k] "=1 "
172 for (k = j; k < i; ++k)
173 printf data[k] "=0 "
174 printf "OPT_AUTOCC=1\n"
175 printf "OPT_DEBUG=1\n"
177 for (j = 1; j < i; ++j) {
178 for (k = 1; k < j; ++k)
179 printf data[k] "=0 "
180 for (k = j; k < i; ++k)
181 printf data[k] "=1 "
182 printf "OPT_AUTOCC=1\n"
183 printf "OPT_DEBUG=1\n"
186 printf "CONFIG=NULL OPT_AUTOCC=0\n"
187 printf "CONFIG=NULL OPT_AUTOCC=1\n"
188 printf "CONFIG=NULLI OPT_AUTOCC=0\n"
189 printf "CONFIG=NULLI OPT_AUTOCC=1\n"
190 printf "CONFIG=MINIMAL OPT_AUTOCC=0\n"
191 printf "CONFIG=MINIMAL OPT_AUTOCC=1\n"
192 printf "CONFIG=NETSEND OPT_AUTOCC=0\n"
193 printf "CONFIG=NETSEND OPT_AUTOCC=1\n"
194 printf "CONFIG=MAXIMAL OPT_AUTOCC=0\n"
195 printf "CONFIG=MAXIMAL OPT_AUTOCC=1\n"
196 printf "CONFIG=DEVEL OPT_AUTOCC=0\n"
197 printf "CONFIG=DEVEL OPT_AUTOCC=1\n"
198 printf "CONFIG=ODEVEL OPT_AUTOCC=0\n"
199 printf "CONFIG=ODEVEL OPT_AUTOCC=1\n"
201 ' | while read c; do
202 printf "\n\n##########\n$c\n"
203 printf "\n\n##########\n$c\n" >&2
204 sh -c "${MAKE} ${c} all test"
205 done
206 ${MAKE} distclean
209 have_feat() {
210 ( "${RAWMAILX}" ${ARGS} -X'echo $features' -Xx |
211 ${grep} +${1} ) >/dev/null 2>&1
214 t_prolog() {
215 ${rm} -rf "${BODY}" "${MBOX}" ${TRAP_EXIT_ADDONS}
216 TRAP_EXIT_ADDONS=
218 t_epilog() {
219 t_prolog
222 check() {
223 restat=${?} tid=${1} eestat=${2} f=${3} s=${4}
224 #x=`echo ${tid} | tr "/:=" "__-"`
225 #cp -f "${f}" "${TMPDIR}/${x}"
226 [ "${eestat}" != - ] && [ "${restat}" != "${eestat}" ] &&
227 err "${tid}" 'unexpected exit status: '"${restat} != ${eestat}"
228 csum="`${cksum} < ${f}`"
229 if [ "${csum}" = "${s}" ]; then
230 printf '%s: ok\n' "${tid}"
231 else
232 ESTAT=1
233 printf '%s: error: checksum mismatch (got %s)\n' "${tid}" "${csum}"
237 err() {
238 ESTAT=1
239 printf '%s: error: %s\n' ${1} "${2}"
242 ex0_test() {
243 [ $? -ne 0 ] && err $1 'unexpected non-0 exit status'
246 exn0_test() {
247 [ $? -eq 0 ] && err $1 'unexpected 0 exit status'
250 if ( [ "$((1 + 1))" = 2 ] ) >/dev/null 2>&1; then
251 add() {
252 echo "$((${1} + ${2}))"
254 elif command -v expr >/dev/null 2>&1; then
255 add() {
256 echo `expr ${1} + ${2}`
258 else
259 add() {
260 echo `${awk} 'BEGIN{print '${1}' + '${2}'}'`
264 if ( [ "$((2 % 3))" = 2 ] ) >/dev/null 2>&1; then
265 modulo() {
266 echo "$((${1} % ${2}))"
268 elif command -v expr >/dev/null 2>&1; then
269 modulo() {
270 echo `expr ${1} % ${2}`
272 else
273 modulo() {
274 echo `${awk} 'BEGIN{print '${1}' % '${2}'}'`
278 # t_behave()
279 # Basic (easily testable) behaviour tests
280 t_behave() {
281 t_behave_X_opt_input_command_stack
282 t_behave_X_errexit
283 t_behave_wysh
284 t_behave_input_inject_semicolon_seq
285 t_behave_commandalias
286 t_behave_ifelse
287 t_behave_localopts
288 t_behave_macro_param_shift
289 t_behave_addrcodec
290 t_behave_vexpr
291 t_behave_call_ret
292 t_behave_xcall
293 t_behave_vpospar
294 t_behave_atxplode
296 t_behave_mbox
298 t_behave_alternates
299 t_behave_alias
300 # FIXME t_behave_mlist
301 t_behave_filetype
303 t_behave_record_a_resend
305 t_behave_e_H_L_opts
306 t_behave_compose_hooks
307 t_behave_message_injections
308 t_behave_mime_types_load_control
310 t_behave_smime
312 t_behave_maildir
313 t_behave_mass_recipients
314 t_behave_lreply_futh_rth_etc
315 t_behave_iconv_mbyte_base64
318 t_behave_X_opt_input_command_stack() {
319 t_prolog
321 ${cat} <<- '__EOT' > "${BODY}"
322 echo 1
323 define mac0 {
324 echo mac0-1 via1 $0
326 call mac0
327 echo 2
328 source '\
329 echo "define mac1 {";\
330 echo " echo mac1-1 via1 \$0";\
331 echo " call mac0";\
332 echo " echo mac1-2";\
333 echo " call mac2";\
334 echo " echo mac1-3";\
335 echo "}";\
336 echo "echo 1-1";\
337 echo "define mac2 {";\
338 echo " echo mac2-1 via1 \$0";\
339 echo " call mac0";\
340 echo " echo mac2-2";\
341 echo "}";\
342 echo "echo 1-2";\
343 echo "call mac1";\
344 echo "echo 1-3";\
345 echo "source \"\
346 echo echo 1-1-1 via1 \$0;\
347 echo call mac0;\
348 echo echo 1-1-2;\
349 | \"";\
350 echo "echo 1-4";\
352 echo 3
353 call mac2
354 echo 4
355 undefine *
356 __EOT
358 # The -X option supports multiline arguments, and those can internally use
359 # reverse solidus newline escaping. And all -X options are joined...
360 APO=\'
361 < "${BODY}" ${MAILX} ${ARGS} \
362 -X 'e\' \
363 -X ' c\' \
364 -X ' h\' \
365 -X ' o \' \
366 -X 1 \
368 define mac0 {
369 echo mac0-1 via2 $0
371 call mac0
372 echo 2
375 source '${APO}'\
376 echo "define mac1 {";\
377 echo " echo mac1-1 via2 \$0";\
378 echo " call mac0";\
379 echo " echo mac1-2";\
380 echo " call mac2";\
381 echo " echo mac1-3";\
382 echo "}";\
383 echo "echo 1-1";\
384 echo "define mac2 {";\
385 echo " echo mac2-1 via2 \$0";\
386 echo " call mac0";\
387 echo " echo mac2-2";\
388 echo "}";\
389 echo "echo 1-2";\
390 echo "call mac1";\
391 echo "echo 1-3";\
392 echo "source \"\
393 echo echo 1-1-1 via2 \$0;\
394 echo call mac0;\
395 echo echo 1-1-2;\
396 | \"";\
397 echo "echo 1-4";\
398 | '${APO}'
399 echo 3
402 call mac2
403 echo 4
404 undefine *
405 ' > "${MBOX}"
407 check behave:x_opt_input_command_stack 0 "${MBOX}" '1786542668 416'
409 t_epilog
412 t_behave_X_errexit() {
413 t_prolog
415 ${cat} <<- '__EOT' > "${BODY}"
416 echo one
417 echos nono
418 echo two
419 __EOT
421 </dev/null ${MAILX} ${ARGS} -Snomemdebug \
422 -X'echo one' -X' echos nono ' -X'echo two' \
423 > "${MBOX}" 2>&1
424 check behave:x_errexit-1 0 "${MBOX}" '916157812 53'
426 </dev/null ${MAILX} ${ARGS} -X'source '"${BODY}" -Snomemdebug \
427 > "${MBOX}" 2>&1
428 check behave:x_errexit-2 0 "${MBOX}" '916157812 53'
430 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u -Snomemdebug \
431 > "${MBOX}" 2>&1
432 check behave:x_errexit-3 0 "${MBOX}" '916157812 53'
436 </dev/null ${MAILX} ${ARGS} -Serrexit -Snomemdebug \
437 -X'echo one' -X' echos nono ' -X'echo two' \
438 > "${MBOX}" 2>&1
439 check behave:x_errexit-4 1 "${MBOX}" '2118430867 49'
441 </dev/null ${MAILX} ${ARGS} -X'source '"${BODY}" -Serrexit -Snomemdebug \
442 > "${MBOX}" 2>&1
443 check behave:x_errexit-5 1 "${MBOX}" '2118430867 49'
445 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u -Serrexit -Snomemdebug \
446 > "${MBOX}" 2>&1
447 check behave:x_errexit-6 1 "${MBOX}" '12955965 172'
449 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u -Sposix -Snomemdebug \
450 > "${MBOX}" 2>&1
451 check behave:x_errexit-7 1 "${MBOX}" '12955965 172'
453 ## Repeat 4-7 with ignerr set
455 ${sed} -e 's/^echos /ignerr echos /' < "${BODY}" > "${MBOX}"
457 </dev/null ${MAILX} ${ARGS} -Serrexit -Snomemdebug \
458 -X'echo one' -X'ignerr echos nono ' -X'echo two' \
459 > "${BODY}" 2>&1
460 check behave:x_errexit-8 0 "${BODY}" '916157812 53'
462 </dev/null ${MAILX} ${ARGS} -X'source '"${MBOX}" -Serrexit -Snomemdebug \
463 > "${BODY}" 2>&1
464 check behave:x_errexit-9 0 "${BODY}" '916157812 53'
466 </dev/null MAILRC="${MBOX}" ${MAILX} ${ARGS} -:u -Serrexit -Snomemdebug \
467 > "${BODY}" 2>&1
468 check behave:x_errexit-10 0 "${BODY}" '916157812 53'
470 </dev/null MAILRC="${MBOX}" ${MAILX} ${ARGS} -:u -Sposix -Snomemdebug \
471 > "${BODY}" 2>&1
472 check behave:x_errexit-11 0 "${BODY}" '916157812 53'
474 t_epilog
477 t_behave_wysh() {
478 t_prolog
480 ${cat} <<- '__EOT' > "${BODY}"
482 echo abcd
483 echo a'b'c'd'
484 echo a"b"c"d"
485 echo a$'b'c$'d'
486 echo 'abcd'
487 echo "abcd"
488 echo $'abcd'
489 echo a\ b\ c\ d
490 echo a 'b c' d
491 echo a "b c" d
492 echo a $'b c' d
494 echo 'a$`"\'
495 echo "a\$\`'\"\\"
496 echo $'a\$`\'\"\\'
497 echo $'a\$`\'"\\'
498 # DIET=CURD TIED=
499 echo 'a${DIET}b${TIED}c\${DIET}d\${TIED}e' # COMMENT
500 echo "a${DIET}b${TIED}c\${DIET}d\${TIED}e"
501 echo $'a${DIET}b${TIED}c\${DIET}d\${TIED}e'
503 echo a$'\101\0101\x41\u0041\u41\U00000041\U41'c
504 echo a$'\u0041\u41\u0C1\U00000041\U41'c
505 echo a$'\377'c
506 echo a$'\0377'c
507 echo a$'\400'c
508 echo a$'\0400'c
509 echo a$'\U1100001'c
511 echo a$'b\0c'd
512 echo a$'b\00c'de
513 echo a$'b\000c'df
514 echo a$'b\0000c'dg
515 echo a$'b\x0c'dh
516 echo a$'b\x00c'di
517 echo a$'b\u0'dj
518 echo a$'b\u00'dk
519 echo a$'b\u000'dl
520 echo a$'b\u0000'dm
521 echo a$'b\U0'dn
522 echo a$'b\U00'do
523 echo a$'b\U000'dp
524 echo a$'b\U0000'dq
525 echo a$'b\U00000'dr
526 echo a$'b\U000000'ds
527 echo a$'b\U0000000'dt
528 echo a$'b\U00000000'du
530 echo a$'\cI'b
531 echo a$'\011'b
532 echo a$'\x9'b
533 echo a$'\u9'b
534 echo a$'\U9'b
535 echo a$'\c@'b c d
536 __EOT
538 if [ -z "${UTF8_LOCALE}" ]; then
539 echo 'Skip behave:wysh_unicode, no UTF8_LOCALE'
540 else
541 < "${BODY}" DIET=CURD TIED= \
542 LC_ALL=${UTF8_LOCALE} ${MAILX} ${ARGS} 2>/dev/null > "${MBOX}"
543 check behave:wysh_unicode 0 "${MBOX}" '475805847 317'
546 < "${BODY}" DIET=CURD TIED= ${MAILX} ${ARGS} > "${MBOX}" 2>/dev/null
547 check behave:wysh_c 0 "${MBOX}" '1473887148 321'
549 t_epilog
552 t_behave_input_inject_semicolon_seq() {
553 t_prolog
555 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}"
556 define mydeepmac {
557 echon '(mydeepmac)';
559 define mymac {
560 echon this_is_mymac;call mydeepmac;echon ';';
562 echon one';';call mymac;echon two";";call mymac;echo three$';';
563 define mymac {
564 echon this_is_mymac;call mydeepmac;echon ,TOO'!;';
566 echon one';';call mymac;echon two";";call mymac;echo three$';';
567 __EOT
569 check behave:input_inject_semicolon_seq 0 "${MBOX}" '512117110 140'
571 t_epilog
574 t_behave_commandalias() {
575 t_prolog
577 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}"
578 commandalias echo echo hoho
579 echo stop.
580 commandalias X Xx
581 commandalias Xx XxX
582 commandalias XxX XxXx
583 commandalias XxXx XxXxX
584 commandalias XxXxX XxXxXx
585 commandalias XxXxXx echo huhu
586 commandalias XxXxXxX echo huhu
588 commandalias XxXxXx XxXxXxX
590 uncommandalias echo
591 commandalias XxXxXx echo huhu
593 __EOT
595 check behave:commandalias 0 "${MBOX}" '3694143612 31'
597 t_epilog
600 t_behave_ifelse() {
601 t_prolog
603 # Nestable conditions test
604 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}"
605 if 0
606 echo 1.err
607 else
608 echo 1.ok
609 endif
610 if 1
611 echo 2.ok
612 else
613 echo 2.err
614 endif
615 if $dietcurd
616 echo 3.err
617 else
618 echo 3.ok
619 endif
620 set dietcurd=yoho
621 if $dietcurd
622 echo 4.ok
623 else
624 echo 4.err
625 endif
626 if $dietcurd == 'yoho'
627 echo 5.ok
628 else
629 echo 5.err
630 endif
631 if $dietcurd @== 'Yoho'
632 echo 5-1.ok
633 else
634 echo 5-1.err
635 endif
636 if $dietcurd == 'Yoho'
637 echo 5-2.err
638 else
639 echo 5-2.ok
640 endif
641 if $dietcurd != 'yoho'
642 echo 6.err
643 else
644 echo 6.ok
645 endif
646 if $dietcurd @!= 'Yoho'
647 echo 6-1.err
648 else
649 echo 6-1.ok
650 endif
651 if $dietcurd != 'Yoho'
652 echo 6-2.ok
653 else
654 echo 6-2.err
655 endif
656 # Nesting
657 if faLse
658 echo 7.err1
659 if tRue
660 echo 7.err2
661 if yEs
662 echo 7.err3
663 else
664 echo 7.err4
665 endif
666 echo 7.err5
667 endif
668 echo 7.err6
669 else
670 echo 7.ok7
671 if YeS
672 echo 7.ok8
673 if No
674 echo 7.err9
675 else
676 echo 7.ok9
677 endif
678 echo 7.ok10
679 else
680 echo 7.err11
681 if yeS
682 echo 7.err12
683 else
684 echo 7.err13
685 endif
686 endif
687 echo 7.ok14
688 endif
689 if r
690 echo 8.ok1
691 if R
692 echo 8.ok2
693 else
694 echo 8.err2
695 endif
696 echo 8.ok3
697 else
698 echo 8.err1
699 endif
700 if s
701 echo 9.err1
702 else
703 echo 9.ok1
704 if S
705 echo 9.err2
706 else
707 echo 9.ok2
708 endif
709 echo 9.ok3
710 endif
711 # `elif'
712 if $dietcurd == 'yohu'
713 echo 10.err1
714 elif $dietcurd == 'yoha'
715 echo 10.err2
716 elif $dietcurd == 'yohe'
717 echo 10.err3
718 elif $dietcurd == 'yoho'
719 echo 10.ok1
720 if $dietcurd == 'yohu'
721 echo 10.err4
722 elif $dietcurd == 'yoha'
723 echo 10.err5
724 elif $dietcurd == 'yohe'
725 echo 10.err6
726 elif $dietcurd == 'yoho'
727 echo 10.ok2
728 if $dietcurd == 'yohu'
729 echo 10.err7
730 elif $dietcurd == 'yoha'
731 echo 10.err8
732 elif $dietcurd == 'yohe'
733 echo 10.err9
734 elif $dietcurd == 'yoho'
735 echo 10.ok3
736 else
737 echo 10.err10
738 endif
739 else
740 echo 10.err11
741 endif
742 else
743 echo 10.err12
744 endif
745 # integer
746 set dietcurd=10
747 if $dietcurd -lt 11
748 echo 11.ok1
749 if $dietcurd -gt 9
750 echo 11.ok2
751 else
752 echo 11.err2
753 endif
754 if $dietcurd -eq 10
755 echo 11.ok3
756 else
757 echo 11.err3
758 endif
759 if $dietcurd -ge 10
760 echo 11.ok4
761 else
762 echo 11.err4
763 endif
764 if $dietcurd -le 10
765 echo 11.ok5
766 else
767 echo 11.err5
768 endif
769 if $dietcurd -ge 11
770 echo 11.err6
771 else
772 echo 11.ok6
773 endif
774 if $dietcurd -le 9
775 echo 11.err7
776 else
777 echo 11.ok7
778 endif
779 else
780 echo 11.err1
781 endif
782 set dietcurd=Abc
783 if $dietcurd < aBd
784 echo 12.ok1
785 if $dietcurd @> abB
786 echo 12.ok2
787 else
788 echo 12.err2
789 endif
790 if $dietcurd @== aBC
791 echo 12.ok3
792 else
793 echo 12.err3
794 endif
795 if $dietcurd @>= AbC
796 echo 12.ok4
797 else
798 echo 12.err4
799 endif
800 if $dietcurd @<= ABc
801 echo 12.ok5
802 else
803 echo 12.err5
804 endif
805 if $dietcurd @>= abd
806 echo 12.err6
807 else
808 echo 12.ok6
809 endif
810 if $dietcurd @<= abb
811 echo 12.err7
812 else
813 echo 12.ok7
814 endif
815 else
816 echo 12.err1
817 endif
818 if $dietcurd < aBc
819 echo 12-1.ok
820 else
821 echo 12-1.err
822 endif
823 if $dietcurd @< aBc
824 echo 12-2.err
825 else
826 echo 12-2.ok
827 endif
828 if $dietcurd > ABc
829 echo 12-3.ok
830 else
831 echo 12-3.err
832 endif
833 if $dietcurd @> ABc
834 echo 12-3.err
835 else
836 echo 12-3.ok
837 endif
838 if $dietcurd @i=% aB
839 echo 13.ok
840 else
841 echo 13.err
842 endif
843 if $dietcurd =% aB
844 echo 13-1.err
845 else
846 echo 13-1.ok
847 endif
848 if $dietcurd @=% bC
849 echo 14.ok
850 else
851 echo 14.err
852 endif
853 if $dietcurd !% aB
854 echo 15-1.ok
855 else
856 echo 15-1.err
857 endif
858 if $dietcurd @!% aB
859 echo 15-2.err
860 else
861 echo 15-2.ok
862 endif
863 if $dietcurd !% bC
864 echo 15-3.ok
865 else
866 echo 15-3.err
867 endif
868 if $dietcurd @!% bC
869 echo 15-4.err
870 else
871 echo 15-4.ok
872 endif
873 if $dietcurd =% Cd
874 echo 16.err
875 else
876 echo 16.ok
877 endif
878 if $dietcurd !% Cd
879 echo 17.ok
880 else
881 echo 17.err
882 endif
883 set diet=abc curd=abc
884 if $diet == $curd
885 echo 18.ok
886 else
887 echo 18.err
888 endif
889 set diet=abc curd=abcd
890 if $diet != $curd
891 echo 19.ok
892 else
893 echo 19.err
894 endif
895 # 1. Shitty grouping capabilities as of today
896 unset diet curd ndefined
897 if [ [ false ] || [ false ] || [ true ] ] && [ [ false ] || [ true ] ] && \
898 [ yes ]
899 echo 20.ok
900 else
901 echo 20.err
902 endif
903 if [ [ [ [ 0 ] || [ 1 ] ] && [ [ 1 ] || [ 0 ] ] ] && [ 1 ] ] && [ yes ]
904 echo 21.ok
905 else
906 echo 21.err
907 endif
908 if [ [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] ]
909 echo 22.ok
910 else
911 echo 22.err
912 endif
913 if [ [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] || [ [ 1 ] ] ]
914 echo 23.ok
915 else
916 echo 23.err
917 endif
918 if [ [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] || [ [ 1 ] ] || [ 1 ] ] && [ no ]
919 echo 24.err
920 else
921 echo 24.ok
922 endif
923 if [ [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] || [ [ 1 ] ] || [ 1 ] ] \
924 && [ no ] || [ yes ]
925 echo 25.ok
926 else
927 echo 25.err
928 endif
929 if [ [ [ [ [ [ [ 1 ] ] && [ 1 ] ] && [ 1 ] ] && [ 1 ] ] ] && [ 1 ] ]
930 echo 26.ok
931 else
932 echo 26.err
933 endif
934 if [ [ [ [ [ [ [ 1 ] ] && [ 1 ] ] && [ 1 ] ] && [ 1 ] ] ] && [ 0 ] ]
935 echo 27.err
936 else
937 echo 27.ok
938 endif
939 if [ [ [ [ [ [ [ 1 ] ] && [ 1 ] ] && [ 0 ] ] && [ 1 ] ] ] && [ 1 ] ]
940 echo 28.err
941 else
942 echo 28.ok
943 endif
944 if [ [ [ [ [ [ [ 0 ] ] && [ 1 ] ] && [ 1 ] ] && [ 1 ] ] ] && [ 1 ] ]
945 echo 29.err
946 else
947 echo 29.ok
948 endif
949 if [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] && [ 0 ]
950 echo 30.err
951 else
952 echo 30.ok
953 endif
954 if [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] && [ 1 ]
955 echo 31.ok
956 else
957 echo 31.err
958 endif
959 if [ 0 ] || [ 0 ] || [ 0 ] || [ 1 ] && [ 0 ]
960 echo 32.err
961 else
962 echo 32.ok
963 endif
964 if [ 0 ] || [ 0 ] || [ 0 ] || [ 1 ] && [ 1 ]
965 echo 33.ok
966 else
967 echo 33.err
968 endif
969 if [ 0 ] || [ 0 ] || [ 0 ] || [ 1 ] && [ 0 ] || [ 1 ] && [ 0 ]
970 echo 34.err
971 else
972 echo 34.ok
973 endif
974 if [ 0 ] || [ 0 ] || [ 0 ] || [ 1 ] && [ 0 ] || [ 1 ] && [ 1 ]
975 echo 35.ok
976 else
977 echo 35.err
978 endif
979 set diet=yo curd=ho
980 if [ [ $diet == 'yo' ] && [ $curd == 'ho' ] ] && [ $ndefined ]
981 echo 36.err
982 else
983 echo 36.ok
984 endif
985 set ndefined
986 if [ [ $diet == 'yo' ] && [ $curd == 'ho' ] ] && [ $ndefined ]
987 echo 37.ok
988 else
989 echo 37.err
990 endif
991 # 2. Shitty grouping capabilities as of today
992 unset diet curd ndefined
993 if [ false || false || true ] && [ false || true ] && yes
994 echo 40.ok
995 else
996 echo 40.err
997 endif
998 if [ [ [ 0 || 1 ] && [ 1 || 0 ] ] && 1 ] && [ yes ]
999 echo 41.ok
1000 else
1001 echo 41.err
1002 endif
1003 if [ 1 || 0 || 0 || 0 ]
1004 echo 42.ok
1005 else
1006 echo 42.err
1007 endif
1008 if [ 1 || 0 || 0 || 0 || [ 1 ] ]
1009 echo 43.ok
1010 else
1011 echo 43.err
1012 endif
1013 if [ 1 || 0 || 0 || 0 || [ 1 ] || 1 ] && no
1014 echo 44.err
1015 else
1016 echo 44.ok
1017 endif
1018 if [ 1 || 0 || 0 || 0 || 1 || [ 1 ] ] && no || [ yes ]
1019 echo 45.ok
1020 else
1021 echo 45.err
1022 endif
1023 if [ [ [ [ [ [ 1 ] && 1 ] && 1 ] && 1 ] ] && [ 1 ] ]
1024 echo 46.ok
1025 else
1026 echo 46.err
1027 endif
1028 if [ [ [ [ [ [ 1 ] && 1 ] && 1 ] && [ 1 ] ] ] && 0 ]
1029 echo 47.err
1030 else
1031 echo 47.ok
1032 endif
1033 if [ [ [ [ [ [ [ 1 ] ] && 1 ] && 0 ] && [ 1 ] ] ] && 1 ]
1034 echo 48.err
1035 else
1036 echo 48.ok
1037 endif
1038 if [ [ [ [ [ [ 0 ] && 1 ] && 1 ] && 1 ] ] && 1 ]
1039 echo 49.err
1040 else
1041 echo 49.ok
1042 endif
1043 if 1 || 0 || 0 || 0 && 0
1044 echo 50.err
1045 else
1046 echo 50.ok
1047 endif
1048 if 1 || 0 || 0 || 0 && 1
1049 echo 51.ok
1050 else
1051 echo 51.err
1052 endif
1053 if 0 || 0 || 0 || 1 && 0
1054 echo 52.err
1055 else
1056 echo 52.ok
1057 endif
1058 if 0 || 0 || 0 || 1 && 1
1059 echo 53.ok
1060 else
1061 echo 53.err
1062 endif
1063 if 0 || 0 || 0 || 1 && 0 || 1 && 0
1064 echo 54.err
1065 else
1066 echo 54.ok
1067 endif
1068 if 0 || 0 || 0 || 1 && 0 || 1 && 1
1069 echo 55.ok
1070 else
1071 echo 55.err
1072 endif
1073 set diet=yo curd=ho
1074 if [ $diet == 'yo' && $curd == 'ho' ] && $ndefined
1075 echo 56.err
1076 else
1077 echo 56.ok
1078 endif
1079 if $diet == 'yo' && $curd == 'ho' && $ndefined
1080 echo 57.err
1081 else
1082 echo 57.ok
1083 endif
1084 set ndefined
1085 if [ $diet == 'yo' && $curd == 'ho' ] && $ndefined
1086 echo 57.ok
1087 else
1088 echo 57.err
1089 endif
1090 if $diet == 'yo' && $curd == 'ho' && $ndefined
1091 echo 58.ok
1092 else
1093 echo 58.err
1094 endif
1095 if [ [ [ [ [ [ $diet == 'yo' && $curd == 'ho' && $ndefined ] ] ] ] ] ]
1096 echo 59.ok
1097 else
1098 echo 59.err
1099 endif
1100 # Some more en-braced variables
1101 set diet=yo curd=ho
1102 if ${diet} == ${curd}
1103 echo 70.err
1104 else
1105 echo 70.ok
1106 endif
1107 if ${diet} != ${curd}
1108 echo 71.ok
1109 else
1110 echo 71.err
1111 endif
1112 if $diet == ${curd}
1113 echo 72.err
1114 else
1115 echo 72.ok
1116 endif
1117 if ${diet} == $curd
1118 echo 73.err
1119 else
1120 echo 73.ok
1121 endif
1122 # Unary !
1123 if ! 0 && ! ! 1 && ! ! ! ! 2 && 3
1124 echo 80.ok
1125 else
1126 echo 80.err
1127 endif
1128 if ! 0 && ! [ ! 1 ] && ! [ ! [ ! [ ! 2 ] ] ] && 3
1129 echo 81.ok
1130 else
1131 echo 81.err
1132 endif
1133 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ 2 ] ] ] ] ] && 3
1134 echo 82.ok
1135 else
1136 echo 82.err
1137 endif
1138 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ 2 ] ] ] ] ] && ! 3
1139 echo 83.err
1140 else
1141 echo 83.ok
1142 endif
1143 if [ ! 0 ] && [ ! [ ! 1 ] ] && ! [ [ ! [ ! [ ! [ 2 ] ] ] ] ] && ! 3
1144 echo 84.err
1145 else
1146 echo 84.ok
1147 endif
1148 if [ ! 0 ] && ! [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ 2 ] ] ] ] ] && 3
1149 echo 85.err
1150 else
1151 echo 85.ok
1152 endif
1153 if ! [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ 2 ] ] ] ] ] && 3
1154 echo 86.err
1155 else
1156 echo 86.ok
1157 endif
1158 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ 2 ] ] ] ] ] || 3
1159 echo 87.ok
1160 else
1161 echo 87.err
1162 endif
1163 if [ ! 0 ] && [ ! ! [ ! ! 1 ] ] && [ ! ! [ ! ! [ ! ! [ ! ! [ 2 ] ] ] ] ]
1164 echo 88.ok
1165 else
1166 echo 88.err
1167 endif
1168 # Unary !, odd
1169 if ! 0 && ! ! 1 && ! ! ! 0 && 3
1170 echo 90.ok
1171 else
1172 echo 90.err
1173 endif
1174 if ! 0 && ! [ ! 1 ] && ! [ ! [ ! [ 0 ] ] ] && 3
1175 echo 91.ok
1176 else
1177 echo 91.err
1178 endif
1179 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ [ 0 ] ] ] ] ] && 3
1180 echo 92.ok
1181 else
1182 echo 92.err
1183 endif
1184 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! ! [ ! [ ! 0 ] ] ] ] && ! 3
1185 echo 93.err
1186 else
1187 echo 93.ok
1188 endif
1189 if [ ! 0 ] && [ ! [ ! 1 ] ] && ! [ ! [ ! [ ! [ ! 0 ] ] ] ] && 3
1190 echo 94.ok
1191 else
1192 echo 94.err
1193 endif
1194 if [ ! 0 ] && ! [ ! [ ! 1 ] ] && [ ! ! [ ! [ ! [ ! [ 0 ] ] ] ] ] && 3
1195 echo 95.err
1196 else
1197 echo 95.ok
1198 endif
1199 if ! [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! ! 0 ] ] ] ] && 3
1200 echo 96.err
1201 else
1202 echo 96.ok
1203 endif
1204 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ ! 0 ] ] ] ] ] || 3
1205 echo 97.ok
1206 else
1207 echo 97.err
1208 endif
1209 if [ ! 0 ] && [ ! ! [ ! ! 1 ] ] && [ ! ! [ ! ! [ ! ! [ ! [ 0 ] ] ] ] ]
1210 echo 98.ok
1211 else
1212 echo 98.err
1213 endif
1214 __EOT
1216 check behave:if-normal 0 "${MBOX}" '1688759742 719'
1218 if have_feat regex; then
1219 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}"
1220 set dietcurd=yoho
1221 if $dietcurd =~ '^yo.*'
1222 echo 1.ok
1223 else
1224 echo 1.err
1225 endif
1226 if $dietcurd =~ '^Yo.*'
1227 echo 1-1.err
1228 else
1229 echo 1-1.ok
1230 endif
1231 if $dietcurd @=~ '^Yo.*'
1232 echo 1-2.ok
1233 else
1234 echo 1-2.err
1235 endif
1236 if $dietcurd =~ '^yOho.+'
1237 echo 2.err
1238 else
1239 echo 2.ok
1240 endif
1241 if $dietcurd @!~ '.*Ho$'
1242 echo 3.err
1243 else
1244 echo 3.ok
1245 endif
1246 if $dietcurd !~ '.+yohO$'
1247 echo 4.ok
1248 else
1249 echo 4.err
1250 endif
1251 if [ $dietcurd @i!~ '.+yoho$' ]
1252 echo 5.ok
1253 else
1254 echo 5.err
1255 endif
1256 if ! [ $dietcurd @i=~ '.+yoho$' ]
1257 echo 6.ok
1258 else
1259 echo 6.err
1260 endif
1261 if ! ! [ $dietcurd @i!~ '.+yoho$' ]
1262 echo 7.ok
1263 else
1264 echo 7.err
1265 endif
1266 if ! [ ! [ $dietcurd @i!~ '.+yoho$' ] ]
1267 echo 8.ok
1268 else
1269 echo 8.err
1270 endif
1271 if [ ! [ ! [ $dietcurd @i!~ '.+yoho$' ] ] ]
1272 echo 9.ok
1273 else
1274 echo 9.err
1275 endif
1276 if ! [ ! [ ! [ $dietcurd !~ '.+yoho$' ] ] ]
1277 echo 10.err
1278 else
1279 echo 10.ok
1280 endif
1281 if ! ! ! $dietcurd !~ '.+yoho$'
1282 echo 11.err
1283 else
1284 echo 11.ok
1285 endif
1286 if ! ! ! $dietcurd =~ '.+yoho$'
1287 echo 12.ok
1288 else
1289 echo 12.err
1290 endif
1291 if ! [ ! ! [ ! [ $dietcurd !~ '.+yoho$' ] ] ]
1292 echo 13.ok
1293 else
1294 echo 13.err
1295 endif
1296 set diet=abc curd='^abc$'
1297 if $diet =~ $curd
1298 echo 14.ok
1299 else
1300 echo 14.err
1301 endif
1302 set diet=abc curd='^abcd$'
1303 if $diet !~ $curd
1304 echo 15.ok
1305 else
1306 echo 15.err
1307 endif
1308 __EOT
1310 check behave:if-regex 0 "${MBOX}" '1115671789 95'
1311 else
1312 printf 'behave:if-regex: unsupported, skipped\n'
1315 t_epilog
1318 t_behave_localopts() {
1319 t_prolog
1321 # Nestable conditions test
1322 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>&1
1323 define t2 {
1324 echo in: t2
1325 set t2=t2
1326 echo $t2
1328 define t1 {
1329 echo in: t1
1330 set gv1=gv1
1331 localopts on
1332 set lv1=lv1 lv2=lv2
1333 set lv3=lv3
1334 call t2
1335 localopts off
1336 set gv2=gv2
1337 echo $gv1 $lv1 ${lv2} ${lv3} ${gv2}, $t2
1339 define t0 {
1340 echo in: t0
1341 call t1
1342 echo $gv1 $lv1 ${lv2} ${lv3} ${gv2}, $t2
1343 echo "$gv1 $lv1 ${lv2} ${lv3} ${gv2}, $t2"
1345 account trouble {
1346 echo in: trouble
1347 call t0
1349 call t0
1350 unset gv1 gv2
1351 account trouble
1352 echo active trouble: $gv1 $lv1 ${lv2} ${lv3} ${gv2}, $t3
1353 account null
1354 echo active null: $gv1 $lv1 ${lv2} ${lv3} ${gv2}, $t3
1357 define ll2 {
1358 localopts $1
1359 set x=2
1360 echo ll2=$x
1362 define ll1 {
1363 wysh set y=$1; shift; eval localopts $y; localopts $1; shift
1364 set x=1
1365 echo ll1.1=$x
1366 call ll2 $1
1367 echo ll1.2=$x
1369 define ll0 {
1370 wysh set y=$1; shift; eval localopts $y; localopts $1; shift
1371 set x=0
1372 echo ll0.1=$x
1373 call ll1 $y "$@"
1374 echo ll0.2=$x
1376 define llx {
1377 echo ----- $1: $2 -> $3 -> $4
1378 echo ll-1.1=$x
1379 eval localopts $1
1380 call ll0 "$@"
1381 echo ll-1.2=$x
1382 unset x
1384 define lly {
1385 call llx 'call off' on on on
1386 call llx 'call off' off on on
1387 call llx 'call off' on off on
1388 call llx 'call off' on off off
1389 localopts call-fixate on
1390 call llx 'call-fixate on' on on on
1391 call llx 'call-fixate on' off on on
1392 call llx 'call-fixate on' on off on
1393 call llx 'call-fixate on' on off off
1394 unset x;localopts call on
1395 call llx 'call on' on on on
1396 call llx 'call on' off on on
1397 call llx 'call on' on off on
1398 call llx 'call on' on off off
1400 call lly
1401 __EOT
1403 check behave:localopts 0 "${MBOX}" '4016155249 1246'
1405 t_epilog
1408 t_behave_macro_param_shift() {
1409 t_prolog
1411 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>/dev/null
1412 define t2 {
1413 echo in: t2
1414 echo t2.0 has $#/${#} parameters: "$1,${2},$3" (${*}) [$@]
1415 localopts on
1416 wysh set ignerr=$1
1417 shift
1418 localopts off
1419 echo t2.1 has $#/${#} parameters: "$1,${2},$3" (${*}) [$@]
1420 if [ $# > 1 ] || [ $ignerr == '' ]
1421 shift 2
1422 else
1423 ignerr shift 2
1424 endif
1425 echo t2.2:$? has $#/${#} parameters: "$1,${2},$3" (${*}) [$@]
1426 shift 0
1427 echo t2.3:$? has $#/${#} parameters: "$1,${2},$3" (${*}) [$@]
1428 if [ $# > 0 ]
1429 shift
1430 endif
1431 echo t2.4:$? has $#/${#} parameters: "$1,${2},$3" (${*}) [$@]
1433 define t1 {
1434 set errexit
1435 echo in: t1
1436 call t2 1 you get four args
1437 echo t1.1: $?';' ignerr ($ignerr) should not exist
1438 call t2 1 you get 'three args'
1439 echo t1.2: $?';' ignerr ($ignerr) should not exist
1440 call t2 1 you 'get two args'
1441 echo t1.3: $?';' ignerr ($ignerr) should not exist
1442 call t2 1 'you get one arg'
1443 echo t1.4: $?';' ignerr ($ignerr) should not exist
1444 ignerr call t2 '' 'you get one arg'
1445 echo t1.5: $?';' ignerr ($ignerr) should not exist
1447 call t1
1448 __EOT
1450 check behave:macro_param_shift 0 "${MBOX}" '1402489146 1682'
1452 t_epilog
1455 t_behave_addrcodec() {
1456 t_prolog
1458 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}"
1459 vput addrcodec res e 1 <doog@def>
1460 echo $?/$^ERRNAME $res
1461 eval vput addrcodec res d $res
1462 echo $?/$^ERRNAME $res
1463 vput addrcodec res e 2 . <doog@def>
1464 echo $?/$^ERRNAME $res
1465 eval vput addrcodec res d $res
1466 echo $?/$^ERRNAME $res
1467 vput addrcodec res e 3 Sauer Dr. <doog@def>
1468 echo $?/$^ERRNAME $res
1469 eval vput addrcodec res d $res
1470 echo $?/$^ERRNAME $res
1471 vput addrcodec res e 3.50 Sauer (Ma) Dr. <doog@def>
1472 echo $?/$^ERRNAME $res
1473 eval vput addrcodec res d $res
1474 echo $?/$^ERRNAME $res
1475 vput addrcodec res e 3.51 Sauer (Ma) "Dr." <doog@def>
1476 echo $?/$^ERRNAME $res
1477 eval vput addrcodec res d $res
1478 echo $?/$^ERRNAME $res
1480 vput addrcodec res +e 4 Sauer (Ma) Dr. <doog@def>
1481 echo $?/$^ERRNAME $res
1482 eval vput addrcodec res d $res
1483 echo $?/$^ERRNAME $res
1484 vput addrcodec res +e 5 Sauer (Ma) Braten Dr. <doog@def>
1485 echo $?/$^ERRNAME $res
1486 eval vput addrcodec res d $res
1487 echo $?/$^ERRNAME $res
1488 vput addrcodec res +e 6 Sauer (Ma) Braten Dr. (Heu) <doog@def>
1489 echo $?/$^ERRNAME $res
1490 eval vput addrcodec res d $res
1491 echo $?/$^ERRNAME $res
1492 vput addrcodec res +e 7 Sauer (Ma) Braten Dr. (Heu) <doog@def> (bu)
1493 echo $?/$^ERRNAME $res
1494 eval vput addrcodec res d $res
1495 echo $?/$^ERRNAME $res
1496 vput addrcodec res +e 8 \
1497 Dr. Sauer (Ma) Braten Dr. (Heu) <doog@def> (bu) Boom. Boom
1498 echo $?/$^ERRNAME $res
1499 eval vput addrcodec res d $res
1500 echo $?/$^ERRNAME $res
1501 vput addrcodec res +e 9 Dr.Sauer(Ma)Braten Dr. (Heu) <doog@def>
1502 echo $?/$^ERRNAME $res
1503 eval vput addrcodec res d $res
1504 echo $?/$^ERRNAME $res
1505 vput addrcodec res +e 10 (Ma)Braten Dr. (Heu) <doog@def>
1506 echo $?/$^ERRNAME $res
1507 eval vput addrcodec res d $res
1508 echo $?/$^ERRNAME $res
1509 vput addrcodec res +e 11 (Ma)Braten Dr"." (Heu) <doog@def>
1510 echo $?/$^ERRNAME $res
1511 eval vput addrcodec res d $res
1512 echo $?/$^ERRNAME $res
1513 vput addrcodec res +e 12 Dr. Sauer (Ma) Braten Dr. (u) <doog@def>
1514 echo $?/$^ERRNAME $res
1515 eval vput addrcodec res d $res
1516 echo $?/$^ERRNAME $res
1517 vput addrcodec res +e 13(Ma)Braten Dr. (Heu) <doog@def>
1518 echo $?/$^ERRNAME $res
1519 eval vput addrcodec res d $res
1520 echo $?/$^ERRNAME $res
1521 vput addrcodec res +e 14 Hey, Du <doog@def> Wie() findet Dr. das? ()
1522 echo $?/$^ERRNAME $res
1523 eval vput addrcodec res d $res
1524 echo $?/$^ERRNAME $res
1525 vput addrcodec res +e 15 \
1526 Hey, Du <doog@def> Wie() findet "" Dr. "" das? ()
1527 echo $?/$^ERRNAME $res
1528 eval vput addrcodec res d $res
1529 echo $?/$^ERRNAME $res
1530 vput addrcodec res +e 16 \
1531 "Hey," "Du" <doog@def> "Wie()" findet "" Dr. "" das? ()
1532 echo $?/$^ERRNAME $res
1533 eval vput addrcodec res d $res
1534 echo $?/$^ERRNAME $res
1535 vput addrcodec res +e 17 \
1536 "Hey" Du <doog@def> "Wie() findet " " Dr. """ das? ()
1537 echo $?/$^ERRNAME $res
1538 eval vput addrcodec res d $res
1539 echo $?/$^ERRNAME $res
1540 vput addrcodec res +e 18 \
1541 <doog@def> "Hey" Du "Wie() findet " " Dr. """ das? ()
1542 echo $?/$^ERRNAME $res
1543 eval vput addrcodec res d $res
1544 echo $?/$^ERRNAME $res
1545 vput addrcodec res +e 19 Hey\,\" <doog@def> "Wie()" findet \" Dr. \" das?
1546 echo $?/$^ERRNAME $res
1547 eval vput addrcodec res d $res
1548 echo $?/$^ERRNAME $res
1550 vput addrcodec res ++e 20 Hey\,\" <doog@def> "Wie()" findet \" Dr. \" das?
1551 echo $?/$^ERRNAME $res
1552 vput addrcodec res ++e 21 Hey\,\"" <doog@def> "Wie()" findet \" Dr. \" das?
1553 echo $?/$^ERRNAME $res
1554 eval vput addrcodec res d $res
1555 echo $?/$^ERRNAME $res
1557 vput addrcodec res +++e 22 Hey\\,\" <doog@def> "Wie()" findet \" Dr. \" das?
1558 echo $?/$^ERRNAME $res
1559 eval vput addrcodec res d $res
1560 echo $?/$^ERRNAME $res
1562 vput addrcodec res s \
1563 "23 Hey\\,\\\" \"Wie" () "\" findet \\\" Dr. \\\" das?" <doog@def>
1564 echo $?/$^ERRNAME $res
1565 __EOT
1567 check behave:addrcodec 0 "${MBOX}" '429099645 2414'
1569 t_epilog
1572 t_behave_vexpr() {
1573 t_prolog
1575 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>/dev/null
1576 vput vexpr res = 9223372036854775807
1577 echo $?/$^ERRNAME $res
1578 vput vexpr res = 9223372036854775808
1579 echo $?/$^ERRNAME $res
1580 vput vexpr res =@ 9223372036854775808
1581 echo $?/$^ERRNAME $res
1582 vput vexpr res = -9223372036854775808
1583 echo $?/$^ERRNAME $res
1584 vput vexpr res = -9223372036854775809
1585 echo $?/$^ERRNAME $res
1586 vput vexpr res =@ -9223372036854775809
1587 echo $?/$^ERRNAME $res
1588 echo ' #1'
1589 vput vexpr res ~ 0
1590 echo $?/$^ERRNAME $res
1591 vput vexpr res ~ 1
1592 echo $?/$^ERRNAME $res
1593 vput vexpr res ~ -1
1594 echo $?/$^ERRNAME $res
1595 echo ' #2'
1596 vput vexpr res + 0 0
1597 echo $?/$^ERRNAME $res
1598 vput vexpr res + 0 1
1599 echo $?/$^ERRNAME $res
1600 vput vexpr res + 1 1
1601 echo $?/$^ERRNAME $res
1602 echo ' #3'
1603 vput vexpr res + 9223372036854775807 0
1604 echo $?/$^ERRNAME $res
1605 vput vexpr res + 9223372036854775807 1
1606 echo $?/$^ERRNAME $res
1607 vput vexpr res +@ 9223372036854775807 1
1608 echo $?/$^ERRNAME $res
1609 vput vexpr res + 0 9223372036854775807
1610 echo $?/$^ERRNAME $res
1611 vput vexpr res + 1 9223372036854775807
1612 echo $?/$^ERRNAME $res
1613 vput vexpr res +@ 1 9223372036854775807
1614 echo $?/$^ERRNAME $res
1615 echo ' #4'
1616 vput vexpr res + -9223372036854775808 0
1617 echo $?/$^ERRNAME $res
1618 vput vexpr res + -9223372036854775808 -1
1619 echo $?/$^ERRNAME $res
1620 vput vexpr res +@ -9223372036854775808 -1
1621 echo $?/$^ERRNAME $res
1622 vput vexpr res + 0 -9223372036854775808
1623 echo $?/$^ERRNAME $res
1624 vput vexpr res + -1 -9223372036854775808
1625 echo $?/$^ERRNAME $res
1626 vput vexpr res +@ -1 -9223372036854775808
1627 echo $?/$^ERRNAME $res
1628 echo ' #5'
1629 vput vexpr res - 0 0
1630 echo $?/$^ERRNAME $res
1631 vput vexpr res - 0 1
1632 echo $?/$^ERRNAME $res
1633 vput vexpr res - 1 1
1634 echo $?/$^ERRNAME $res
1635 echo ' #6'
1636 vput vexpr res - 9223372036854775807 0
1637 echo $?/$^ERRNAME $res
1638 vput vexpr res - 9223372036854775807 -1
1639 echo $?/$^ERRNAME $res
1640 vput vexpr res -@ 9223372036854775807 -1
1641 echo $?/$^ERRNAME $res
1642 vput vexpr res - 0 9223372036854775807
1643 echo $?/$^ERRNAME $res
1644 vput vexpr res - -1 9223372036854775807
1645 echo $?/$^ERRNAME $res
1646 vput vexpr res - -2 9223372036854775807
1647 echo $?/$^ERRNAME $res
1648 vput vexpr res -@ -2 9223372036854775807
1649 echo $?/$^ERRNAME $res
1650 echo ' #7'
1651 vput vexpr res - -9223372036854775808 +0
1652 echo $?/$^ERRNAME $res
1653 vput vexpr res - -9223372036854775808 +1
1654 echo $?/$^ERRNAME $res
1655 vput vexpr res -@ -9223372036854775808 +1
1656 echo $?/$^ERRNAME $res
1657 vput vexpr res - 0 -9223372036854775808
1658 echo $?/$^ERRNAME $res
1659 vput vexpr res - +1 -9223372036854775808
1660 echo $?/$^ERRNAME $res
1661 vput vexpr res -@ +1 -9223372036854775808
1662 echo $?/$^ERRNAME $res
1663 echo ' #8'
1664 vput vexpr res + -13 -2
1665 echo $?/$^ERRNAME $res
1666 vput vexpr res - 0 0
1667 echo $?/$^ERRNAME $res
1668 vput vexpr res - 0 1
1669 echo $?/$^ERRNAME $res
1670 vput vexpr res - 1 1
1671 echo $?/$^ERRNAME $res
1672 vput vexpr res - -13 -2
1673 echo $?/$^ERRNAME $res
1674 echo ' #9'
1675 vput vexpr res * 0 0
1676 echo $?/$^ERRNAME $res
1677 vput vexpr res * 0 1
1678 echo $?/$^ERRNAME $res
1679 vput vexpr res * 1 1
1680 echo $?/$^ERRNAME $res
1681 vput vexpr res * -13 -2
1682 echo $?/$^ERRNAME $res
1683 echo ' #10'
1684 vput vexpr res / 0 0
1685 echo $?/$^ERRNAME $res
1686 vput vexpr res / 0 1
1687 echo $?/$^ERRNAME $res
1688 vput vexpr res / 1 1
1689 echo $?/$^ERRNAME $res
1690 vput vexpr res / -13 -2
1691 echo $?/$^ERRNAME $res
1692 echo ' #11'
1693 vput vexpr res % 0 0
1694 echo $?/$^ERRNAME $res
1695 vput vexpr res % 0 1
1696 echo $?/$^ERRNAME $res
1697 vput vexpr res % 1 1
1698 echo $?/$^ERRNAME $res
1699 vput vexpr res % -13 -2
1700 echo $?/$^ERRNAME $res
1701 __EOT
1703 check behave:vexpr-numeric 0 "${MBOX}" '1723609217 1048'
1705 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" #2>/dev/null
1706 vput vexpr res find 'bananarama' 'nana'
1707 echo $?/$^ERRNAME :$res:
1708 vput vexpr res find 'bananarama' 'bana'
1709 echo $?/$^ERRNAME :$res:
1710 vput vexpr res find 'bananarama' 'Bana'
1711 echo $?/$^ERRNAME :$res:
1712 vput vexpr res find 'bananarama' 'rama'
1713 echo $?/$^ERRNAME :$res:
1714 echo ' #1'
1715 vput vexpr res ifind 'bananarama' 'nana'
1716 echo $?/$^ERRNAME :$res:
1717 vput vexpr res ifind 'bananarama' 'bana'
1718 echo $?/$^ERRNAME :$res:
1719 vput vexpr res ifind 'bananarama' 'Bana'
1720 echo $?/$^ERRNAME :$res:
1721 vput vexpr res ifind 'bananarama' 'rama'
1722 echo $?/$^ERRNAME :$res:
1723 echo ' #2'
1724 vput vexpr res substring 'bananarama' 1
1725 echo $?/$^ERRNAME :$res:
1726 vput vexpr res substring 'bananarama' 3
1727 echo $?/$^ERRNAME :$res:
1728 vput vexpr res substring 'bananarama' 5
1729 echo $?/$^ERRNAME :$res:
1730 vput vexpr res substring 'bananarama' 7
1731 echo $?/$^ERRNAME :$res:
1732 vput vexpr res substring 'bananarama' 9
1733 echo $?/$^ERRNAME :$res:
1734 vput vexpr res substring 'bananarama' 10
1735 echo $?/$^ERRNAME :$res:
1736 vput vexpr res substring 'bananarama' 1 3
1737 echo $?/$^ERRNAME :$res:
1738 vput vexpr res substring 'bananarama' 3 3
1739 echo $?/$^ERRNAME :$res:
1740 vput vexpr res substring 'bananarama' 5 3
1741 echo $?/$^ERRNAME :$res:
1742 vput vexpr res substring 'bananarama' 7 3
1743 echo $?/$^ERRNAME :$res:
1744 vput vexpr res substring 'bananarama' 9 3
1745 echo $?/$^ERRNAME :$res:
1746 vput vexpr res substring 'bananarama' 10 3
1747 echo $?/$^ERRNAME :$res:
1748 echo ' #3'
1749 __EOT
1751 check behave:vexpr-string 0 "${MBOX}" '265398700 267'
1753 if have_feat regex; then
1754 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" #2>/dev/null
1755 vput vexpr res regex 'bananarama' 'nana'
1756 echo $?/$^ERRNAME :$res:
1757 vput vexpr res regex 'bananarama' 'bana'
1758 echo $?/$^ERRNAME :$res:
1759 vput vexpr res regex 'bananarama' 'Bana'
1760 echo $?/$^ERRNAME :$res:
1761 vput vexpr res regex 'bananarama' 'rama'
1762 echo $?/$^ERRNAME :$res:
1763 echo ' #1'
1764 vput vexpr res iregex 'bananarama' 'nana'
1765 echo $?/$^ERRNAME :$res:
1766 vput vexpr res iregex 'bananarama' 'bana'
1767 echo $?/$^ERRNAME :$res:
1768 vput vexpr res iregex 'bananarama' 'Bana'
1769 echo $?/$^ERRNAME :$res:
1770 vput vexpr res iregex 'bananarama' 'rama'
1771 echo $?/$^ERRNAME :$res:
1772 echo ' #2'
1773 vput vexpr res regex 'bananarama' '(.*)nana(.*)' '\${1}a\${0}u{\$2}'
1774 echo $?/$^ERRNAME :$res:
1775 vput vexpr res regex 'bananarama' '(.*)bana(.*)' '\${1}a\${0}u\$2'
1776 echo $?/$^ERRNAME :$res:
1777 vput vexpr res regex 'bananarama' 'Bana(.+)' '\$1\$0'
1778 echo $?/$^ERRNAME :$res:
1779 vput vexpr res regex 'bananarama' '(.+)rama' '\$1\$0'
1780 echo $?/$^ERRNAME :$res:
1781 echo ' #3'
1782 vput vexpr res iregex 'bananarama' '(.*)nana(.*)' '\${1}a\${0}u{\$2}'
1783 echo $?/$^ERRNAME :$res:
1784 vput vexpr res iregex 'bananarama' '(.*)bana(.*)' '\${1}a\${0}u\$2'
1785 echo $?/$^ERRNAME :$res:
1786 vput vexpr res iregex 'bananarama' 'Bana(.+)' '\$1\$0'
1787 echo $?/$^ERRNAME :$res:
1788 vput vexpr res iregex 'bananarama' '(.+)rama' '\$1\$0'
1789 echo $?/$^ERRNAME :$res:
1790 echo ' #4'
1791 __EOT
1793 check behave:vexpr-regex 0 "${MBOX}" '3270360157 311'
1794 else
1795 printf 'behave:vexpr-regex: unsupported, skipped\n'
1798 t_epilog
1801 t_behave_call_ret() {
1802 t_prolog
1804 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} -Snomemdebug > "${MBOX}" 2>&1
1805 define w1 {
1806 echon ">$1 "
1807 vput vexpr i + $1 1
1808 if [ $i -le 42 ]
1809 vput vexpr j '&' $i 7
1810 if [ $j -eq 7 ]
1811 echo .
1813 call w1 $i
1814 wysh set i=$? k=$!
1815 vput vexpr j '&' $i 7
1816 echon "<$1/$i/$k "
1817 if [ $j -eq 7 ]
1818 echo .
1820 else
1821 echo ! The end for $1
1823 return $1
1825 # Transport $?/$! up the call chain
1826 define w2 {
1827 echon ">$1 "
1828 vput vexpr i + $1 1
1829 if [ $1 -lt 42 ]
1830 call w2 $i
1831 wysh set i=$? j=$! k=$^ERRNAME
1832 echon "<$1/$i/$k "
1833 return $i $j
1834 else
1835 echo ! The end for $1
1836 return $i $^ERR-BUSY
1838 echoerr au
1840 # Up and down it goes
1841 define w3 {
1842 echon ">$1/$2 "
1843 vput vexpr i + $1 1
1844 if [ $1 -lt 42 ]
1845 call w3 $i $2
1846 wysh set i=$? j=$!
1847 vput vexpr k - $1 $2
1848 if [ $k -eq 21 ]
1849 vput vexpr i + $1 1
1850 vput vexpr j + $2 1
1851 echo "# <$i/$j> .. "
1852 call w3 $i $j
1853 wysh set i=$? j=$!
1855 eval echon "<\$1=\$i/\$^ERRNAME-$j "
1856 return $i $j
1857 else
1858 echo ! The end for $1=$i/$2
1859 if [ "$2" != "" ]
1860 return $i $^ERR-DOM
1861 else
1862 return $i $^ERR-BUSY
1865 echoerr au
1868 call w1 0; echo ?=$? !=$!; echo -----;
1869 call w2 0; echo ?=$? !=$^ERRNAME; echo -----;
1870 call w3 0 1; echo ?=$? !=$^ERRNAME; echo -----;
1871 __EOT
1873 check behave:call_ret 0 "${MBOX}" '1572045517 5922'
1875 t_epilog
1878 t_behave_xcall() {
1879 t_prolog
1881 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} -Snomemdebug > "${MBOX}" 2>&1
1882 define work {
1883 echon "$1 "
1884 vput vexpr i + $1 1
1885 if [ $i -le 1111 ]
1886 vput vexpr j '&' $i 7
1887 if [ $j -eq 7 ]
1888 echo .
1890 \xcall work $i $2
1892 echo ! The end for $1/$2
1893 if [ "$2" != "" ]
1894 return $i $^ERR-BUSY
1897 define xwork {
1898 \xcall work 0 $2
1900 call work 0
1901 echo ?=$? !=$!
1902 call xwork
1903 echo ?=$? !=$!
1904 xcall xwork
1905 echo ?=$? !=$^ERRNAME
1907 call work 0 yes
1908 echo ?=$? !=$^ERRNAME
1909 call xwork 0 yes
1910 echo ?=$? !=$^ERRNAME
1911 __EOT
1913 check behave:xcall-1 0 "${MBOX}" '2401702082 23801'
1917 ${cat} <<- '__EOT' > "${BODY}"
1918 define __w {
1919 echon "$1 "
1920 vput vexpr i + $1 1
1921 if [ $i -le 111 ]
1922 vput vexpr j '&' $i 7
1923 if [ $j -eq 7 ]
1924 echo .
1926 \xcall __w $i $2
1928 echo ! The end for $1
1929 if [ $2 -eq 0 ]
1930 nonexistingcommand
1931 echo would be err with errexit
1932 return
1934 echo calling exit
1935 exit
1937 define work {
1938 echo eins
1939 call __w 0 0
1940 echo zwei, ?=$? !=$!
1941 localopts yes; set errexit
1942 ignerr call __w 0 0
1943 echo drei, ?=$? !=$^ERRNAME
1944 call __w 0 $1
1945 echo vier, ?=$? !=$^ERRNAME, this is an error
1947 ignerr call work 0
1948 echo outer 1, ?=$? !=$^ERRNAME
1949 xxxign call work 0
1950 echo outer 2, ?=$? !=$^ERRNAME, could be error if xxxign non-empty
1951 call work 1
1952 echo outer 3, ?=$? !=$^ERRNAME
1953 echo this is definitely an error
1954 __EOT
1956 < "${BODY}" ${MAILX} ${ARGS} -X'commandalias xxxign ignerr' -Snomemdebug \
1957 > "${MBOX}" 2>&1
1958 check behave:xcall-2 0 "${MBOX}" '3900716531 4200'
1960 < "${BODY}" ${MAILX} ${ARGS} -X'commandalias xxxign " "' -Snomemdebug \
1961 > "${MBOX}" 2>&1
1962 check behave:xcall-3 1 "${MBOX}" '1006776201 2799'
1964 t_epilog
1967 t_behave_vpospar() {
1968 t_prolog
1970 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>&1
1971 vpospar set hey, "'you ", world!
1972 echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
1973 vput vpospar x quote; echo x<$x>
1974 vpospar clear;echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
1975 vput vpospar y quote;echo y<$y>
1976 eval vpospar set ${x};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
1977 eval vpospar set ${y};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
1978 eval vpospar set ${x};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
1980 define infun2 {
1981 echo infun2:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
1982 vput vpospar z quote;echo infun2:z<$z>
1985 define infun {
1986 echo infun:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
1987 vput vpospar y quote;echo infun:y<$y>
1988 eval vpospar set ${x};echo infun:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
1989 vpospar clear;echo infun:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
1990 eval call infun2 $x
1991 echo infun:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
1992 eval vpospar set ${y};echo infun:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
1995 call infun This "in a" fun
1996 echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
1997 vpospar clear;echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
1998 __EOT
1999 check behave:vpospar-1 0 "${MBOX}" '155175639 866'
2002 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>&1
2003 set ifs=\'
2004 echo ifs<$ifs> ifs-ws<$ifs-ws>
2005 vpospar set hey, "'you ", world!
2006 echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2007 vput vpospar x quote; echo x<$x>
2008 vpospar clear;echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2009 eval vpospar set ${x};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2011 set ifs=,
2012 echo ifs<$ifs> ifs-ws<$ifs-ws>
2013 vpospar set hey, "'you ", world!
2014 echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2015 vput vpospar x quote; echo x<$x>
2016 vpospar clear;echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2017 eval vpospar set ${x};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2019 wysh set ifs=$',\t'
2020 echo ifs<$ifs> ifs-ws<$ifs-ws>
2021 vpospar set hey, "'you ", world!
2022 echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2023 vput vpospar x quote; echo x<$x>
2024 vpospar clear;echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2025 eval vpospar set ${x};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2026 __EOT
2027 check behave:vpospar-ifs 0 "${MBOX}" '2015927702 706'
2029 t_epilog
2032 t_behave_atxplode() {
2033 t_prolog
2034 TRAP_EXIT_ADDONS="./.t*"
2036 ${cat} > ./.t.sh <<- '___'; ${cat} > ./.t.rc <<- '___'
2037 x() { echo $#; }
2038 xxx() {
2039 printf " (1/$#: <$1>)"
2040 shift
2041 if [ $# -gt 0 ]; then
2042 xxx "$@"
2043 else
2044 echo
2047 yyy() {
2048 eval "$@ ' ball"
2050 set --
2051 x "$@"
2052 x "$@"''
2053 x " $@"
2054 x "$@ "
2055 printf yyy;yyy 'xxx' "b\$'\t'u ' "
2056 printf xxx;xxx arg ,b u.
2057 printf xxx;xxx arg , .
2058 printf xxx;xxx arg ,ball.
2060 define x {
2061 echo $#
2063 define xxx {
2064 echon " (1/$#: <$1>)"
2065 shift
2066 if [ $# -gt 0 ]
2067 \xcall xxx "$@"
2068 endif
2069 echo
2071 define yyy {
2072 eval "$@ ' ball"
2074 vpospar set
2075 call x "$@"
2076 call x "$@"''
2077 call x " $@"
2078 call x "$@ "
2079 echon yyy;call yyy '\call xxx' "b\$'\t'u ' "
2080 echon xxx;call xxx arg ,b u.
2081 echon xxx;call xxx arg , .
2082 echon xxx;call xxx arg ,ball.
2085 ${MAILX} ${ARGS} -X'source ./.t.rc' -Xx > "${MBOX}" 2>&1
2086 check behave:atxplode-1 0 "${MBOX}" '41566293 164'
2088 #${SHELL} ./.t.sh > ./.tshout 2>&1
2089 #check behave:atxplode:disproof-1 0 ./.tshout '41566293 164'
2091 t_epilog
2094 t_behave_read() {
2095 t_prolog
2096 TRAP_EXIT_ADDONS="./.t*"
2098 ${cat} <<- '__EOT' > .tin
2099 hey1, "'you ", world!
2100 hey2, "'you ", bugs bunny!
2101 hey3, "'you ",
2102 hey4, "'you "
2103 __EOT
2105 ${cat} <<- '__EOT' |\
2106 ${MAILX} ${ARGS} -X'readctl create ./.tin' > "${MBOX}" 2>&1
2107 read a b c
2108 echo $?/$^ERRNAME / <$a><$b><$c>
2109 read a b c
2110 echo $?/$^ERRNAME / <$a><$b><$c>
2111 read a b c
2112 echo $?/$^ERRNAME / <$a><$b><$c>
2113 read a b c
2114 echo $?/$^ERRNAME / <$a><$b><$c>
2115 unset a b c;read a b c
2116 echo $?/$^ERRNAME / <$a><$b><$c>
2117 readctl remove ./.tin;echo readctl remove:$?/$^ERRNAME
2118 __EOT
2119 check behave:read-1 0 "${MBOX}" '1527910147 173'
2121 ${cat} <<- '__EOT' > .tin2
2122 hey2.0,:"'you ",:world!:mars.:
2123 hey2.1,:"'you ",:world!
2124 hey2.2,:"'you ",:bugs bunny!
2125 hey2.3,:"'you ",:
2126 hey2.4,:"'you ":
2128 __EOT
2130 ${cat} <<- '__EOT' |\
2131 6< .tin2 ${MAILX} ${ARGS} -X 'readctl create 6' > "${MBOX}" 2>&1
2132 set ifs=:
2133 read a b c
2134 echo $?/$^ERRNAME / <$a><$b><$c>
2135 read a b c
2136 echo $?/$^ERRNAME / <$a><$b><$c>
2137 read a b c
2138 echo $?/$^ERRNAME / <$a><$b><$c>
2139 read a b c
2140 echo $?/$^ERRNAME / <$a><$b><$c>
2141 read a b c
2142 echo $?/$^ERRNAME / <$a><$b><$c>
2143 read a b c
2144 echo $?/$^ERRNAME / <$a><$b><$c>
2145 unset a b c;read a b c
2146 echo $?/$^ERRNAME / <$a><$b><$c>
2147 read a b c
2148 echo $?/$^ERRNAME / <$a><$b><$c>
2149 readctl remove 6;echo readctl remove:$?/$^ERRNAME
2150 __EOT
2151 check behave:read-ifs 0 "${MBOX}" '890153490 298'
2153 t_epilog
2156 t_behave_mbox() {
2157 t_prolog
2158 TRAP_EXIT_ADDONS="./.t*"
2162 while [ ${i} -lt 112 ]; do
2163 printf 'm file://%s\n~s Subject %s\nHello %s!\n~.\n' \
2164 "${MBOX}" "${i}" "${i}"
2165 i=`add ${i} 1`
2166 done
2167 ) | ${MAILX} ${ARGS}
2168 check behave:mbox-1 0 "${MBOX}" '1140119864 13780'
2170 printf 'File "%s"
2171 copy * "%s"
2172 File "%s"
2173 from*
2174 ' "${MBOX}" .tmbox1 .tmbox1 |
2175 ${MAILX} ${ARGS} > .tlst
2176 check behave:mbox-2 0 .tlst '2739893312 9103'
2178 printf 'File "%s"
2179 copy * "file://%s"
2180 File "file://%s"
2181 from*
2182 ' "${MBOX}" .tmbox2 .tmbox2 |
2183 ${MAILX} ${ARGS} > .tlst
2184 check behave:mbox-3 0 .tlst '1702194178 9110'
2186 # only the odd (even)
2188 printf 'File "file://%s"
2189 copy ' .tmbox2
2191 while [ ${i} -lt 112 ]; do
2192 j=`modulo ${i} 2`
2193 [ ${j} -eq 1 ] && printf '%s ' "${i}"
2194 i=`add ${i} 1`
2195 done
2196 printf ' file://%s
2197 File "file://%s"
2198 from*
2199 ' .tmbox3 .tmbox3
2200 ) | ${MAILX} ${ARGS} > .tlst
2201 check behave:mbox-4 0 .tmbox3 '631132924 6890'
2202 check behave:mbox-5 - .tlst '2960975049 4573'
2203 # ...
2205 printf 'file "file://%s"
2206 move ' .tmbox2
2208 while [ ${i} -lt 112 ]; do
2209 j=`modulo ${i} 2`
2210 [ ${j} -eq 0 ] && [ ${i} -ne 0 ] && printf '%s ' "${i}"
2211 i=`add ${i} 1`
2212 done
2213 printf ' file://%s
2214 File "file://%s"
2215 from*
2216 File "file://%s"
2217 from*
2218 ' .tmbox3 .tmbox3 .tmbox2
2219 ) | ${MAILX} ${ARGS} > .tlst
2220 check behave:mbox-6 0 .tmbox3 '1387070539 13655'
2221 ${sed} 2d < .tlst > .tlstx
2222 check behave:mbox-7 - .tlstx '2729940494 13645'
2224 t_epilog
2227 t_behave_alternates() {
2228 t_prolog
2229 TRAP_EXIT_ADDONS="./.t*"
2231 ${cat} <<-_EOT > ./.tsendmail.sh
2232 #!${MYSHELL} -
2233 (echo 'From Valeriana Sat Jul 08 15:54:03 2017' && ${cat} && echo
2234 ) >> "${MBOX}"
2235 _EOT
2236 chmod 0755 ./.tsendmail.sh
2238 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} -Smta=./.tsendmail.sh > ./.tall 2>&1
2239 echo --0
2240 alternates
2241 echo $?/$^ERRNAME
2242 alternates a1@b1 a2@b2 a3@b3
2243 echo $?/$^ERRNAME
2244 alternates
2245 echo $?/$^ERRNAME
2246 vput alternates rv
2247 echo $?/$^ERRNAME <$rv>
2249 echo --1
2250 unalternates a2@b2
2251 vput alternates rv
2252 echo $?/$^ERRNAME <$rv>
2253 unalternates a3@b3
2254 vput alternates rv
2255 echo $?/$^ERRNAME <$rv>
2256 unalternates a1@b1
2257 vput alternates rv
2258 echo $?/$^ERRNAME <$rv>
2260 echo --2
2261 unalternates *
2262 alternates a1@b1 a2@b2 a3@b3
2263 unalternates a3@b3
2264 vput alternates rv
2265 echo $?/$^ERRNAME <$rv>
2266 unalternates a2@b2
2267 vput alternates rv
2268 echo $?/$^ERRNAME <$rv>
2269 unalternates a1@b1
2270 vput alternates rv
2271 echo $?/$^ERRNAME <$rv>
2273 echo --3
2274 alternates a1@b1 a2@b2 a3@b3
2275 unalternates a1@b1
2276 vput alternates rv
2277 echo $?/$^ERRNAME <$rv>
2278 unalternates a2@b2
2279 vput alternates rv
2280 echo $?/$^ERRNAME <$rv>
2281 unalternates a3@b3
2282 vput alternates rv
2283 echo $?/$^ERRNAME <$rv>
2285 echo --4
2286 unalternates *
2287 alternates a1@b1 a2@b2 a3@b3
2288 unalternates *
2289 vput alternates rv
2290 echo $?/$^ERRNAME <$rv>
2292 echo --5
2293 unalternates *
2294 alternates a1@b1 a1@c1 a1@d1 a2@b2 a3@b3 a3@c3 a3@d3
2295 m a1@b1 a1@c1 a1@d1
2296 ~s all alternates, only a1@b1 remains
2297 ~c a2@b2
2298 ~b a3@b3 a3@c3 a3@d3
2299 ~r - '_EOT'
2300 This body is!
2301 This also body is!!
2302 _EOT
2305 echo --6
2306 unalternates *
2307 alternates a1@b1 a1@c1 a2@b2 a3@b3
2308 m a1@b1 a1@c1 a1@d1
2309 ~s a1@b1 a1@d1, and a3@c3 a3@d3 remain
2310 ~c a2@b2
2311 ~b a3@b3 a3@c3 a3@d3
2312 ~r - '_EOT'
2313 This body2 is!
2314 _EOT
2317 echo --7
2318 alternates a1@b1 a2@b2 a3; set allnet
2319 m a1@b1 a1@c1 a1@d1
2320 ~s all alternates via allnet, only a1@b1 remains
2321 ~c a2@b2
2322 ~b a3@b3 a3@c3 a3@d3
2323 ~r - '_EOT'
2324 This body3 is!
2325 _EOT
2328 echo --10
2329 unalternates *
2330 alternates a1@b1
2331 echo $?/$^ERRNAME
2332 vput alternates rv
2333 echo $?/$^ERRNAME <$rv>
2334 alternates a2@b2
2335 echo $?/$^ERRNAME
2336 vput alternates rv
2337 echo $?/$^ERRNAME <$rv>
2338 alternates a3@b3
2339 echo $?/$^ERRNAME
2340 vput alternates rv
2341 echo $?/$^ERRNAME <$rv>
2342 alternates a4@b4
2343 echo $?/$^ERRNAME
2344 vput alternates rv
2345 echo $?/$^ERRNAME <$rv>
2347 unalternates *
2348 vput alternates rv
2349 echo $?/$^ERRNAME <$rv>
2351 echo --11
2352 set posix
2353 alternates a1@b1 a2@b2
2354 echo $?/$^ERRNAME
2355 vput alternates rv
2356 echo $?/$^ERRNAME <$rv>
2357 alternates a3@b3 a4@b4
2358 echo $?/$^ERRNAME
2359 vput alternates rv
2360 echo $?/$^ERRNAME <$rv>
2361 __EOT
2362 check behave:alternates-1 0 "${MBOX}" '142184864 515'
2363 check behave:alternates-2 - .tall '1878598364 505'
2365 t_epilog
2368 t_behave_alias() {
2369 t_prolog
2370 TRAP_EXIT_ADDONS="./.t*"
2372 ${cat} <<-_EOT > ./.tsendmail.sh
2373 #!${MYSHELL} -
2374 (echo 'From Hippocastanum Mon Jun 19 15:07:07 2017' && ${cat} && echo
2375 ) >> "${MBOX}"
2376 _EOT
2377 chmod 0755 ./.tsendmail.sh
2379 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} -Smta=./.tsendmail.sh > ./.tall 2>&1
2380 alias a1 ex1@a1.ple
2381 alias a1 ex2@a1.ple "EX3 <ex3@a1.ple>"
2382 alias a1 ex4@a1.ple
2383 alias a2 ex1@a2.ple ex2@a2.ple ex3@a2.ple ex4@a2.ple
2384 alias a3 a4
2385 alias a4 a5 ex1@a4.ple
2386 alias a5 a6
2387 alias a6 a7 ex1@a6.ple
2388 alias a7 a8
2389 alias a8 ex1@a8.ple
2390 alias a1
2391 alias a2
2392 alias a3
2393 m a1
2394 ~c a2
2395 ~b a3
2396 ~r - '_EOT'
2397 This body is!
2398 This also body is!!
2399 _EOT
2400 __EOT
2401 check behave:alias-1 0 "${MBOX}" '2496925843 272'
2402 check behave:alias-2 - .tall '3548953204 152'
2404 # TODO t_behave_alias: n_ALIAS_MAXEXP is compile-time constant,
2405 # TODO need to somehow provide its contents to the test, then test
2407 t_epilog
2410 t_behave_filetype() {
2411 t_prolog
2412 TRAP_EXIT_ADDONS="./.t*"
2414 ${cat} <<-_EOT > ./.tsendmail.sh
2415 #!${MYSHELL} -
2416 (echo 'From Alchemilla Wed Apr 25 15:12:13 2017' && ${cat} && echo
2417 ) >> "${MBOX}"
2418 _EOT
2419 chmod 0755 ./.tsendmail.sh
2421 printf 'm m1@e.t\nL1\nHy1\n~.\nm m2@e.t\nL2\nHy2\n~@ %s\n~.\n' \
2422 "${SRCDIR}snailmail.jpg" | ${MAILX} ${ARGS} -Smta=./.tsendmail.sh
2423 check behave:filetype-1 0 "${MBOX}" '1594682963 13520'
2425 if command -v gzip >/dev/null 2>&1; then
2426 ${rm} -f ./.t.mbox*
2428 printf 'File "%s"\ncopy 1 ./.t.mbox.gz
2429 copy 2 ./.t.mbox.gz' "${MBOX}" |
2430 ${MAILX} ${ARGS} \
2431 -X'filetype gz gzip\ -dc gzip\ -c'
2432 printf 'File ./.t.mbox.gz\ncopy * ./.t.mbox\n' |
2433 ${MAILX} ${ARGS} \
2434 -X'filetype gz gzip\ -dc gzip\ -c'
2435 } > ./.t.out 2>&1
2436 check behave:filetype-2 - "./.t.mbox" '1594682963 13520'
2437 check behave:filetype-3 - "./.t.out" '2494681730 102'
2438 else
2439 echo 'behave:filetype-2: unsupported, skipped'
2440 echo 'behave:filetype-3: unsupported, skipped'
2444 ${rm} -f ./.t.mbox*
2445 printf 'File "%s"\ncopy 1 ./.t.mbox.gz
2446 copy 2 ./.t.mbox.gz
2447 copy 1 ./.t.mbox.gz
2448 copy 2 ./.t.mbox.gz
2449 ' "${MBOX}" |
2450 ${MAILX} ${ARGS} \
2451 -X'filetype gz gzip\ -dc gzip\ -c' \
2452 -X'filetype mbox.gz "${sed} 1,3d|${cat}" \
2453 "echo eins;echo zwei;echo und mit ${sed} bist Du dabei;${cat}"'
2454 printf 'File ./.t.mbox.gz\ncopy * ./.t.mbox\n' |
2455 ${MAILX} ${ARGS} \
2456 -X'filetype gz gzip\ -dc gzip\ -c' \
2457 -X'filetype mbox.gz "${sed} 1,3d|${cat}" kill\ 0'
2458 } > ./.t.out 2>&1
2459 check behave:filetype-4 - "./.t.mbox" '2886541147 27060'
2460 check behave:filetype-5 - "./.t.out" '838452520 172'
2462 t_epilog
2465 t_behave_record_a_resend() {
2466 t_prolog
2467 TRAP_EXIT_ADDONS="./.t.record ./.t.resent"
2469 printf '
2470 set record=%s
2471 m %s\n~s Subject 1.\nHello.\n~.
2472 set record-files add-file-recipients
2473 m %s\n~s Subject 2.\nHello.\n~.
2474 File %s
2475 resend 2 ./.t.resent
2476 Resend 1 ./.t.resent
2477 set record-resent
2478 resend 2 ./.t.resent
2479 Resend 1 ./.t.resent
2480 ' ./.t.record "${MBOX}" "${MBOX}" "${MBOX}" |
2481 ${MAILX} ${ARGS}
2483 check behave:record_a_resend-1 0 "${MBOX}" '3057873538 256'
2484 check behave:record_a_resend-2 - .t.record '391356429 460'
2485 check behave:record_a_resend-3 - .t.resent '2685231691 648'
2487 t_epilog
2490 t_behave_e_H_L_opts() {
2491 t_prolog
2492 TRAP_EXIT_ADDONS="./.tsendmail.sh ./.t.mbox"
2494 touch ./.t.mbox
2495 ${MAILX} ${ARGS} -ef ./.t.mbox
2496 echo ${?} > "${MBOX}"
2498 ${cat} <<-_EOT > ./.tsendmail.sh
2499 #!${MYSHELL} -
2500 (echo 'From Alchemilla Wed Apr 07 17:03:33 2017' && ${cat} && echo
2501 ) >> "./.t.mbox"
2502 _EOT
2503 chmod 0755 ./.tsendmail.sh
2504 printf 'm me@exam.ple\nLine 1.\nHello.\n~.\n' |
2505 ${MAILX} ${ARGS} -Smta=./.tsendmail.sh
2506 printf 'm you@exam.ple\nLine 1.\nBye.\n~.\n' |
2507 ${MAILX} ${ARGS} -Smta=./.tsendmail.sh
2509 ${MAILX} ${ARGS} -ef ./.t.mbox
2510 echo ${?} >> "${MBOX}"
2511 ${MAILX} ${ARGS} -efL @t@me ./.t.mbox
2512 echo ${?} >> "${MBOX}"
2513 ${MAILX} ${ARGS} -efL @t@you ./.t.mbox
2514 echo ${?} >> "${MBOX}"
2515 ${MAILX} ${ARGS} -efL '@>@Line 1' ./.t.mbox
2516 echo ${?} >> "${MBOX}"
2517 ${MAILX} ${ARGS} -efL '@>@Hello.' ./.t.mbox
2518 echo ${?} >> "${MBOX}"
2519 ${MAILX} ${ARGS} -efL '@>@Bye.' ./.t.mbox
2520 echo ${?} >> "${MBOX}"
2521 ${MAILX} ${ARGS} -efL '@>@Good bye.' ./.t.mbox
2522 echo ${?} >> "${MBOX}"
2524 ${MAILX} ${ARGS} -fH ./.t.mbox >> "${MBOX}"
2525 echo ${?} >> "${MBOX}"
2526 ${MAILX} ${ARGS} -fL @t@me ./.t.mbox >> "${MBOX}"
2527 echo ${?} >> "${MBOX}"
2528 ${MAILX} ${ARGS} -fL @t@you ./.t.mbox >> "${MBOX}"
2529 echo ${?} >> "${MBOX}"
2530 ${MAILX} ${ARGS} -fL '@>@Line 1' ./.t.mbox >> "${MBOX}"
2531 echo ${?} >> "${MBOX}"
2532 ${MAILX} ${ARGS} -fL '@>@Hello.' ./.t.mbox >> "${MBOX}"
2533 echo ${?} >> "${MBOX}"
2534 ${MAILX} ${ARGS} -fL '@>@Bye.' ./.t.mbox >> "${MBOX}"
2535 echo ${?} >> "${MBOX}"
2536 ${MAILX} ${ARGS} -fL '@>@Good bye.' ./.t.mbox >> "${MBOX}" 2>/dev/null
2537 echo ${?} >> "${MBOX}"
2539 check behave:e_H_L_opts - "${MBOX}" '1708955574 678'
2541 t_epilog
2544 t_behave_compose_hooks() { # TODO monster
2545 t_prolog
2546 TRAP_EXIT_ADDONS="./.t*"
2548 (echo line one&&echo line two&&echo line three) > ./.treadctl
2549 (echo echo four&&echo echo five&&echo echo six) > ./.tattach
2551 ${cat} <<-_EOT > ./.tsendmail.sh
2552 #!${MYSHELL} -
2553 (echo 'From PrimulaVeris Wed Apr 10 22:59:00 2017' && ${cat} && echo
2554 ) >> "${MBOX}"
2555 _EOT
2556 chmod 0755 ./.tsendmail.sh
2558 ${cat} <<'__EOT__' > ./.trc
2559 define bail {
2560 echoerr "Failed: $1. Bailing out"; echo "~x"; xit
2562 define xerr {
2563 vput vexpr es substr "$1" 0 1
2564 if [ "$es" != 2 ]
2565 xcall bail "$2"
2568 define read_mline_res {
2569 read hl; wysh set len=$? es=$! en=$^ERRNAME;\
2570 echo $len/$es/$^ERRNAME: $hl
2571 if [ $es -ne $^ERR-NONE ]
2572 xcall bail read_mline_res
2573 elif [ $len -ne 0 ]
2574 \xcall read_mline_res
2577 define ins_addr {
2578 wysh set xh=$1
2579 echo "~^header list"; read hl; echo $hl;\
2580 call xerr "$hl" "in_addr ($xh) 0-1"
2582 echo "~^header insert $xh diet <$xh@exam.ple> spliced";\
2583 read es; echo $es; call xerr "$es" "ins_addr $xh 1-1"
2584 echo "~^header insert $xh <${xh}2@exam.ple>";\
2585 read es; echo $es; call xerr "$es" "ins_addr $xh 1-2"
2586 echo "~^header insert $xh ${xh}3@exam.ple";\
2587 read es; echo $es; call xerr "$es" "ins_addr $xh 1-3"
2588 echo "~^header list $xh"; read hl; echo $hl;\
2589 call xerr "$hl" "ins_addr $xh 1-4"
2590 echo "~^header show $xh"; read es; call xerr $es "ins_addr $xh 1-5"
2591 call read_mline_res
2593 if [ "$t_remove" == "" ]
2594 return
2597 echo "~^header remove $xh"; read es; call xerr $es "ins_addr $xh 2-1"
2598 echo "~^header remove $xh"; read es; vput vexpr es substr $es 0 3
2599 if [ $es != 501 ]
2600 xcall bail "ins_addr $xh 2-2"
2602 echo "~^header list $xh"; read es; vput vexpr es substr $es 0 3
2603 if [ $es != 501 ]
2604 xcall bail "ins_addr $xh 2-3"
2606 echo "~^header show $xh"; read es; vput vexpr es substr $es 0 3
2607 if [ $es != 501 ]
2608 xcall bail "ins_addr $xh 2-4"
2612 echo "~^header insert $xh diet <$xh@exam.ple> spliced";\
2613 read es; echo $es; call xerr "$es" "ins_addr $xh 3-1"
2614 echo "~^header insert $xh <${xh}2@exam.ple>";\
2615 read es; echo $es; call xerr "$es" "ins_addr $xh 3-2"
2616 echo "~^header insert $xh ${xh}3@exam.ple";\
2617 read es; echo $es; call xerr "$es" "ins_addr $xh 3-3"
2618 echo "~^header list $xh"; read hl; echo $hl;\
2619 call xerr "$hl" "ins_addr $xh 3-4"
2620 echo "~^header show $xh"; read es; call xerr $es "ins_addr $xh 3-5"
2621 call read_mline_res
2623 echo "~^header remove-at $xh 1"; read es;\
2624 call xerr $es "ins_addr $xh 3-6"
2625 echo "~^header remove-at $xh 1"; read es;\
2626 call xerr $es "ins_addr $xh 3-7"
2627 echo "~^header remove-at $xh 1"; read es;\
2628 call xerr $es "ins_addr $xh 3-8"
2629 echo "~^header remove-at $xh 1"; read es;\
2630 vput vexpr es substr $es 0 3
2631 if [ $es != 501 ]
2632 xcall bail "ins_addr $xh 3-9"
2634 echo "~^header remove-at $xh T"; read es;\
2635 vput vexpr es substr $es 0 3
2636 if [ $es != 505 ]
2637 xcall bail "ins_addr $xh 3-10"
2639 echo "~^header list $xh"; read es;\
2640 vput vexpr es substr $es 0 3
2641 if [ $es != 501 ]
2642 xcall bail "ins_addr $xh 3-11"
2644 echo "~^header show $xh"; read es;\
2645 vput vexpr es substr $es 0 3
2646 if [ $es != 501 ]
2647 xcall bail "ins_addr $xh 3-12"
2651 echo "~^header insert $xh diet <$xh@exam.ple> spliced";\
2652 read es; echo $es; call xerr "$es" "ins_addr $xh 4-1"
2653 echo "~^header insert $xh <${xh}2@exam.ple> (comment) \"Quot(e)d\"";\
2654 read es; echo $es; call xerr "$es" "ins_addr $xh 4-2"
2655 echo "~^header insert $xh ${xh}3@exam.ple";\
2656 read es; echo $es; call xerr "$es" "ins_addr $xh 4-3"
2657 echo "~^header list $xh"; read hl; echo $hl;\
2658 call xerr "$hl" "header list $xh 3-4"
2659 echo "~^header show $xh"; read es; call xerr $es "ins_addr $xh 4-5"
2660 call read_mline_res
2662 echo "~^header remove-at $xh 3"; read es;\
2663 call xerr $es "ins_addr $xh 4-6"
2664 echo "~^header remove-at $xh 2"; read es;\
2665 call xerr $es "ins_addr $xh 4-7"
2666 echo "~^header remove-at $xh 1"; read es;\
2667 call xerr $es "ins_addr $xh 4-8"
2668 echo "~^header remove-at $xh 1"; read es;\
2669 vput vexpr es substr $es 0 3
2670 if [ $es != 501 ]
2671 xcall bail "ins_addr $xh 4-9"
2673 echo "~^header remove-at $xh T"; read es;\
2674 vput vexpr es substr $es 0 3
2675 if [ $es != 505 ]
2676 xcall bail "ins_addr $xh 4-10"
2678 echo "~^header list $xh"; read es;\
2679 vput vexpr es substr $es 0 3
2680 if [ $es != 501 ]
2681 xcall bail "ins_addr $xh 4-11"
2683 echo "~^header show $xh"; read es;\
2684 vput vexpr es substr $es 0 3
2685 if [ $es != 501 ]
2686 xcall bail "ins_addr $xh 4-12"
2689 define ins_ref {
2690 wysh set xh=$1 mult=$2
2691 echo "~^header list"; read hl; echo $hl;\
2692 call xerr "$hl" "ins_ref ($xh) 0-1"
2694 echo "~^header insert $xh <$xh@exam.ple>";\
2695 read es; echo $es; call xerr "$es" "ins_ref $xh 1-1"
2696 if [ $mult -ne 0 ]
2697 echo "~^header insert $xh <${xh}2@exam.ple>";\
2698 read es; echo $es; call xerr "$es" "ins_ref $xh 1-2"
2699 echo "~^header insert $xh ${xh}3@exam.ple";\
2700 read es; echo $es; call xerr "$es" "ins_ref $xh 1-3"
2701 else
2702 echo "~^header insert $xh <${xh}2@exam.ple>"; read es;\
2703 vput vexpr es substr $es 0 3
2704 if [ $es != 506 ]
2705 xcall bail "ins_ref $xh 1-4"
2709 echo "~^header list $xh"; read hl; echo $hl;\
2710 call xerr "$hl" "ins_ref $xh 1-5"
2711 echo "~^header show $xh"; read es; call xerr $es "ins_ref $xh 1-6"
2712 call read_mline_res
2714 if [ "$t_remove" == "" ]
2715 return
2718 echo "~^header remove $xh"; read es;\
2719 call xerr $es "ins_ref $xh 2-1"
2720 echo "~^header remove $xh"; read es;\
2721 vput vexpr es substr $es 0 3
2722 if [ $es != 501 ]
2723 xcall bail "ins_ref $xh 2-2"
2725 echo "~^header list $xh"; read es;\
2726 vput vexpr es substr $es 0 3
2727 if [ $es != 501 ]
2728 xcall bail "$es ins_ref $xh 2-3"
2730 echo "~^header show $xh"; read es;\
2731 vput vexpr es substr $es 0 3
2732 if [ $es != 501 ]
2733 xcall bail "ins_ref $xh 2-4"
2737 echo "~^header insert $xh <$xh@exam.ple>";\
2738 read es; echo $es; call xerr "$es" "ins_ref $xh 3-1"
2739 if [ $mult -ne 0 ]
2740 echo "~^header insert $xh <${xh}2@exam.ple>";\
2741 read es; echo $es; call xerr "$es" "ins_ref $xh 3-2"
2742 echo "~^header insert $xh ${xh}3@exam.ple";\
2743 read es; echo $es; call xerr "$es" "ins_ref $xh 3-3"
2745 echo "~^header list $xh";\
2746 read hl; echo $hl; call xerr "$hl" "ins_ref $xh 3-4"
2747 echo "~^header show $xh";\
2748 read es; call xerr $es "ins_ref $xh 3-5"
2749 call read_mline_res
2751 echo "~^header remove-at $xh 1"; read es;\
2752 call xerr $es "ins_ref $xh 3-6"
2753 if [ $mult -ne 0 ] && [ $xh != subject ]
2754 echo "~^header remove-at $xh 1"; read es;\
2755 call xerr $es "ins_ref $xh 3-7"
2756 echo "~^header remove-at $xh 1"; read es;\
2757 call xerr $es "ins_ref $xh 3-8"
2759 echo "~^header remove-at $xh 1"; read es;\
2760 vput vexpr es substr $es 0 3
2761 if [ $es != 501 ]
2762 xcall bail "ins_ref $xh 3-9"
2764 echo "~^header remove-at $xh T"; read es;\
2765 vput vexpr es substr $es 0 3
2766 if [ $es != 505 ]
2767 xcall bail "ins_ref $xh 3-10"
2769 echo "~^header show $xh"; read es;\
2770 vput vexpr es substr $es 0 3
2771 if [ $es != 501 ]
2772 xcall bail "ins_ref $xh 3-11"
2776 echo "~^header insert $xh <$xh@exam.ple> ";\
2777 read es; echo $es; call xerr "$es" "ins_ref $xh 4-1"
2778 if [ $mult -ne 0 ]
2779 echo "~^header insert $xh <${xh}2@exam.ple> ";\
2780 read es; echo $es; call xerr "$es" "ins_ref $xh 4-2"
2781 echo "~^header insert $xh ${xh}3@exam.ple";\
2782 read es; echo $es; call xerr "$es" "ins_ref $xh 4-3"
2784 echo "~^header list $xh"; read hl; echo $hl;\
2785 call xerr "$hl" "ins_ref $xh 4-4"
2786 echo "~^header show $xh"; read es; call xerr $es "ins_ref $xh 4-5"
2787 call read_mline_res
2789 if [ $mult -ne 0 ] && [ $xh != subject ]
2790 echo "~^header remove-at $xh 3"; read es;\
2791 call xerr $es "ins_ref $xh 4-6"
2792 echo "~^header remove-at $xh 2"; read es;\
2793 call xerr $es "ins_ref $xh 4-7"
2795 echo "~^header remove-at $xh 1"; read es;\
2796 call xerr $es "ins_ref $xh 4-8"
2797 echo "~^header remove-at $xh 1"; read es;\
2798 vput vexpr es substr $es 0 3
2799 if [ $es != 501 ]
2800 xcall bail "ins_ref $xh 4-9"
2802 echo "~^header remove-at $xh T"; read es;\
2803 vput vexpr es substr $es 0 3
2804 if [ $es != 505 ]
2805 xcall bail "ins_ref $xh 4-10"
2807 echo "~^header show $xh"; read es;\
2808 vput vexpr es substr $es 0 3
2809 if [ $es != 501 ]
2810 xcall bail "ins_ref $xh 4-11"
2813 define t_header {
2814 echo t_header ENTER
2815 # In collect.c order
2816 call ins_addr from
2817 call ins_ref sender 0 # Not a "ref", but works
2818 call ins_addr To
2819 call ins_addr cC
2820 call ins_addr bCc
2821 call ins_addr reply-To
2822 call ins_addr mail-Followup-to
2823 call ins_ref messAge-id 0
2824 call ins_ref rEfErEncEs 1
2825 call ins_ref in-Reply-to 1
2826 call ins_ref subject 1 # Not a "ref", but works (with tweaks)
2827 call ins_addr freeForm1
2828 call ins_addr freeform2
2830 echo "~^header show MAILX-Command"; read es; call xerr $es "t_header 1000"
2831 call read_mline_res
2832 echo "~^header show MAILX-raw-TO"; read es; call xerr $es "t_header 1001"
2833 call read_mline_res
2835 echo t_header LEAVE
2837 define t_attach {
2838 echo t_attach ENTER
2840 echo "~^attachment";\
2841 read hl; echo $hl; vput vexpr es substr "$hl" 0 3
2842 if [ "$es" != 501 ]
2843 xcall bail "attach 0-1"
2846 echo "~^attach attribute ./.treadctl";\
2847 read hl; echo $hl; vput vexpr es substr "$hl" 0 3
2848 if [ "$es" != 501 ]
2849 xcall bail "attach 0-2"
2851 echo "~^attachment attribute-at 1";\
2852 read hl; echo $hl; vput vexpr es substr "$hl" 0 3
2853 if [ "$es" != 501 ]
2854 xcall bail "attach 0-3"
2857 echo "~^attachment insert ./.treadctl=ascii";\
2858 read hl; echo $hl; call xerr "$hl" "attach 1-1"
2859 echo "~^attachment list";\
2860 read es; echo $es;call xerr "$es" "attach 1-2"
2861 call read_mline_res
2862 echo "~^attachment attribute ./.treadctl";\
2863 read es; echo $es;call xerr "$es" "attach 1-3"
2864 call read_mline_res
2865 echo "~^attachment attribute .treadctl";\
2866 read es; echo $es;call xerr "$es" "attach 1-4"
2867 call read_mline_res
2868 echo "~^attachment attribute-at 1";\
2869 read es; echo $es;call xerr "$es" "attach 1-5"
2870 call read_mline_res
2872 echo "~^attachment attribute-set ./.treadctl filename rctl";\
2873 read es; echo $es;call xerr "$es" "attach 1-6"
2874 echo "~^attachment attribute-set .treadctl content-description Au";\
2875 read es; echo $es;call xerr "$es" "attach 1-7"
2876 echo "~^attachment attribute-set-at 1 content-id <10.du@ich>";\
2877 read es; echo $es;call xerr "$es" "attach 1-8"
2879 echo "~^attachment attribute ./.treadctl";\
2880 read es; echo $es;call xerr "$es" "attach 1-9"
2881 call read_mline_res
2882 echo "~^attachment attribute .treadctl";\
2883 read es; echo $es;call xerr "$es" "attach 1-10"
2884 call read_mline_res
2885 echo "~^attachment attribute rctl";\
2886 read es; echo $es;call xerr "$es" "attach 1-11"
2887 call read_mline_res
2888 echo "~^attachment attribute-at 1";\
2889 read es; echo $es;call xerr "$es" "attach 1-12"
2890 call read_mline_res
2893 echo "~^attachment insert ./.tattach=latin1";\
2894 read hl; echo $hl; call xerr "$hl" "attach 2-1"
2895 echo "~^attachment list";\
2896 read es; echo $es;call xerr "$es" "attach 2-2"
2897 call read_mline_res
2898 echo "~^attachment attribute ./.tattach";\
2899 read es; echo $es;call xerr "$es" "attach 2-3"
2900 call read_mline_res
2901 echo "~^attachment attribute .tattach";\
2902 read es; echo $es;call xerr "$es" "attach 2-4"
2903 call read_mline_res
2904 echo "~^attachment attribute-at 2";\
2905 read es; echo $es;call xerr "$es" "attach 2-5"
2906 call read_mline_res
2908 echo "~^attachment attribute-set ./.tattach filename tat";\
2909 read es; echo $es;call xerr "$es" "attach 2-6"
2910 echo \
2911 "~^attachment attribute-set .tattach content-description Au2";\
2912 read es; echo $es;call xerr "$es" "attach 2-7"
2913 echo "~^attachment attribute-set-at 2 content-id <20.du@wir>";\
2914 read es; echo $es;call xerr "$es" "attach 2-8"
2915 echo \
2916 "~^attachment attribute-set-at 2 content-type application/x-sh";\
2917 read es; echo $es;call xerr "$es" "attach 2-9"
2919 echo "~^attachment attribute ./.tattach";\
2920 read es; echo $es;call xerr "$es" "attach 2-10"
2921 call read_mline_res
2922 echo "~^attachment attribute .tattach";\
2923 read es; echo $es;call xerr "$es" "attach 2-11"
2924 call read_mline_res
2925 echo "~^attachment attribute tat";\
2926 read es; echo $es;call xerr "$es" "attach 2-12"
2927 call read_mline_res
2928 echo "~^attachment attribute-at 2";\
2929 read es; echo $es;call xerr "$es" "attach 2-13"
2930 call read_mline_res
2933 if [ "$t_remove" == "" ]
2934 return
2937 echo "~^attachment remove ./.treadctl"; read es;\
2938 call xerr $es "attach 3-1"
2939 echo "~^attachment remove ./.tattach"; read es;\
2940 call xerr $es "attach 3-2"
2941 echo "~^ attachment remove ./.treadctl"; read es;\
2942 vput vexpr es substr $es 0 3
2943 if [ $es != 501 ]
2944 xcall bail "attach 3-3"
2946 echo "~^ attachment remove ./.tattach"; read es;\
2947 vput vexpr es substr $es 0 3
2948 if [ $es != 501 ]
2949 xcall bail "attach 3-4"
2951 echo "~^attachment list"; read es;\
2952 vput vexpr es substr $es 0 3
2953 if [ $es != 501 ]
2954 xcall bail "attach 3-5"
2958 echo "~^attachment insert ./.tattach=latin1";\
2959 read hl; echo $hl; call xerr "$hl" "attach 4-1"
2960 echo "~^attachment insert ./.tattach=latin1";\
2961 read hl; echo $hl; call xerr "$hl" "attach 4-2"
2962 echo "~^attachment list";\
2963 read es; echo $es;call xerr "$es" "attach 4-3"
2964 call read_mline_res
2965 echo "~^ attachment remove .tattach"; read es;\
2966 vput vexpr es substr $es 0 3
2967 if [ $es != 506 ]
2968 xcall bail "attach 4-4 $es"
2970 echo "~^attachment remove-at T"; read es;\
2971 vput vexpr es substr $es 0 3
2972 if [ $es != 505 ]
2973 xcall bail "attach 4-5"
2975 echo "~^attachment remove ./.tattach"; read es;\
2976 call xerr $es "attach 4-6"
2977 echo "~^attachment remove ./.tattach"; read es;\
2978 call xerr $es "attach 4-7"
2979 echo "~^ attachment remove ./.tattach"; read es;\
2980 vput vexpr es substr $es 0 3
2981 if [ $es != 501 ]
2982 xcall bail "attach 4-8 $es"
2984 echo "~^attachment list"; read es;\
2985 vput vexpr es substr $es 0 3
2986 if [ $es != 501 ]
2987 xcall bail "attach 4-9"
2991 echo "~^attachment insert ./.tattach=latin1";\
2992 read hl; echo $hl; call xerr "$hl" "attach 5-1"
2993 echo "~^attachment insert ./.tattach=latin1";\
2994 read hl; echo $hl; call xerr "$hl" "attach 5-2"
2995 echo "~^attachment insert ./.tattach=latin1";\
2996 read hl; echo $hl; call xerr "$hl" "attach 5-3"
2997 echo "~^attachment list";\
2998 read es; echo $es;call xerr "$es" "attach 5-4"
2999 call read_mline_res
3001 echo "~^attachment remove-at 3"; read es;\
3002 call xerr $es "attach 5-5"
3003 echo "~^attachment remove-at 3"; read es;\
3004 vput vexpr es substr $es 0 3
3005 if [ $es != 501 ]
3006 xcall bail "attach 5-6"
3008 echo "~^attachment remove-at 2"; read es;\
3009 call xerr $es "attach 5-7"
3010 echo "~^attachment remove-at 2"; read es;\
3011 vput vexpr es substr $es 0 3
3012 if [ $es != 501 ]
3013 xcall bail "attach 5-8"
3015 echo "~^attachment remove-at 1"; read es;\
3016 call xerr $es "attach 5-9"
3017 echo "~^attachment remove-at 1"; read es;\
3018 vput vexpr es substr $es 0 3
3019 if [ $es != 501 ]
3020 xcall bail "attach 5-10"
3023 echo "~^attachment list"; read es;\
3024 vput vexpr es substr $es 0 3
3025 if [ $es != 501 ]
3026 xcall bail "attach 5-11"
3030 echo "~^attachment insert ./.tattach=latin1";\
3031 read hl; echo $hl; call xerr "$hl" "attach 6-1"
3032 echo "~^attachment insert ./.tattach=latin1";\
3033 read hl; echo $hl; call xerr "$hl" "attach 6-2"
3034 echo "~^attachment insert ./.tattach=latin1";\
3035 read hl; echo $hl; call xerr "$hl" "attach 6-3"
3036 echo "~^attachment list";\
3037 read es; echo $es;call xerr "$es" "attach 6-4"
3038 call read_mline_res
3040 echo "~^attachment remove-at 1"; read es;\
3041 call xerr $es "attach 6-5"
3042 echo "~^attachment remove-at 1"; read es;\
3043 call xerr $es "attach 6-6"
3044 echo "~^attachment remove-at 1"; read es;\
3045 call xerr $es "attach 6-7"
3046 echo "~^attachment remove-at 1"; read es;\
3047 vput vexpr es substr $es 0 3
3048 if [ $es != 501 ]
3049 xcall bail "attach 6-8"
3052 echo "~^attachment list"; read es;\
3053 vput vexpr es substr $es 0 3
3054 if [ $es != 501 ]
3055 xcall bail "attach 6-9"
3058 echo t_attach LEAVE
3060 define t_ocs {
3061 read ver
3062 echo t_ocs
3063 call t_header
3064 call t_attach
3066 define t_oce {
3067 echo on-compose-enter, mailx-command<$mailx-command>
3068 alternates alter1@exam.ple alter2@exam.ple
3069 alternates
3070 set autocc='alter1@exam.ple alter2@exam.ple'
3071 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3072 echo mailx-subject<$mailx-subject>
3073 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3074 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3075 mailx-raw-bcc<$mailx-raw-bcc>
3076 echo mailx-orig-from<$mailx-orig-from> mailx-orig-to<$mailx-orig-to> \
3077 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3079 define t_ocl {
3080 echo on-compose-leave, mailx-command<$mailx-command>
3081 vput alternates al
3082 eval alternates $al alter3@exam.ple alter4@exam.ple
3083 alternates
3084 set autobcc='alter3@exam.ple alter4@exam.ple'
3085 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3086 echo mailx-subject<$mailx-subject>
3087 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3088 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3089 mailx-raw-bcc<$mailx-raw-bcc>
3090 echo mailx-orig-from<$mailx-orig-from> mailx-orig-to<$mailx-orig-to> \
3091 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3093 define t_occ {
3094 echo on-compose-cleanup, mailx-command<$mailx-command>
3095 unalternates *
3096 alternates
3097 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3098 echo mailx-subject<$mailx-subject>
3099 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3100 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3101 mailx-raw-bcc<$mailx-raw-bcc>
3102 echo mailx-orig-from<$mailx-orig-from> mailx-orig-to<$mailx-orig-to> \
3103 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3105 wysh set on-compose-splice=t_ocs \
3106 on-compose-enter=t_oce on-compose-leave=t_ocl \
3107 on-compose-cleanup=t_occ
3108 __EOT__
3110 ${rm} -f "${MBOX}"
3111 printf 'm this-goes@nowhere\nbody\n!.\n' |
3112 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! -Sstealthmua=noagent \
3113 -X'source ./.trc' -Smta=./.tsendmail.sh \
3114 >./.tall 2>&1
3115 ${cat} ./.tall >> "${MBOX}"
3116 check behave:compose_hooks-1 0 "${MBOX}" '3479456964 10101'
3118 ${rm} -f "${MBOX}"
3119 printf 'm this-goes@nowhere\nbody\n!.\n' |
3120 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! -Sstealthmua=noagent \
3121 -St_remove=1 -X'source ./.trc' -Smta=./.tsendmail.sh \
3122 >./.tall 2>&1
3123 ${cat} ./.tall >> "${MBOX}"
3124 check behave:compose_hooks-2 0 "${MBOX}" '3654000499 12535'
3128 # Some state machine stress, shell compose hook, localopts for hook, etc.
3129 # readctl in child. ~r as HERE document
3130 ${rm} -f "${MBOX}"
3131 printf 'm ex@am.ple\nbody\n!.\nvar t_oce t_ocs t_ocs_sh t_ocl t_occ autocc' |
3132 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! \
3133 -Smta=./.tsendmail.sh \
3135 define bail {
3136 echoerr "Failed: $1. Bailing out"; echo "~x"; xit
3138 define xerr {
3139 vput vexpr es substr "$1" 0 1
3140 if [ "$es" != 2 ]
3141 xcall bail "$2"
3144 define read_mline_res {
3145 read hl; wysh set len=$? es=$! en=$^ERRNAME;\
3146 echo $len/$es/$^ERRNAME: $hl
3147 if [ $es -ne $^ERR-NONE ]
3148 xcall bail read_mline_res
3149 elif [ $len -ne 0 ]
3150 \xcall read_mline_res
3153 define _work {
3154 vput vexpr i + 1 "$2"
3155 if [ $i -lt 111 ]
3156 vput vexpr j % $i 10
3157 if [ $j -ne 0 ]
3158 set j=xcall
3159 else
3160 echon "$i.. "
3161 set j=call
3163 eval \\$j _work $1 $i
3164 return $?
3166 vput vexpr i + $i "$1"
3167 return $i
3169 define _read {
3170 wysh set line; read line;wysh set es=$? en=$^ERRNAME ;\
3171 echo read:$es/$en: $line
3172 if [ "${es}" -ne -1 ]
3173 xcall _read
3175 readctl remove $cwd/.treadctl; echo readctl remove:$?/$^ERRNAME
3177 define t_ocs {
3178 read ver
3179 echo t_ocs
3180 echo "~^header list"; read hl; echo $hl;\
3181 vput vexpr es substr "$hl" 0 1
3182 if [ "$es" != 2 ]
3183 xcall bail "header list"
3184 endif
3186 call _work 1; echo $?
3187 echo "~^header insert cc splicy diet <splice@exam.ple> spliced";\
3188 read es; echo $es; vput vexpr es substr "$es" 0 1
3189 if [ "$es" != 2 ]
3190 xcall bail "be diet"
3191 endif
3192 echo "~^header insert cc <splice2@exam.ple>";\
3193 read es; echo $es; vput vexpr es substr "$es" 0 1
3194 if [ "$es" != 2 ]
3195 xcall bail "be diet2"
3196 endif
3198 call _work 2; echo $?
3199 echo "~^header insert bcc juicy juice <juice@exam.ple> spliced";\
3200 read es; echo $es;vput vexpr es substr "$es" 0 1
3201 if [ "$es" != 2 ]
3202 xcall bail "be juicy"
3203 endif
3204 echo "~^header insert bcc juice2@exam.ple";\
3205 read es; echo $es;vput vexpr es substr "$es" 0 1
3206 if [ "$es" != 2 ]
3207 xcall bail "be juicy2"
3208 endif
3209 echo "~^header insert bcc juice3 <juice3@exam.ple>";\
3210 read es; echo $es;vput vexpr es substr "$es" 0 1
3211 if [ "$es" != 2 ]
3212 xcall bail "be juicy3"
3213 endif
3214 echo "~^header insert bcc juice4@exam.ple";\
3215 read es; echo $es;vput vexpr es substr "$es" 0 1
3216 if [ "$es" != 2 ]
3217 xcall bail "be juicy4"
3218 endif
3220 echo "~^header remove-at bcc 3";\
3221 read es; echo $es;vput vexpr es substr "$es" 0 1
3222 if [ "$es" != 2 ]
3223 xcall bail "remove juicy5"
3224 endif
3225 echo "~^header remove-at bcc 2";\
3226 read es; echo $es;vput vexpr es substr "$es" 0 1
3227 if [ "$es" != 2 ]
3228 xcall bail "remove juicy6"
3229 endif
3230 echo "~^header remove-at bcc 3";\
3231 read es; echo $es;vput vexpr es substr "$es" 0 3
3232 if [ "$es" != 501 ]
3233 xcall bail "failed to remove-at"
3234 endif
3235 # Add duplicates which ought to be removed!
3236 echo "~^header insert bcc juice4@exam.ple";\
3237 read es; echo $es;vput vexpr es substr "$es" 0 1
3238 if [ "$es" != 2 ]
3239 xcall bail "be juicy4-1"
3240 endif
3241 echo "~^header insert bcc juice4@exam.ple";\
3242 read es; echo $es;vput vexpr es substr "$es" 0 1
3243 if [ "$es" != 2 ]
3244 xcall bail "be juicy4-2"
3245 endif
3246 echo "~^header insert bcc juice4@exam.ple";\
3247 read es; echo $es;vput vexpr es substr "$es" 0 1
3248 if [ "$es" != 2 ]
3249 xcall bail "be juicy4-3"
3250 endif
3251 echo "~:set t_ocs"
3254 call _work 3; echo $?
3255 echo "~r - '__EOT'"
3256 vput ! i echo just knock if you can hear me;\
3257 i=0;\
3258 while [ $i -lt 24 ]; do printf "%s " $i; i=`expr $i + 1`; done;\
3259 echo relax
3260 echon shell-cmd says $?/$^ERRNAME: $i
3261 echo "~x will not become interpreted, we are reading until __EOT"
3262 echo "__EOT"
3263 read r_status; echo "~~r status output: $r_status"
3264 echo "~:echo $? $! $^ERRNAME"
3265 read r_status
3266 echo "~~r status from parent: $r_status"
3269 call _work 4; echo $?
3270 vput cwd cwd;echo cwd:$?
3271 readctl create $cwd/.treadctl ;echo readctl:$?/$^ERRNAME;\
3272 call _read
3275 call _work 5; echo $?
3276 echo "~^header show MAILX-Command"; read es;\
3277 call xerr $es "t_header 1000"; call read_mline_res
3278 echo "~^header show MAILX-raw-TO"; read es;\
3279 call xerr $es "t_header 1001"; xcall read_mline_res
3281 echoerr IT IS WRONG IF YOU SEE THIS
3283 define t_oce {
3284 echo on-compose-enter, mailx-command<$mailx-command>
3285 set t_oce autobcc=oce@exam.ple
3286 alternates alter1@exam.ple alter2@exam.ple
3287 alternates
3288 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3289 echo mailx-subject<$mailx-subject>
3290 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3291 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3292 mailx-raw-bcc<$mailx-raw-bcc>
3293 echo mailx-orig-from<$mailx-orig-from> \
3294 mailx-orig-to<$mailx-orig-to> \
3295 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3297 define t_ocl {
3298 echo on-compose-leave, mailx-command<$mailx-command>
3299 set t_ocl autocc=ocl@exam.ple
3300 unalternates *
3301 alternates alter3@exam.ple alter4@exam.ple
3302 alternates
3303 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3304 echo mailx-subject<$mailx-subject>
3305 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3306 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3307 mailx-raw-bcc<$mailx-raw-bcc>
3308 echo mailx-orig-from<$mailx-orig-from> \
3309 mailx-orig-to<$mailx-orig-to> \
3310 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3312 define t_occ {
3313 echo on-compose-cleanup, mailx-command<$mailx-command>
3314 set t_occ autocc=occ@exam.ple
3315 unalternates *
3316 alternates
3317 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3318 echo mailx-subject<$mailx-subject>
3319 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3320 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3321 mailx-raw-bcc<$mailx-raw-bcc>
3322 echo mailx-orig-from<$mailx-orig-from> \
3323 mailx-orig-to<$mailx-orig-to> \
3324 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3326 wysh set on-compose-splice=t_ocs \
3327 on-compose-splice-shell="read ver;printf \"t_ocs-shell\\n\
3328 ~t shell@exam.ple\\n~:set t_ocs_sh\\n\"" \
3329 on-compose-enter=t_oce on-compose-leave=t_ocl \
3330 on-compose-cleanup=t_occ
3331 ' > ./.tnotes 2>&1
3332 ex0_test behave:compose_hooks-3
3333 ${cat} ./.tnotes >> "${MBOX}"
3335 check behave:compose_hooks-3 - "${MBOX}" '679526364 2431'
3337 # Reply, forward, resend, Resend
3339 ${rm} -f "${MBOX}"
3340 printf 'set from=f1@z\nm t1@z\nb1\n!.\nset from=f2@z\nm t2@z\nb2\n!.\n' |
3341 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! \
3342 -Smta=./.tsendmail.sh
3344 printf '
3345 echo start: $? $! $^ERRNAME
3346 File %s
3347 echo File: $? $! $^ERRNAME;echo;echo
3348 reply 1
3349 this is content of reply 1
3351 echo reply 1: $? $! $^ERRNAME;echo;echo
3352 Reply 1 2
3353 this is content of Reply 1 2
3355 echo Reply 1 2: $? $! $^ERRNAME;echo;echo
3356 forward 1 fwdex@am.ple
3357 this is content of forward 1
3359 echo forward 1: $? $! $^ERRNAME;echo;echo
3360 resend 1 2 resendex@am.ple
3361 echo resend 1 2: $? $! $^ERRNAME;echo;echo
3362 Resend 1 2 Resendex@am.ple
3363 echo Resend 1 2: $? $! $^ERRNAME;echo;echo
3364 ' "${MBOX}" |
3365 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! \
3366 -Smta=./.tsendmail.sh \
3368 define bail {
3369 echoerr "Failed: $1. Bailing out"; echo "~x"; xit
3371 define xerr {
3372 vput vexpr es substr "$1" 0 1
3373 if [ "$es" != 2 ]
3374 xcall bail "$2"
3377 define read_mline_res {
3378 read hl; wysh set len=$? es=$! en=$^ERRNAME;\
3379 echo mline_res:$len/$es/$^ERRNAME: $hl
3380 if [ $es -ne $^ERR-NONE ]
3381 xcall bail read_mline_res
3382 elif [ $len -ne 0 ]
3383 \xcall read_mline_res
3386 define work_hl {
3387 echo "~^header show $1"; read es;\
3388 call xerr $es "work_hl $1"; echo $1; call read_mline_res
3389 if [ $# -gt 1 ]
3390 shift
3391 xcall work_hl "$@"
3394 define t_ocs {
3395 read ver
3396 echo t_ocs version $ver
3397 echo "~^header list"; read hl; echo $hl;\
3398 echoerr the header list is $hl;\
3399 call xerr "$hl" "header list"
3400 eval vpospar set $hl
3401 shift
3402 xcall work_hl "$@"
3403 echoerr IT IS WRONG IF YOU SEE THIS
3405 define t_oce {
3406 echo on-XY-enter, mailx-command<$mailx-command>
3407 set t_oce autobcc=oce@exam.ple
3408 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3409 echo mailx-subject<$mailx-subject>
3410 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3411 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3412 mailx-raw-bcc<$mailx-raw-bcc>
3413 echo mailx-orig-from<$mailx-orig-from> \
3414 mailx-orig-to<$mailx-orig-to> \
3415 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3417 define t_ocl {
3418 echo on-XY-leave, mailx-command<$mailx-command>
3419 set t_ocl autocc=ocl@exam.ple
3420 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3421 echo mailx-subject<$mailx-subject>
3422 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3423 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3424 mailx-raw-bcc<$mailx-raw-bcc>
3425 echo mailx-orig-from<$mailx-orig-from> \
3426 mailx-orig-to<$mailx-orig-to> \
3427 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3429 define t_occ {
3430 echo on-XY-cleanup, mailx-command<$mailx-command>
3431 set t_occ autocc=occ@exam.ple
3432 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3433 echo mailx-subject<$mailx-subject>
3434 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3435 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3436 mailx-raw-bcc<$mailx-raw-bcc>
3437 echo mailx-orig-from<$mailx-orig-from> \
3438 mailx-orig-to<$mailx-orig-to> \
3439 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3441 wysh set on-compose-splice=t_ocs \
3442 on-compose-enter=t_oce on-compose-leave=t_ocl \
3443 on-compose-cleanup=t_occ \
3444 on-resend-enter=t_oce on-resend-cleanup=t_occ
3445 ' > ./.tnotes 2>&1
3446 ex0_test behave:compose_hooks-4
3447 ${cat} ./.tnotes >> "${MBOX}"
3449 check behave:compose_hooks-4 - "${MBOX}" '3038884027 7516'
3451 t_epilog
3454 t_behave_message_injections() {
3455 t_prolog
3456 TRAP_EXIT_ADDONS="./.t*"
3458 ${cat} <<-_EOT > ./.tsendmail.sh
3459 #!${MYSHELL} -
3460 (echo 'From Echinacea Tue Jun 20 15:54:02 2017' && ${cat} && echo
3461 ) > "${MBOX}"
3462 _EOT
3463 chmod 0755 ./.tsendmail.sh
3465 echo mysig > ./.tmysig
3467 echo some-body | ${MAILX} ${ARGS} -Smta=./.tsendmail.sh \
3468 -Smessage-inject-head=head-inject \
3469 -Smessage-inject-tail=tail-inject \
3470 -Ssignature=./.tmysig \
3471 ex@am.ple > ./.tall 2>&1
3472 check behave:message_injections-1 0 "${MBOX}" '2434746382 134'
3473 check behave:message_injections-2 - .tall '4294967295 0' # empty file
3475 ${cat} <<-_EOT > ./.template
3476 From: me
3477 To: ex1@am.ple
3478 Cc: ex2@am.ple
3479 Subject: This subject is
3481 Body, body, body me.
3482 _EOT
3483 < ./.template ${MAILX} ${ARGS} -t -Smta=./.tsendmail.sh \
3484 -Smessage-inject-head=head-inject \
3485 -Smessage-inject-tail=tail-inject \
3486 -Ssignature=./.tmysig \
3487 > ./.tall 2>&1
3488 check behave:message_injections-3 0 "${MBOX}" '3114203412 198'
3489 check behave:message_injections-4 - .tall '4294967295 0' # empty file
3491 t_epilog
3494 t_behave_mime_types_load_control() {
3495 t_prolog
3496 TRAP_EXIT_ADDONS="./.t*"
3498 ${cat} <<-_EOT > ./.tmts1
3499 @ application/mathml+xml mathml
3500 _EOT
3501 ${cat} <<-_EOT > ./.tmts2
3502 @ x-conference/x-cooltalk ice
3503 @ aga-aga aga
3504 @ application/aga-aga aga
3505 _EOT
3507 ${cat} <<-_EOT > ./.tmts1.mathml
3508 <head>nonsense ML</head>
3509 _EOT
3510 ${cat} <<-_EOT > ./.tmts2.ice
3511 Icy, icy road.
3512 _EOT
3513 printf 'of which the c\x01rack is coming soon' > ./.tmtsx.doom
3514 printf 'of which the c\x01rack is coming soon' > ./.tmtsx.aga
3516 printf '
3517 m %s
3518 Schub-di-du
3519 ~@ ./.tmts1.mathml
3520 ~@ ./.tmts2.ice
3521 ~@ ./.tmtsx.doom
3522 ~@ ./.tmtsx.aga
3524 File %s
3525 from*
3526 type
3528 ' "${MBOX}" "${MBOX}" |
3529 ${MAILX} ${ARGS} \
3530 -Smimetypes-load-control=f=./.tmts1,f=./.tmts2 \
3531 > ./.tout 2>&1
3532 ex0_test behave:mime_types_load_control
3534 ${cat} "${MBOX}" >> ./.tout
3535 check behave:mime_types_load_control-1 - ./.tout '1441260727 2449'
3537 echo type | ${MAILX} ${ARGS} -R \
3538 -Smimetypes-load-control=f=./.tmts1,f=./.tmts3 \
3539 -f "${MBOX}" >> ./.tout 2>&1
3540 check behave:mime_types_load_control-2 0 ./.tout '1441391438 3646'
3542 t_epilog
3545 t_behave_smime() {
3546 have_feat smime || {
3547 echo 'behave:s/mime: unsupported, skipped'
3548 return
3551 t_prolog
3552 TRAP_EXIT_ADDONS="./.t.conf ./.tkey.pem ./.tcert.pem ./.tpair.pem"
3553 TRAP_EXIT_ADDONS="${TRAP_EXIT_ADDONS} ./.VERIFY ./.DECRYPT ./.ENCRYPT"
3554 TRAP_EXIT_ADDONS="${TRAP_EXIT_ADDONS} ./.tsendmail.sh"
3556 printf 'behave:s/mime: .. generating test key and certificate ..\n'
3557 ${cat} <<-_EOT > ./.t.conf
3558 [ req ]
3559 default_bits = 1024
3560 default_keyfile = keyfile.pem
3561 distinguished_name = req_distinguished_name
3562 attributes = req_attributes
3563 prompt = no
3564 output_password =
3566 [ req_distinguished_name ]
3567 C = GB
3568 ST = Over the
3569 L = rainbow
3570 O = S-nail
3571 OU = S-nail.smime
3572 CN = S-nail.test
3573 emailAddress = test@localhost
3575 [ req_attributes ]
3576 challengePassword =
3577 _EOT
3578 openssl req -x509 -nodes -days 3650 -config ./.t.conf \
3579 -newkey rsa:1024 -keyout ./.tkey.pem -out ./.tcert.pem >/dev/null 2>&1
3580 ${cat} ./.tkey.pem ./.tcert.pem > ./.tpair.pem
3582 # Sign/verify
3583 printf 'behave:s/mime:sign/verify: '
3584 echo bla | ${MAILX} ${ARGS} \
3585 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3586 -Ssmime-sign -Sfrom=test@localhost \
3587 -s 'S/MIME test' ./.VERIFY
3588 if [ $? -eq 0 ]; then
3589 printf 'ok\n'
3590 else
3591 printf 'failed\n'
3592 ESTAT=1
3593 t_epilog
3594 return
3597 ${awk} '
3598 BEGIN{ skip=0 }
3599 /^Content-Description: /{ skip = 2; print; next }
3600 /^$/{ if(skip) --skip }
3601 { if(!skip) print }
3603 < ./.VERIFY > "${MBOX}"
3604 check behave:s/mime:sign/verify:checksum - "${MBOX}" '2900817158 648'
3606 printf 'behave:s/mime:sign/verify:verify '
3607 printf 'verify\nx\n' |
3608 ${MAILX} ${ARGS} \
3609 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3610 -Ssmime-sign -Sfrom=test@localhost \
3611 -Serrexit -R \
3612 -f ./.VERIFY >/dev/null 2>&1
3613 if [ $? -eq 0 ]; then
3614 printf 'ok\n'
3615 else
3616 printf 'failed\n'
3617 ESTAT=1
3618 t_epilog
3619 return
3622 printf 'behave:s/mime:sign/verify:disproof-1 '
3623 if openssl smime -verify -CAfile ./.tcert.pem \
3624 -in ./.VERIFY >/dev/null 2>&1; then
3625 printf 'ok\n'
3626 else
3627 printf 'failed\n'
3628 ESTAT=1
3629 t_epilog
3630 return
3633 # (signing +) encryption / decryption
3634 ${cat} <<-_EOT > ./.tsendmail.sh
3635 #!${MYSHELL} -
3636 (echo 'From Euphrasia Thu Apr 27 17:56:23 2017' && ${cat}) > ./.ENCRYPT
3637 _EOT
3638 chmod 0755 ./.tsendmail.sh
3640 printf 'behave:s/mime:encrypt+sign: '
3641 echo bla |
3642 ${MAILX} ${ARGS} \
3643 -Ssmime-force-encryption \
3644 -Ssmime-encrypt-recei@ver.com=./.tpair.pem \
3645 -Smta=./.tsendmail.sh \
3646 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3647 -Ssmime-sign -Sfrom=test@localhost \
3648 -s 'S/MIME test' recei@ver.com
3649 if [ $? -eq 0 ]; then
3650 printf 'ok\n'
3651 else
3652 ESTAT=1
3653 printf 'error: encrypt+sign failed\n'
3656 ${sed} -e '/^$/,$d' < ./.ENCRYPT > "${MBOX}"
3657 check behave:s/mime:encrypt+sign:checksum - "${MBOX}" '1937410597 327'
3659 printf 'behave:s/mime:decrypt+verify: '
3660 printf 'decrypt ./.DECRYPT\nfi ./.DECRYPT\nverify\nx\n' |
3661 ${MAILX} ${ARGS} \
3662 -Ssmime-force-encryption \
3663 -Ssmime-encrypt-recei@ver.com=./.tpair.pem \
3664 -Smta=./.tsendmail.sh \
3665 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3666 -Ssmime-sign -Sfrom=test@localhost \
3667 -Serrexit -R \
3668 -f ./.ENCRYPT >/dev/null 2>&1
3669 if [ $? -eq 0 ]; then
3670 printf 'ok\n'
3671 else
3672 ESTAT=1
3673 printf 'failed\n'
3676 ${awk} '
3677 BEGIN{ skip=0 }
3678 /^Content-Description: /{ skip = 2; print; next }
3679 /^$/{ if(skip) --skip }
3680 { if(!skip) print }
3682 < ./.DECRYPT > "${MBOX}"
3683 check behave:s/mime:decrypt+verify:checksum - "${MBOX}" '1720739247 931'
3685 printf 'behave:s/mime:decrypt+verify:disproof-1: '
3686 if (openssl smime -decrypt -inkey ./.tkey.pem -in ./.ENCRYPT |
3687 openssl smime -verify -CAfile ./.tcert.pem) >/dev/null 2>&1; then
3688 printf 'ok\n'
3689 else
3690 printf 'failed\n'
3691 ESTAT=1
3694 printf "behave:s/mime:encrypt: "
3695 echo bla | ${MAILX} ${ARGS} \
3696 -Ssmime-force-encryption \
3697 -Ssmime-encrypt-recei@ver.com=./.tpair.pem \
3698 -Smta=./.tsendmail.sh \
3699 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3700 -Sfrom=test@localhost \
3701 -s 'S/MIME test' recei@ver.com
3702 if [ $? -eq 0 ]; then
3703 printf 'ok\n'
3704 else
3705 ESTAT=1
3706 printf 'failed\n'
3709 # Same as behave:s/mime:encrypt+sign:checksum above
3710 ${sed} -e '/^$/,$d' < ./.ENCRYPT > "${MBOX}"
3711 check behave:s/mime:encrypt:checksum - "${MBOX}" '1937410597 327'
3713 ${rm} -f ./.DECRYPT
3714 printf 'decrypt ./.DECRYPT\nx\n' | ${MAILX} ${ARGS} \
3715 -Ssmime-force-encryption \
3716 -Ssmime-encrypt-recei@ver.com=./.tpair.pem \
3717 -Smta=./.tsendmail.sh \
3718 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3719 -Sfrom=test@localhost \
3720 -Serrexit -R \
3721 -f ./.ENCRYPT >/dev/null 2>&1
3722 check behave:s/mime:decrypt 0 "./.DECRYPT" '2624716890 422'
3724 printf 'behave:s/mime:decrypt:disproof-1: '
3725 if openssl smime -decrypt -inkey ./.tkey.pem \
3726 -in ./.ENCRYPT >/dev/null 2>&1; then
3727 printf 'ok\n'
3728 else
3729 printf 'failed\n'
3730 ESTAT=1
3733 t_epilog
3736 t_behave_maildir() {
3737 t_prolog
3738 TRAP_EXIT_ADDONS="./.t*"
3742 while [ ${i} -lt 112 ]; do
3743 printf 'm file://%s\n~s Subject %s\nHello %s!\n~.\n' \
3744 "${MBOX}" "${i}" "${i}"
3745 i=`add ${i} 1`
3746 done
3747 ) | ${MAILX} ${ARGS}
3748 check behave:maildir-1 0 "${MBOX}" '1140119864 13780'
3750 printf 'File "%s"
3751 copy * "%s"
3752 File "%s"
3753 from*
3754 ' "${MBOX}" .tmdir1 .tmdir1 |
3755 ${MAILX} ${ARGS} -Snewfolders=maildir > .tlst
3756 check behave:maildir-2 0 .tlst '1797938753 9103'
3758 printf 'File "%s"
3759 copy * "maildir://%s"
3760 File "maildir://%s"
3761 from*
3762 ' "${MBOX}" .tmdir2 .tmdir2 |
3763 ${MAILX} ${ARGS} > .tlst
3764 check behave:maildir-3 0 .tlst '1155631089 9113'
3766 printf 'File "maildir://%s"
3767 copy * "file://%s"
3768 File "file://%s"
3769 from*
3770 ' .tmdir2 .tmbox1 .tmbox1 |
3771 ${MAILX} ${ARGS} > .tlst
3772 check behave:maildir-4 0 .tmbox1 '2646131190 13220'
3773 check behave:maildir-5 - .tlst '3701297796 9110'
3775 # only the odd (even)
3777 printf 'File "maildir://%s"
3778 copy ' .tmdir2
3780 while [ ${i} -lt 112 ]; do
3781 j=`modulo ${i} 2`
3782 [ ${j} -eq 1 ] && printf '%s ' "${i}"
3783 i=`add ${i} 1`
3784 done
3785 printf ' file://%s
3786 File "file://%s"
3787 from*
3788 ' .tmbox2 .tmbox2
3789 ) | ${MAILX} ${ARGS} > .tlst
3790 check behave:maildir-6 0 .tmbox2 '142890131 6610'
3791 check behave:maildir-7 - .tlst '960096773 4573'
3792 # ...
3794 printf 'file "maildir://%s"
3795 move ' .tmdir2
3797 while [ ${i} -lt 112 ]; do
3798 j=`modulo ${i} 2`
3799 [ ${j} -eq 0 ] && [ ${i} -ne 0 ] && printf '%s ' "${i}"
3800 i=`add ${i} 1`
3801 done
3802 printf ' file://%s
3803 File "file://%s"
3804 from*
3805 File "maildir://%s"
3806 from*
3807 ' .tmbox2 .tmbox2 .tmdir2
3808 ) | ${MAILX} ${ARGS} > .tlst
3809 check behave:maildir-8 0 .tmbox2 '3806905791 13100'
3810 ${sed} 2d < .tlst > .tlstx
3811 check behave:maildir-9 - .tlstx '4216815295 13645'
3813 t_epilog
3816 t_behave_mass_recipients() {
3817 t_prolog
3818 TRAP_EXIT_ADDONS="./.t*"
3820 ${cat} <<-_EOT > ./.tsendmail.sh
3821 #!${MYSHELL} -
3822 (echo 'From Eucalyptus Sat Jul 08 21:14:57 2017' && ${cat} && echo
3823 ) >> "${MBOX}"
3824 _EOT
3825 chmod 0755 ./.tsendmail.sh
3827 ${cat} <<'__EOT__' > ./.trc
3828 define bail {
3829 echoerr "Failed: $1. Bailing out"; echo "~x"; xit
3831 define ins_addr {
3832 wysh set nr=$1 hn=$2
3833 echo "~$hn $hn$nr@$hn"; echo '~:echo $?'; read es
3834 if [ "$es" -ne 0 ]
3835 xcall bail "ins_addr $hn 1-$nr"
3837 vput vexpr nr + $nr 1
3838 if [ "$nr" -le "$maximum" ]
3839 xcall ins_addr $nr $hn
3842 define bld_alter {
3843 wysh set nr=$1 hn=$2
3844 alternates $hn$nr@$hn
3845 vput vexpr nr + $nr 2
3846 if [ "$nr" -le "$maximum" ]
3847 xcall bld_alter $nr $hn
3850 define t_ocs {
3851 read ver
3852 call ins_addr 1 t
3853 call ins_addr 1 c
3854 call ins_addr 1 b
3856 define t_ocl {
3857 if [ "$t_remove" != '' ]
3858 call bld_alter 1 t
3859 call bld_alter 2 c
3862 set on-compose-splice=t_ocs on-compose-leave=t_ocl
3863 __EOT__
3865 ${rm} -f "${MBOX}"
3866 printf 'm this-goes@nowhere\nbody\n!.\n' |
3867 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! -Sstealthmua=noagent \
3868 -X'source ./.trc' -Smta=./.tsendmail.sh -Smaximum=2001 \
3869 >./.tall 2>&1
3870 ${cat} ./.tall >> "${MBOX}"
3871 check behave:mass_recipients-1 0 "${MBOX}" '2912243346 51526'
3873 ${rm} -f "${MBOX}"
3874 printf 'm this-goes@nowhere\nbody\n!.\n' |
3875 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! -Sstealthmua=noagent \
3876 -St_remove=1 -X'source ./.trc' -Smta=./.tsendmail.sh -Smaximum=2001 \
3877 >./.tall 2>&1
3878 ${cat} ./.tall >> "${MBOX}"
3879 check behave:mass_recipients-2 0 "${MBOX}" '4097804632 34394'
3881 t_epilog
3884 t_behave_lreply_futh_rth_etc() {
3885 t_prolog
3886 TRAP_EXIT_ADDONS="./.t*"
3888 ${cat} <<-_EOT > ./.tsendmail.sh
3889 #!${MYSHELL} -
3890 (echo 'From HumulusLupulus Thu Jul 27 14:41:20 2017' && ${cat} && echo
3891 ) >> "${MBOX}"
3892 _EOT
3893 chmod 0755 ./.tsendmail.sh
3895 ${cat} <<-_EOT > ./.tmbox
3896 From neverneverland Sun Jul 23 13:46:25 2017
3897 Subject: Bugstop: five miles out 1
3898 Reply-To: mister originator2 <mr2@originator>, bugstop@five.miles.out
3899 From: mister originator <mr@originator>
3900 To: bugstop-commit@five.miles.out, laber@backe.eu
3901 Cc: is@a.list
3902 Mail-Followup-To: bugstop@five.miles.out, laber@backe.eu, is@a.list
3903 In-reply-to: <20170719111113.bkcMz%laber@backe.eu>
3904 Date: Wed, 19 Jul 2017 09:22:57 -0400
3905 Message-Id: <20170719132257.766AF781267@originator>
3906 Status: RO
3908 > |Sorry, I think I misunderstand something. I would think that
3910 That's appalling.
3912 From neverneverland Fri Jul 7 22:39:11 2017
3913 Subject: Bugstop: five miles out 2
3914 Reply-To: mister originator2<mr2@originator>,bugstop@five.miles.out,is@a.list
3915 Content-Transfer-Encoding: 7bit
3916 From: mister originator <mr@originator>
3917 To: bugstop-commit@five.miles.out
3918 Cc: is@a.list
3919 Message-ID: <149945963975.28888.6950788126957753723.reportbug@five.miles.out>
3920 Date: Fri, 07 Jul 2017 16:33:59 -0400
3921 Status: R
3923 capable of changing back.
3925 From neverneverland Fri Jul 7 22:42:00 2017
3926 Subject: Bugstop: five miles out 3
3927 Reply-To: mister originator2 <mr2@originator>, bugstop@five.miles.out
3928 Content-Transfer-Encoding: 7bit
3929 From: mister originator <mr@originator>
3930 To: bugstop-commit@five.miles.out
3931 Cc: is@a.list
3932 Message-ID: <149945963975.28888.6950788126957753746.reportbug@five.miles.out>
3933 Date: Fri, 07 Jul 2017 16:33:59 -0400
3934 List-Post: <mailto:bugstop@five.miles.out>
3935 Status: R
3937 are you ready, boots?
3939 From neverneverland Sat Aug 19 23:15:00 2017
3940 Subject: Bugstop: five miles out 4
3941 Reply-To: mister originator2 <mr2@originator>, bugstop@five.miles.out
3942 Content-Transfer-Encoding: 7bit
3943 From: mister originator <mr@originator>
3944 To: bugstop@five.miles.out
3945 Cc: is@a.list
3946 Message-ID: <149945963975.28888.6950788126qtewrqwer.reportbug@five.miles.out>
3947 Date: Fri, 07 Jul 2017 16:33:59 -0400
3948 List-Post: <mailto:bugstop@five.miles.out>
3949 Status: R
3951 are you ready, boots?
3952 _EOT
3956 ${cat} <<-'_EOT' | ${MAILX} ${ARGS} -Sescape=! -Smta=./.tsendmail.sh \
3957 -Rf ./.tmbox >> "${MBOX}" 2>&1
3958 define r {
3959 wysh set m="This is text of \"reply ${1}."
3960 reply 1 2 3
3961 !I m
3964 !I m
3967 !I m
3970 echo -----After reply $1.1 - $1.3: $?/$^ERRNAME
3972 define R {
3973 wysh set m="This is text of \"Reply ${1}."
3974 eval Reply $2
3975 !I m
3976 !I 2
3979 echo -----After Reply $1.$2: $?/$^ERRNAME
3981 define _Lh {
3982 read protover
3983 echo '~I m'
3984 echo '~I n'
3985 echo '".'
3987 define _Ls {
3988 wysh set m="This is text of \"Lreply ${1}." on-compose-splice=_Lh n=$2
3989 eval Lreply $2
3991 define L {
3992 # We need two indirections for this test: one for the case that Lreply
3993 # fails because of missing recipients: we need to read EOF next, thus
3994 # place this in _Ls last; and second for the succeeding cases EOF is
3995 # not what these should read, so go over the backside and splice it in!
3996 call _Ls "$@"
3997 echo -----After Lreply $1.$2: $?/$^ERRNAME
3999 define x {
4000 localopts call-fixate yes
4001 call r $1
4002 call R $1 1; call R $1 2; call R $1 3; call R $1 4
4003 call L $1 1; call L $1 2; call L $1 3
4005 define tweak {
4006 echo;echo '===== CHANGING === '"$*"' =====';echo
4007 eval "$@"
4010 set from=laber@backe.eu
4011 mlist is@a.list
4012 call x 1
4013 call tweak set reply-to-honour
4014 call x 2
4015 call tweak set followup-to
4016 call x 3
4017 call tweak set followup-to-honour
4018 call x 4
4019 call tweak mlist bugstop@five.miles.out
4020 call x 5
4021 call tweak mlsubscribe bugstop@five.miles.out
4022 call x 6
4023 call tweak set recipients-in-cc
4024 call x 7
4025 _EOT
4027 check behave:lreply_futh_rth_etc 0 "${MBOX}" '940818845 29373'
4029 t_epilog
4032 t_behave_iconv_mbyte_base64() {
4033 t_prolog
4034 TRAP_EXIT_ADDONS="./.t*"
4036 if [ -n "${UTF8_LOCALE}" ] && have_feat iconv &&
4037 command -v iconv >/dev/null 2>&1 &&
4038 ( iconv -l | ${grep} -i -e iso-2022-jp -e euc-jp) >/dev/null 2>&1; then
4040 else
4041 echo 'behave:iconv_mbyte_base64: unsupported, skipped'
4042 return
4045 ${cat} <<-_EOT > ./.tsendmail.sh
4046 #!${MYSHELL} -
4047 (echo 'From DroseriaRotundifolia Thu Aug 03 17:26:25 2017' && ${cat} &&
4048 echo) >> "${MBOX}"
4049 _EOT
4050 chmod 0755 ./.tsendmail.sh
4052 if ( iconv -l | ${grep} -i iso-2022-jp ) >/dev/null 2>&1; then
4053 printf '
4054 set ttycharset=utf-8 sendcharsets=iso-2022-jp
4055 m t1@exam.ple
4056 !s Japanese from UTF-8 to ISO-2022-JP
4057 シジュウカラ科(シジュウカラか、学名 Paridae)は、鳥類スズメ目の科である。シジュウカラ(四十雀)と総称されるが、狭義にはこの1種をシジュウカラと呼ぶ。
4059 カンムリガラ(学名Parus cristatus)は、スズメ目シジュウカラ科に分類される鳥類の一種。
4062 カンムリガラ(学名Parus cristatus)は、スズメ目シジュウカラ科に分類される鳥類の一種。
4064 シジュウカラ科(シジュウカラか、学名 Paridae)は、鳥類スズメ目の科である。シジュウカラ(四十雀)と総称されるが、狭義にはこの1種をシジュウカラと呼ぶ。
4067 set ttycharset=iso-2022-jp charset-7bit=iso-2022-jp sendcharsets=utf-8
4068 m t2@exam.ple
4069 !s Japanese from ISO-2022-JP to UTF-8, eh, no, also ISO-2022-JP
4070 \e$B%%7%%8%%e%%&%%+%%i2J!J%%7%%8%%e%%&%%+%%i$+!"3XL>\e(B Paridae\e$B!K$O!"D;N`%%9%%:%%aL\\$N2J$G$"$k!#%%7%%8%%e%%&%%+%%i!J;M==?}!K$HAm>N$5$l$k$,!"695A$K$O$3$N\e(B1\e$B<o$r%%7%%8%%e%%&%%+%%i$H8F$V!#\e(B
4072 \e$B%%+%%s%%`%%j%%,%%i!J3XL>\e(BParus cristatus\e$B!K$O!"%%9%%:%%aL\\%%7%%8%%e%%&%%+%%i2J$KJ,N`$5$l$kD;N`$N0l<o!#\e(B
4075 \e$B%%+%%s%%`%%j%%,%%i!J3XL>\e(BParus cristatus\e$B!K$O!"%%9%%:%%aL\\%%7%%8%%e%%&%%+%%i2J$KJ,N`$5$l$kD;N`$N0l<o!#\e(B
4077 \e$B%%7%%8%%e%%&%%+%%i2J!J%%7%%8%%e%%&%%+%%i$+!"3XL>\e(B Paridae\e$B!K$O!"D;N`%%9%%:%%aL\\$N2J$G$"$k!#%%7%%8%%e%%&%%+%%i!J;M==?}!K$HAm>N$5$l$k$,!"695A$K$O$3$N\e(B1\e$B<o$r%%7%%8%%e%%&%%+%%i$H8F$V!#\e(B
4079 ' | LC_ALL=${UTF8_LOCALE} ${MAILX} ${ARGS} -Smta=./.tsendmail.sh \
4080 -Sescape=! -Smime-encoding=base64 2>./.terr
4081 check behave:iconv_mbyte_base64-1 0 "${MBOX}" '3428985079 1976'
4082 check behave:iconv_mbyte_base64-2 - ./.terr '4294967295 0'
4084 printf 'eval f 1; write ./.twrite\n' |
4085 ${MAILX} ${ARGS} ${ADDARG_UNI} -Rf "${MBOX}" >./.tlog 2>&1
4086 check behave:iconv_mbyte_base64-3 0 ./.twrite '1259742080 686'
4087 check behave:iconv_mbyte_base64-4 - ./.tlog '3956097665 119'
4088 else
4089 echo 'behave:iconv_mbyte_base64: ISO-2022-JP unsupported, skipping 1-4'
4092 if ( iconv -l | ${grep} -i euc-jp ) >/dev/null 2>&1; then
4093 rm -f "${MBOX}" ./.twrite
4094 printf '
4095 set ttycharset=utf-8 sendcharsets=euc-jp
4096 m t1@exam.ple
4097 !s Japanese from UTF-8 to EUC-JP
4098 シジュウカラ科(シジュウカラか、学名 Paridae)は、鳥類スズメ目の科である。シジュウカラ(四十雀)と総称されるが、狭義にはこの1種をシジュウカラと呼ぶ。
4100 カンムリガラ(学名Parus cristatus)は、スズメ目シジュウカラ科に分類される鳥類の一種。
4103 カンムリガラ(学名Parus cristatus)は、スズメ目シジュウカラ科に分類される鳥類の一種。
4105 シジュウカラ科(シジュウカラか、学名 Paridae)は、鳥類スズメ目の科である。シジュウカラ(四十雀)と総称されるが、狭義にはこの1種をシジュウカラと呼ぶ。
4108 set ttycharset=EUC-JP sendcharsets=utf-8
4109 m t2@exam.ple
4110 !s Japanese from EUC-JP to UTF-8
4111 ¥·¥¸¥å¥¦¥«¥é²Ê¡Ê¥·¥¸¥å¥¦¥«¥é¤«¡¢³Ø̾ Paridae¡Ë¤Ï¡¢Ä»Îॹ¥º¥áÌܤβʤǤ¢¤ë¡£¥·¥¸¥å¥¦¥«¥é¡Ê»Í½½¿ý¡Ë¤ÈÁí¾Î¤µ¤ì¤ë¤¬¡¢¶¹µÁ¤Ë¤Ï¤³¤Î1¼ï¤ò¥·¥¸¥å¥¦¥«¥é¤È¸Æ¤Ö¡£
4113 ¥«¥ó¥à¥ê¥¬¥é¡Ê³Ø̾Parus cristatus¡Ë¤Ï¡¢¥¹¥º¥áÌÜ¥·¥¸¥å¥¦¥«¥é²Ê¤ËʬÎव¤ì¤ëÄ»Îà¤Î°ì¼ï¡£
4116 ¥«¥ó¥à¥ê¥¬¥é¡Ê³Ø̾Parus cristatus¡Ë¤Ï¡¢¥¹¥º¥áÌÜ¥·¥¸¥å¥¦¥«¥é²Ê¤ËʬÎव¤ì¤ëÄ»Îà¤Î°ì¼ï¡£
4118 ¥·¥¸¥å¥¦¥«¥é²Ê¡Ê¥·¥¸¥å¥¦¥«¥é¤«¡¢³Ø̾ Paridae¡Ë¤Ï¡¢Ä»Îॹ¥º¥áÌܤβʤǤ¢¤ë¡£¥·¥¸¥å¥¦¥«¥é¡Ê»Í½½¿ý¡Ë¤ÈÁí¾Î¤µ¤ì¤ë¤¬¡¢¶¹µÁ¤Ë¤Ï¤³¤Î1¼ï¤ò¥·¥¸¥å¥¦¥«¥é¤È¸Æ¤Ö¡£
4120 ' | LC_ALL=${UTF8_LOCALE} ${MAILX} ${ARGS} -Smta=./.tsendmail.sh \
4121 -Sescape=! -Smime-encoding=base64 2>./.terr
4122 check behave:iconv_mbyte_base64-5 0 "${MBOX}" '1686827547 2051'
4123 check behave:iconv_mbyte_base64-6 - ./.terr '4294967295 0'
4125 printf 'eval f 1; write ./.twrite\n' |
4126 ${MAILX} ${ARGS} ${ADDARG_UNI} -Rf "${MBOX}" >./.tlog 2>&1
4127 check behave:iconv_mbyte_base64-7 0 ./.twrite '1259742080 686'
4128 check behave:iconv_mbyte_base64-8 - ./.tlog '500059195 119'
4129 else
4130 echo 'behave:iconv_mbyte_base64: EUC-JP unsupported, skipping 5-8'
4133 t_epilog
4136 # t_content()
4137 # Some basic tests regarding correct sending of mails, via STDIN / -t / -q,
4138 # including basic MIME Content-Transfer-Encoding correctness (quoted-printable)
4139 # Note we unfortunately need to place some statements without proper
4140 # indentation because of continuation problems
4141 t_content() {
4142 t_prolog
4144 # MIME encoding (QP) stress message body
4145 printf \
4146 'Ich bin eine DÖS-Datäi mit sehr langen Zeilen und auch '\
4147 'sonst bin ich ganz schön am Schleudern, da kannste denke '\
4148 "wasde willst, gelle, gelle, gelle, gelle, gelle.\r\n"\
4149 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst \r\n"\
4150 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 1\r\n"\
4151 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 12\r\n"\
4152 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 123\r\n"\
4153 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 1234\r\n"\
4154 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 12345\r\n"\
4155 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 123456\r\n"\
4156 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 1234567\r\n"\
4157 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 12345678\r\n"\
4158 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 123456789\r\n"\
4159 "Unn ausserdem habe ich trailing SP/HT/SP/HT whitespace \r\n"\
4160 "Unn ausserdem habe ich trailing HT/SP/HT/SP whitespace \r\n"\
4161 "auf den zeilen vorher.\r\n"\
4162 "From am Zeilenbeginn und From der Mitte gibt es auch.\r\n"\
4163 ".\r\n"\
4164 "Die letzte Zeile war nur ein Punkt.\r\n"\
4165 "..\r\n"\
4166 "Das waren deren zwei.\r\n"\
4167 " \r\n"\
4168 "Die letzte Zeile war ein Leerschritt.\n"\
4169 "=VIER = EQUAL SIGNS=ON A LINE=\r\n"\
4170 "Prösterchen.\r\n"\
4171 ".\n"\
4172 "Die letzte Zeile war nur ein Punkt, mit Unix Zeilenende.\n"\
4173 "..\n"\
4174 "Das waren deren zwei. ditto.\n"\
4175 "Prösterchen.\n"\
4176 "Unn ausseerdem habe ich trailing SP/HT/SP/HT whitespace \n"\
4177 "Unn ausseerdem habe ich trailing HT/SP/HT/SP whitespace \n"\
4178 "auf den zeilen vorher.\n"\
4179 "ditto.\n"\
4180 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.\n"\
4181 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.1"\
4182 "\n"\
4183 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.12"\
4184 "\n"\
4185 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.12"\
4186 "3\n"\
4187 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.12"\
4188 "34\n"\
4189 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.12"\
4190 "345\n"\
4191 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.12"\
4192 "3456\n"\
4193 "QP am Zeilenende über soft-nl hinweg\n"\
4194 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende."\
4195 "ö123\n"\
4196 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende."\
4197 "1ö23\n"\
4198 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende."\
4199 "12ö3\n"\
4200 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende."\
4201 "123ö\n"\
4202 "=VIER = EQUAL SIGNS=ON A LINE=\n"\
4203 " \n"\
4204 "Die letzte Zeile war ein Leerschritt.\n"\
4205 ' '\
4206 > "${BODY}"
4208 # MIME encoding (QP) stress message subject
4209 SUB="Äbrä Kä?dä=brö Fü?di=bus? \
4210 adadaddsssssssddddddddddddddddddddd\
4211 ddddddddddddddddddddddddddddddddddd\
4212 ddddddddddddddddddddddddddddddddddd\
4213 dddddddddddddddddddd Hallelulja? Od\
4214 er?? eeeeeeeeeeeeeeeeeeeeeeeeeeeeee\
4215 eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee\
4216 eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee f\
4217 fffffffffffffffffffffffffffffffffff\
4218 fffffffffffffffffffff ggggggggggggg\
4219 ggggggggggggggggggggggggggggggggggg\
4220 ggggggggggggggggggggggggggggggggggg\
4221 ggggggggggggggggggggggggggggggggggg\
4222 gggggggggggggggg"
4224 # Three tests for MIME encoding and (a bit) content classification.
4225 # At the same time testing -q FILE, < FILE and -t FILE
4227 ${rm} -f "${MBOX}"
4228 < "${BODY}" ${MAILX} ${ARGS} ${ADDARG_UNI} \
4229 -a "${BODY}" -s "${SUB}" "${MBOX}"
4230 check content:001 0 "${MBOX}" '1145066634 6654'
4232 ${rm} -f "${MBOX}"
4233 < /dev/null ${MAILX} ${ARGS} ${ADDARG_UNI} \
4234 -a "${BODY}" -s "${SUB}" -q "${BODY}" "${MBOX}"
4235 check content:002 0 "${MBOX}" '1145066634 6654'
4237 ${rm} -f "${MBOX}"
4238 ( echo "To: ${MBOX}" && echo "Subject: ${SUB}" && echo &&
4239 ${cat} "${BODY}"
4240 ) | ${MAILX} ${ARGS} ${ADDARG_UNI} -Snodot -a "${BODY}" -t
4241 check content:003 0 "${MBOX}" '1145066634 6654'
4243 # Test for [260e19d] (Juergen Daubert)
4244 ${rm} -f "${MBOX}"
4245 echo body | ${MAILX} ${ARGS} "${MBOX}"
4246 check content:004 0 "${MBOX}" '2917662811 98'
4248 # Sending of multiple mails in a single invocation
4249 ${rm} -f "${MBOX}"
4250 ( printf "m ${MBOX}\n~s subject1\nE-Mail Körper 1\n~.\n" &&
4251 printf "m ${MBOX}\n~s subject2\nEmail body 2\n~.\n" &&
4252 echo x
4253 ) | ${MAILX} ${ARGS} ${ADDARG_UNI}
4254 check content:005 0 "${MBOX}" '2098659767 358'
4256 ## $BODY CHANGED
4258 # "Test for" [d6f316a] (Gavin Troy)
4259 ${rm} -f "${MBOX}"
4260 printf "m ${MBOX}\n~s subject1\nEmail body\n~.\nfi ${MBOX}\np\nx\n" |
4261 ${MAILX} ${ARGS} ${ADDARG_UNI} -Spipe-text/plain="@* ${cat}" > "${BODY}"
4262 check content:006 0 "${MBOX}" '2099098650 122'
4263 check content:006-1 - "${BODY}" '794542938 174'
4265 # "Test for" [c299c45] (Peter Hofmann) TODO shouldn't end up QP-encoded?
4266 ${rm} -f "${MBOX}"
4267 ${awk} 'BEGIN{
4268 for(i = 0; i < 10000; ++i)
4269 printf "\xC3\xBC"
4270 #printf "\xF0\x90\x87\x90"
4271 }' | ${MAILX} ${ARGS} ${ADDARG_UNI} -s TestSubject "${MBOX}"
4272 check content:007 0 "${MBOX}" '534262374 61816'
4274 ## Test some more corner cases for header bodies (as good as we can today) ##
4277 ${rm} -f "${MBOX}"
4278 echo | ${MAILX} ${ARGS} ${ADDARG_UNI} \
4279 -s 'a̲b̲c̲d̲e̲f̲h̲i̲k̲l̲m̲n̲o̲r̲s̲t̲u̲v̲w̲x̲z̲a̲b̲c̲d̲e̲f̲h̲i̲k̲l̲m̲n̲o̲r̲s̲t̲u̲v̲w̲x̲z̲' \
4280 "${MBOX}"
4281 check content:008 0 "${MBOX}" '3370931614 375'
4283 # Single word (overlong line split -- bad standard! Requires injection of
4284 # artificial data!! But can be prevented by using RFC 2047 encoding)
4285 ${rm} -f "${MBOX}"
4286 i=`${awk} 'BEGIN{for(i=0; i<92; ++i) printf "0123456789_"}'`
4287 echo | ${MAILX} ${ARGS} -s "${i}" "${MBOX}"
4288 check content:009 0 "${MBOX}" '489922370 1718'
4290 # Combination of encoded words, space and tabs of varying sort
4291 ${rm} -f "${MBOX}"
4292 echo | ${MAILX} ${ARGS} ${ADDARG_UNI} \
4293 -s "1Abrä Kaspas1 2Abra Katä b_kaspas2 \
4294 3Abrä Kaspas3 4Abrä Kaspas4 5Abrä Kaspas5 \
4295 6Abra Kaspas6 7Abrä Kaspas7 8Abra Kaspas8 \
4296 9Abra Kaspastäb4-3 10Abra Kaspas1 _ 11Abra Katäb1 \
4297 12Abra Kadabrä1 After Tab after Täb this is NUTS" \
4298 "${MBOX}"
4299 check content:010 0 "${MBOX}" '1676887734 591'
4301 # Overlong multibyte sequence that must be forcefully split
4302 # todo This works even before v15.0, but only by accident
4303 ${rm} -f "${MBOX}"
4304 echo | ${MAILX} ${ARGS} ${ADDARG_UNI} \
4305 -s "✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄\
4306 ✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄\
4307 ✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄" \
4308 "${MBOX}"
4309 check content:011 0 "${MBOX}" '3029301775 659'
4311 # Trailing WS
4312 ${rm} -f "${MBOX}"
4313 echo | ${MAILX} ${ARGS} \
4314 -s "1-1 B2 B3 B4 B5 B6 B\
4315 1-2 B2 B3 B4 B5 B6 B\
4316 1-3 B2 B3 B4 B5 B6 B\
4317 1-4 B2 B3 B4 B5 B6 B\
4318 1-5 B2 B3 B4 B5 B6 B\
4319 1-6 B2 B3 B4 B5 B6 " \
4320 "${MBOX}"
4321 check content:012 0 "${MBOX}" '4126167195 297'
4323 # Leading and trailing WS
4324 ${rm} -f "${MBOX}"
4325 echo | ${MAILX} ${ARGS} \
4326 -s " 2-1 B2 B3 B4 B5 B6 B\
4327 1-2 B2 B3 B4 B5 B6 B\
4328 1-3 B2 B3 B4 B5 B6 B\
4329 1-4 B2 B3 B4 B5 B6 " \
4330 "${MBOX}"
4331 check content:013 0 "${MBOX}" '3600624479 236'
4333 # Quick'n dirty RFC 2231 test; i had more when implementing it, but until we
4334 # have a (better) test framework materialize a quick shot
4335 ${rm} -f "${MBOX}"
4336 TRAP_EXIT_ADDONS=./.ttt
4338 mkdir ./.ttt || exit 1
4339 cd ./.ttt || exit 2
4340 : > "ma'ger.txt"
4341 : > "mä'ger.txt"
4342 : > 'diet\ is \curd.txt'
4343 : > 'diet "is" curd.txt'
4344 : > höde-tröge.txt
4345 : > höde__tröge__müde__dätte__hätte__vülle__gülle__äse__äße__säuerliche__kräuter__österliche__grüße__mäh.txt
4346 : > höde__tröge__müde__dätte__hätte__vuelle__guelle__aese__aesse__sauerliche__kräuter__österliche__grüße__mäh.txt
4347 : > hööööööööööööööööö_nöööööööööööööööööööööö_düüüüüüüüüüüüüüüüüüü_bäääääääääääääääääääääääh.txt
4348 : > ✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆.txt
4350 echo bla | ${MAILX} ${ARGS} ${ADDARG_UNI} \
4351 -a "./.ttt/ma'ger.txt" -a "./.ttt/mä'ger.txt" \
4352 -a './.ttt/diet\ is \curd.txt' -a './.ttt/diet "is" curd.txt' \
4353 -a ./.ttt/höde-tröge.txt \
4354 -a ./.ttt/höde__tröge__müde__dätte__hätte__vülle__gülle__äse__äße__säuerliche__kräuter__österliche__grüße__mäh.txt \
4355 -a ./.ttt/höde__tröge__müde__dätte__hätte__vuelle__guelle__aese__aesse__sauerliche__kräuter__österliche__grüße__mäh.txt \
4356 -a ./.ttt/hööööööööööööööööö_nöööööööööööööööööööööö_düüüüüüüüüüüüüüüüüüü_bäääääääääääääääääääääääh.txt \
4357 -a ./.ttt/✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆.txt \
4358 "${MBOX}"
4359 check content:014-1 0 "${MBOX}" '684985954 3092'
4361 # `resend' test, reusing $MBOX
4362 ${rm} -f "${BODY}"
4363 printf "Resend ${BODY}\nx\n" | ${MAILX} ${ARGS} -Rf "${MBOX}"
4364 check content:014-2 0 "${BODY}" '684985954 3092'
4366 ${rm} -f "${BODY}"
4367 printf "resend ${BODY}\nx\n" | ${MAILX} ${ARGS} -Rf "${MBOX}"
4368 check content:014-3 0 "${BODY}" '3130352658 3148'
4370 t_epilog
4373 t_all() {
4374 # if have_feat devel; then
4375 # ARGS="${ARGS} -Smemdebug"
4376 # export ARGS
4377 # fi
4379 if [ -n "${UTF8_LOCALE}" ]; then
4380 printf 'Using Unicode locale %s\n' "${UTF8_LOCALE}"
4381 else
4382 printf 'No Unicode locale found, disabling Unicode tests\n'
4385 t_behave
4386 t_content
4389 if [ -z "${CHECK_ONLY}" ]; then
4390 cc_all_configs
4391 else
4392 t_all
4395 [ ${ESTAT} -eq 0 ] && echo Ok || echo >&2 'Errors occurred'
4397 exit ${ESTAT}
4398 # s-sh-mode