`addrcodec': add skinlist subcommand, skin+check whether mlist
[s-mailx.git] / cc-test.sh
blobac66c3d7739de14858d7a033b6cfa3517f262874
1 #!/bin/sh -
2 #@ Synopsis: ./cc-test.sh [--check-only s-mailx-binary]
3 #@ ./cc-test.sh --mae-test s-mailx-binary [:TESTNAME:]
4 #@ The latter generates output files.
5 #@ TODO _All_ the tests should happen in a temporary subdir.
6 # Public Domain
8 # Instead of figuring out the environment in here, require a configured build
9 # system and include that! Our makefile and configure ensure that this test
10 # does not run in the configured, but the user environment nonetheless!
11 if [ -f ./mk-config.ev ]; then
12 . ./mk-config.ev
13 if [ -z "${MAILX__CC_TEST_RUNNING}" ]; then
14 MAILX__CC_TEST_RUNNING=1
15 export MAILX__CC_TEST_RUNNING
16 exec "${SHELL}" "${0}" "${@}"
18 else
19 echo >&2 'S-nail/S-mailx is not configured.'
20 echo >&2 'This test script requires the shell environment that only the'
21 echo >&2 'configuration script can figure out, even if it will be used to'
22 echo >&2 'test a different binary than the one that would be produced!'
23 exit 41
26 # We need *stealthmua* regardless of $SOURCE_DATE_EPOCH, the program name as
27 # such is a compile-time variable
28 ARGS='-:/ -# -Sdotlock-ignore-error -Sexpandaddr=restrict'
29 ARGS="${ARGS}"' -Smime-encoding=quoted-printable -Snosave -Sstealthmua'
30 ADDARG_UNI=-Sttycharset=UTF-8
31 CONF=./make.rc
32 BODY=./.cc-body.txt
33 MBOX=./.cc-test.mbox
34 MAIL=/dev/null
35 #UTF8_LOCALE= autodetected unless set
37 # Note valgrind has problems with FDs in forked childs, which causes some tests
38 # to fail (the FD is rewound and thus will be dumped twice)
39 MEMTESTER=
40 #MEMTESTER='valgrind --leak-check=full --log-file=.vl-%p '
42 ## -- (>8 -- 8<) -- ##
44 ( set -o noglob ) >/dev/null 2>&1 && noglob_shell=1 || unset noglob_shell
46 msg() {
47 fmt=${1}
48 shift
49 printf >&2 -- "${fmt}\\n" "${@}"
52 ## -- >8 -- 8< -- ##
54 export ARGS ADDARG_UNI CONF BODY MBOX MAIL MAKE awk cat cksum rm sed grep
56 LC_ALL=C LANG=C
57 TZ=UTC
58 # Wed Oct 2 01:50:07 UTC 1996
59 SOURCE_DATE_EPOCH=844221007
61 export LC_ALL LANG TZ SOURCE_DATE_EPOCH
62 unset POSIXLY_CORRECT LOGNAME USER
64 usage() {
65 echo >&2 "Synopsis: ./cc-test.sh [--check-only s-mailx-binary]"
66 echo >&2 "Synopsis: ./cc-test.sh --mae-test s-mailx-binary [:TESTNAME:]"
67 exit 1
70 CHECK_ONLY= MAE_TEST= MAILX=
71 if [ "${1}" = --check-only ]; then
72 CHECK_ONLY=1
73 MAILX=${2}
74 [ -x "${MAILX}" ] || usage
75 shift 2
76 elif [ "${1}" = --mae-test ]; then
77 MAE_TEST=1
78 MAILX=${2}
79 [ -x "${MAILX}" ] || usage
80 shift 2
82 RAWMAILX=${MAILX}
83 MAILX="${MEMTESTER}${MAILX}"
84 export RAWMAILX MAILX
86 if [ -n "${CHECK_ONLY}${MAE_TEST}" ] && [ -z "${UTF8_LOCALE}" ]; then
87 # Try ourselfs for nl_langinfo(CODESET) output first (requires a new version)
88 i=`LC_ALL=C.utf8 "${RAWMAILX}" ${ARGS} -X '
89 \define cset_test {
90 \if [ "${ttycharset}" @i=% utf ]
91 \echo $LC_ALL
92 \xit 0
93 \end
94 \if [ "${#}" -gt 0 ]
95 \wysh set LC_ALL=${1}
96 \shift
97 \eval xcall cset_test "${@}"
98 \end
99 \xit 1
101 \call cset_test C.UTF-8 POSIX.utf8 POSIX.UTF-8 en_EN.utf8 en_EN.UTF-8 \
102 en_US.utf8 en_US.UTF-8
104 [ $? -eq 0 ] && UTF8_LOCALE=$i
106 if [ -z "${UTF8_LOCALE}" ] && (locale yesexpr) >/dev/null 2>&1; then
107 UTF8_LOCALE=`locale -a | { m=
108 while read n; do
109 if { echo ${n} | ${grep} -i 'utf-\{0,1\}8'; } >/dev/null 2>&1; then
110 m=${n}
111 if { echo ${n} | ${grep} -e POSIX -e en_EN -e en_US; }; then
112 exit 0
115 m=${n}
116 done
117 echo ${m}
122 ESTAT=0
124 TRAP_EXIT_ADDONS=
125 trap "${rm} -rf \"${BODY}\" \"${MBOX}\" \${TRAP_EXIT_ADDONS}" EXIT
126 trap "exit 1" HUP INT TERM
128 # cc_all_configs()
129 # Test all configs TODO doesn't cover all *combinations*, stupid!
130 cc_all_configs() {
131 < ${CONF} ${awk} '
132 BEGIN {
133 NOTME["OPT_AUTOCC"] = 1
134 NOTME["OPT_DEBUG"] = 1
135 NOTME["OPT_DEVEL"] = 1
136 NOTME["OPT_NOEXTMD5"] = 1
137 NOTME["OPT_ASAN_ADDRESS"] = 1
138 NOTME["OPT_ASAN_MEMORY"] = 1
139 NOTME["OPT_FORCED_STACKPROT"] = 1
140 NOTME["OPT_NOMEMDBG"] = 1
141 NOTME["OPT_NYD2"] = 1
142 i = 0
144 /^[[:space:]]*OPT_/ {
145 sub(/^[[:space:]]*/, "")
146 # This bails for UnixWare 7.1.4 awk(1), but preceeding = with \
147 # does not seem to be a compliant escape for =
148 #sub(/=.*$/, "")
149 $1 = substr($1, 1, index($1, "=") - 1)
150 if (NOTME[$1])
151 next
152 data[i++] = $1
154 END {
155 # Doing this completely sequentially and not doing make distclean in
156 # between runs should effectively result in lesser compilations.
157 # It is completely dumb nonetheless... TODO
158 for (j = 1; j < i; ++j) {
159 for (k = 1; k < j; ++k)
160 printf data[k] "=1 "
161 for (k = j; k < i; ++k)
162 printf data[k] "=0 "
163 printf "OPT_AUTOCC=1\n"
165 for (j = 1; j < i; ++j) {
166 for (k = 1; k < j; ++k)
167 printf data[k] "=0 "
168 for (k = j; k < i; ++k)
169 printf data[k] "=1 "
170 printf "OPT_AUTOCC=1\n"
172 # With debug
173 for (j = 1; j < i; ++j) {
174 for (k = 1; k < j; ++k)
175 printf data[k] "=1 "
176 for (k = j; k < i; ++k)
177 printf data[k] "=0 "
178 printf "OPT_AUTOCC=1\n"
179 printf "OPT_DEBUG=1\n"
181 for (j = 1; j < i; ++j) {
182 for (k = 1; k < j; ++k)
183 printf data[k] "=0 "
184 for (k = j; k < i; ++k)
185 printf data[k] "=1 "
186 printf "OPT_AUTOCC=1\n"
187 printf "OPT_DEBUG=1\n"
190 printf "CONFIG=NULL OPT_AUTOCC=0\n"
191 printf "CONFIG=NULL OPT_AUTOCC=1\n"
192 printf "CONFIG=NULLI OPT_AUTOCC=0\n"
193 printf "CONFIG=NULLI OPT_AUTOCC=1\n"
194 printf "CONFIG=MINIMAL OPT_AUTOCC=0\n"
195 printf "CONFIG=MINIMAL OPT_AUTOCC=1\n"
196 printf "CONFIG=NETSEND OPT_AUTOCC=0\n"
197 printf "CONFIG=NETSEND OPT_AUTOCC=1\n"
198 printf "CONFIG=MAXIMAL OPT_AUTOCC=0\n"
199 printf "CONFIG=MAXIMAL OPT_AUTOCC=1\n"
200 printf "CONFIG=DEVEL OPT_AUTOCC=0\n"
201 printf "CONFIG=DEVEL OPT_AUTOCC=1\n"
202 printf "CONFIG=ODEVEL OPT_AUTOCC=0\n"
203 printf "CONFIG=ODEVEL OPT_AUTOCC=1\n"
205 ' | while read c; do
206 printf "\n\n##########\n$c\n"
207 printf "\n\n##########\n$c\n" >&2
208 sh -c "${MAKE} ${c} all test"
209 done
210 ${MAKE} distclean
213 have_feat() {
214 ( "${RAWMAILX}" ${ARGS} -X'echo $features' -Xx |
215 ${grep} +${1} ) >/dev/null 2>&1
218 t_prolog() {
219 ${rm} -rf "${BODY}" "${MBOX}" ${TRAP_EXIT_ADDONS}
220 TRAP_EXIT_ADDONS=
221 [ ${#} -gt 0 ] && printf '[%s]\n' "${1}"
223 t_epilog() {
224 t_prolog
227 check() {
228 restat=${?} tid=${1} eestat=${2} f=${3} s=${4}
229 [ "${eestat}" != - ] && [ "${restat}" != "${eestat}" ] &&
230 err "${tid}" 'unexpected exit status: '"${restat} != ${eestat}"
231 csum="`${cksum} < ${f}`"
232 if [ "${csum}" = "${s}" ]; then
233 printf '%s: ok\n' "${tid}"
234 else
235 ESTAT=1
236 printf '%s: error: checksum mismatch (got %s)\n' "${tid}" "${csum}"
238 if [ -n "${MAE_TEST}" ]; then
239 x=`echo ${tid} | ${tr} "/:=" "__-"`
240 ${cp} -f "${f}" ./mae-test-"${x}"
244 err() {
245 ESTAT=1
246 printf '%s: error: %s\n' ${1} "${2}"
249 ex0_test() {
250 # $1=test name [$2=status]
251 __qm__=${?}
252 [ ${#} -gt 1 ] && __qm__=${2}
253 if [ ${__qm__} -ne 0 ]; then
254 err $1 'unexpected non-0 exit status'
255 else
256 printf '%s: ok\n' "${1}"
260 exn0_test() {
261 # $1=test name [$2=status]
262 __qm__=${?}
263 [ ${#} -gt 1 ] && __qm__=${2}
264 if [ ${__qm__} -eq 0 ]; then
265 err $1 'unexpected 0 exit status'
266 else
267 printf '%s: ok\n' "${1}"
271 if ( [ "$((1 + 1))" = 2 ] ) >/dev/null 2>&1; then
272 add() {
273 echo "$((${1} + ${2}))"
275 else
276 add() {
277 echo `${awk} 'BEGIN{print '${1}' + '${2}'}'`
281 if ( [ "$((2 % 3))" = 2 ] ) >/dev/null 2>&1; then
282 modulo() {
283 echo "$((${1} % ${2}))"
285 else
286 modulo() {
287 echo `${awk} 'BEGIN{print '${1}' % '${2}'}'`
291 # t_behave()
292 # Basic (easily testable) behaviour tests
293 t_behave() {
294 t_behave_X_opt_input_command_stack
295 t_behave_X_errexit
296 t_behave_S_freeze
297 t_behave_wysh
298 t_behave_input_inject_semicolon_seq
299 t_behave_commandalias
300 t_behave_ifelse
301 t_behave_localopts
302 t_behave_macro_param_shift
303 t_behave_addrcodec
304 t_behave_vexpr
305 t_behave_call_ret
306 t_behave_xcall
307 t_behave_vpospar
308 t_behave_atxplode
310 t_behave_mbox
312 t_behave_alternates
313 t_behave_alias
314 # FIXME t_behave_mlist
315 t_behave_filetype
317 t_behave_record_a_resend
319 t_behave_e_H_L_opts
320 t_behave_compose_hooks
321 t_behave_message_injections
322 t_behave_mime_types_load_control
324 t_behave_s_mime
326 t_behave_maildir
327 t_behave_mass_recipients
328 t_behave_lreply_futh_rth_etc
329 t_behave_iconv_mbyte_base64
330 t_behave_iconv_mainbody
333 t_behave_X_opt_input_command_stack() {
334 t_prolog t_behave_X_opt_input_command_stack
336 ${cat} <<- '__EOT' > "${BODY}"
337 echo 1
338 define mac0 {
339 echo mac0-1 via1 $0
341 call mac0
342 echo 2
343 source '\
344 echo "define mac1 {";\
345 echo " echo mac1-1 via1 \$0";\
346 echo " call mac0";\
347 echo " echo mac1-2";\
348 echo " call mac2";\
349 echo " echo mac1-3";\
350 echo "}";\
351 echo "echo 1-1";\
352 echo "define mac2 {";\
353 echo " echo mac2-1 via1 \$0";\
354 echo " call mac0";\
355 echo " echo mac2-2";\
356 echo "}";\
357 echo "echo 1-2";\
358 echo "call mac1";\
359 echo "echo 1-3";\
360 echo "source \"\
361 echo echo 1-1-1 via1 \$0;\
362 echo call mac0;\
363 echo echo 1-1-2;\
364 | \"";\
365 echo "echo 1-4";\
367 echo 3
368 call mac2
369 echo 4
370 undefine *
371 __EOT
373 # The -X option supports multiline arguments, and those can internally use
374 # reverse solidus newline escaping. And all -X options are joined...
375 APO=\'
376 < "${BODY}" ${MAILX} ${ARGS} \
377 -X 'e\' \
378 -X ' c\' \
379 -X ' h\' \
380 -X ' o \' \
381 -X 1 \
383 define mac0 {
384 echo mac0-1 via2 $0
386 call mac0
387 echo 2
390 source '${APO}'\
391 echo "define mac1 {";\
392 echo " echo mac1-1 via2 \$0";\
393 echo " call mac0";\
394 echo " echo mac1-2";\
395 echo " call mac2";\
396 echo " echo mac1-3";\
397 echo "}";\
398 echo "echo 1-1";\
399 echo "define mac2 {";\
400 echo " echo mac2-1 via2 \$0";\
401 echo " call mac0";\
402 echo " echo mac2-2";\
403 echo "}";\
404 echo "echo 1-2";\
405 echo "call mac1";\
406 echo "echo 1-3";\
407 echo "source \"\
408 echo echo 1-1-1 via2 \$0;\
409 echo call mac0;\
410 echo echo 1-1-2;\
411 | \"";\
412 echo "echo 1-4";\
413 | '${APO}'
414 echo 3
417 call mac2
418 echo 4
419 undefine *
420 ' > "${MBOX}"
422 check behave:x_opt_input_command_stack 0 "${MBOX}" '1786542668 416'
424 t_epilog
427 t_behave_X_errexit() {
428 t_prolog t_behave_X_errexit
430 ${cat} <<- '__EOT' > "${BODY}"
431 echo one
432 echos nono
433 echo two
434 __EOT
436 </dev/null ${MAILX} ${ARGS} -Snomemdebug \
437 -X'echo one' -X' echos nono ' -X'echo two' \
438 > "${MBOX}" 2>&1
439 check behave:x_errexit-1 0 "${MBOX}" '916157812 53'
441 </dev/null ${MAILX} ${ARGS} -X'source '"${BODY}" -Snomemdebug \
442 > "${MBOX}" 2>&1
443 check behave:x_errexit-2 0 "${MBOX}" '916157812 53'
445 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u -Snomemdebug \
446 > "${MBOX}" 2>&1
447 check behave:x_errexit-3 0 "${MBOX}" '916157812 53'
451 </dev/null ${MAILX} ${ARGS} -Serrexit -Snomemdebug \
452 -X'echo one' -X' echos nono ' -X'echo two' \
453 > "${MBOX}" 2>&1
454 check behave:x_errexit-4 1 "${MBOX}" '2118430867 49'
456 </dev/null ${MAILX} ${ARGS} -X'source '"${BODY}" -Serrexit -Snomemdebug \
457 > "${MBOX}" 2>&1
458 check behave:x_errexit-5 1 "${MBOX}" '2118430867 49'
460 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u -Serrexit -Snomemdebug \
461 > "${MBOX}" 2>&1
462 check behave:x_errexit-6 1 "${MBOX}" '12955965 172'
464 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u -Sposix -Snomemdebug \
465 > "${MBOX}" 2>&1
466 check behave:x_errexit-7 1 "${MBOX}" '12955965 172'
468 ## Repeat 4-7 with ignerr set
470 ${sed} -e 's/^echos /ignerr echos /' < "${BODY}" > "${MBOX}"
472 </dev/null ${MAILX} ${ARGS} -Serrexit -Snomemdebug \
473 -X'echo one' -X'ignerr echos nono ' -X'echo two' \
474 > "${BODY}" 2>&1
475 check behave:x_errexit-8 0 "${BODY}" '916157812 53'
477 </dev/null ${MAILX} ${ARGS} -X'source '"${MBOX}" -Serrexit -Snomemdebug \
478 > "${BODY}" 2>&1
479 check behave:x_errexit-9 0 "${BODY}" '916157812 53'
481 </dev/null MAILRC="${MBOX}" ${MAILX} ${ARGS} -:u -Serrexit -Snomemdebug \
482 > "${BODY}" 2>&1
483 check behave:x_errexit-10 0 "${BODY}" '916157812 53'
485 </dev/null MAILRC="${MBOX}" ${MAILX} ${ARGS} -:u -Sposix -Snomemdebug \
486 > "${BODY}" 2>&1
487 check behave:x_errexit-11 0 "${BODY}" '916157812 53'
489 t_epilog
492 t_behave_S_freeze() {
493 t_prolog t_behave_S_freeze
494 oterm=$TERM
495 unset TERM
497 # Test basic assumption
498 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} \
499 -X'echo asksub<$asksub> dietcurd<$dietcurd>' \
500 -Xx > "${MBOX}" 2>&1
501 check behave:s_freeze-1 0 "${MBOX}" '270686329 21'
504 ${cat} <<- '__EOT' > "${BODY}"
505 echo asksub<$asksub>
506 set asksub
507 echo asksub<$asksub>
508 __EOT
509 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u \
510 -Snoasksub -Sasksub -Snoasksub \
511 -X'echo asksub<$asksub>' -X'set asksub' -X'echo asksub<$asksub>' \
512 -Xx > "${MBOX}" 2>&1
513 check behave:s_freeze-2 0 "${MBOX}" '3182942628 37'
515 ${cat} <<- '__EOT' > "${BODY}"
516 echo asksub<$asksub>
517 unset asksub
518 echo asksub<$asksub>
519 __EOT
520 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u \
521 -Snoasksub -Sasksub \
522 -X'echo asksub<$asksub>' -X'unset asksub' -X'echo asksub<$asksub>' \
523 -Xx > "${MBOX}" 2>&1
524 check behave:s_freeze-3 0 "${MBOX}" '2006554293 39'
527 ${cat} <<- '__EOT' > "${BODY}"
528 echo dietcurd<$dietcurd>
529 set dietcurd=cherry
530 echo dietcurd<$dietcurd>
531 __EOT
532 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u \
533 -Sdietcurd=strawberry -Snodietcurd -Sdietcurd=vanilla \
534 -X'echo dietcurd<$dietcurd>' -X'unset dietcurd' \
535 -X'echo dietcurd<$dietcurd>' \
536 -Xx > "${MBOX}" 2>&1
537 check behave:s_freeze-4 0 "${MBOX}" '1985768109 65'
539 ${cat} <<- '__EOT' > "${BODY}"
540 echo dietcurd<$dietcurd>
541 unset dietcurd
542 echo dietcurd<$dietcurd>
543 __EOT
544 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u \
545 -Sdietcurd=strawberry -Snodietcurd \
546 -X'echo dietcurd<$dietcurd>' -X'set dietcurd=vanilla' \
547 -X'echo dietcurd<$dietcurd>' \
548 -Xx > "${MBOX}" 2>&1
549 check behave:s_freeze-5 0 "${MBOX}" '151574279 51'
551 # TODO once we have a detached one with env=1..
552 if [ -n "`</dev/null ${MAILX} ${ARGS} -X'!echo \$TERM' -Xx`" ]; then
553 echo 'behave:s_freeze-{6,7}: shell sets $TERM, skipped'
554 else
555 ${cat} <<- '__EOT' > "${BODY}"
556 !echo "shell says TERM<$TERM>"
557 echo TERM<$TERM>
558 !echo "shell says TERM<$TERM>"
559 set TERM=cherry
560 !echo "shell says TERM<$TERM>"
561 echo TERM<$TERM>
562 !echo "shell says TERM<$TERM>"
563 __EOT
564 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u \
565 -STERM=strawberry -SnoTERM -STERM=vanilla \
566 -X'echo mail<$TERM>' -X'unset TERM' \
567 -X'!echo "shell says TERM<$TERM>"' -X'echo TERM<$TERM>' \
568 -Xx > "${MBOX}" 2>&1
569 check behave:s_freeze-6 0 "${MBOX}" '1211476036 167'
571 ${cat} <<- '__EOT' > "${BODY}"
572 !echo "shell says TERM<$TERM>"
573 echo TERM<$TERM>
574 !echo "shell says TERM<$TERM>"
575 set TERM=cherry
576 !echo "shell says TERM<$TERM>"
577 echo TERM<$TERM>
578 !echo "shell says TERM<$TERM>"
579 __EOT
580 </dev/null MAILRC="${BODY}" ${MAILX} ${ARGS} -:u \
581 -STERM=strawberry -SnoTERM \
582 -X'echo TERM<$TERM>' -X'set TERM=vanilla' \
583 -X'!echo "shell says TERM<$TERM>"' -X'echo TERM<$TERM>' \
584 -Xx > "${MBOX}" 2>&1
585 check behave:s_freeze-7 0 "${MBOX}" '3365080441 132'
588 TERM=$oterm
589 t_epilog
592 t_behave_wysh() {
593 t_prolog t_behave_wysh
595 ${cat} <<- '__EOT' > "${BODY}"
597 echo abcd
598 echo a'b'c'd'
599 echo a"b"c"d"
600 echo a$'b'c$'d'
601 echo 'abcd'
602 echo "abcd"
603 echo $'abcd'
604 echo a\ b\ c\ d
605 echo a 'b c' d
606 echo a "b c" d
607 echo a $'b c' d
609 echo 'a$`"\'
610 echo "a\$\`'\"\\"
611 echo $'a\$`\'\"\\'
612 echo $'a\$`\'"\\'
613 # DIET=CURD TIED=
614 echo 'a${DIET}b${TIED}c\${DIET}d\${TIED}e' # COMMENT
615 echo "a${DIET}b${TIED}c\${DIET}d\${TIED}e"
616 echo $'a${DIET}b${TIED}c\${DIET}d\${TIED}e'
618 echo a$'\101\0101\x41\u0041\u41\U00000041\U41'c
619 echo a$'\u0041\u41\u0C1\U00000041\U41'c
620 echo a$'\377'c
621 echo a$'\0377'c
622 echo a$'\400'c
623 echo a$'\0400'c
624 echo a$'\U1100001'c
626 echo a$'b\0c'd
627 echo a$'b\00c'de
628 echo a$'b\000c'df
629 echo a$'b\0000c'dg
630 echo a$'b\x0c'dh
631 echo a$'b\x00c'di
632 echo a$'b\u0'dj
633 echo a$'b\u00'dk
634 echo a$'b\u000'dl
635 echo a$'b\u0000'dm
636 echo a$'b\U0'dn
637 echo a$'b\U00'do
638 echo a$'b\U000'dp
639 echo a$'b\U0000'dq
640 echo a$'b\U00000'dr
641 echo a$'b\U000000'ds
642 echo a$'b\U0000000'dt
643 echo a$'b\U00000000'du
645 echo a$'\cI'b
646 echo a$'\011'b
647 echo a$'\x9'b
648 echo a$'\u9'b
649 echo a$'\U9'b
650 echo a$'\c@'b c d
651 __EOT
653 if [ -z "${UTF8_LOCALE}" ]; then
654 echo 'Skip behave:wysh_unicode, no UTF8_LOCALE'
655 else
656 < "${BODY}" DIET=CURD TIED= \
657 LC_ALL=${UTF8_LOCALE} ${MAILX} ${ARGS} 2>/dev/null > "${MBOX}"
658 check behave:wysh_unicode 0 "${MBOX}" '475805847 317'
661 < "${BODY}" DIET=CURD TIED= ${MAILX} ${ARGS} > "${MBOX}" 2>/dev/null
662 check behave:wysh_c 0 "${MBOX}" '1473887148 321'
664 t_epilog
667 t_behave_input_inject_semicolon_seq() {
668 t_prolog t_behave_input_inject_semicolon_seq
670 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}"
671 define mydeepmac {
672 echon '(mydeepmac)';
674 define mymac {
675 echon this_is_mymac;call mydeepmac;echon ';';
677 echon one';';call mymac;echon two";";call mymac;echo three$';';
678 define mymac {
679 echon this_is_mymac;call mydeepmac;echon ,TOO'!;';
681 echon one';';call mymac;echon two";";call mymac;echo three$';';
682 __EOT
684 check behave:input_inject_semicolon_seq 0 "${MBOX}" '512117110 140'
686 t_epilog
689 t_behave_commandalias() {
690 t_prolog t_behave_commandalias
692 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}"
693 commandalias echo echo hoho
694 echo stop.
695 commandalias X Xx
696 commandalias Xx XxX
697 commandalias XxX XxXx
698 commandalias XxXx XxXxX
699 commandalias XxXxX XxXxXx
700 commandalias XxXxXx echo huhu
701 commandalias XxXxXxX echo huhu
703 commandalias XxXxXx XxXxXxX
705 uncommandalias echo
706 commandalias XxXxXx echo huhu
708 __EOT
710 check behave:commandalias 0 "${MBOX}" '3694143612 31'
712 t_epilog
715 t_behave_ifelse() {
716 t_prolog t_behave_ifelse
718 # Nestable conditions test
719 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}"
720 if 0
721 echo 1.err
722 else
723 echo 1.ok
724 endif
725 if 1
726 echo 2.ok
727 else
728 echo 2.err
729 endif
730 if $dietcurd
731 echo 3.err
732 else
733 echo 3.ok
734 endif
735 set dietcurd=yoho
736 if $dietcurd
737 echo 4.ok
738 else
739 echo 4.err
740 endif
741 if $dietcurd == 'yoho'
742 echo 5.ok
743 else
744 echo 5.err
745 endif
746 if $dietcurd @== 'Yoho'
747 echo 5-1.ok
748 else
749 echo 5-1.err
750 endif
751 if $dietcurd == 'Yoho'
752 echo 5-2.err
753 else
754 echo 5-2.ok
755 endif
756 if $dietcurd != 'yoho'
757 echo 6.err
758 else
759 echo 6.ok
760 endif
761 if $dietcurd @!= 'Yoho'
762 echo 6-1.err
763 else
764 echo 6-1.ok
765 endif
766 if $dietcurd != 'Yoho'
767 echo 6-2.ok
768 else
769 echo 6-2.err
770 endif
771 # Nesting
772 if faLse
773 echo 7.err1
774 if tRue
775 echo 7.err2
776 if yEs
777 echo 7.err3
778 else
779 echo 7.err4
780 endif
781 echo 7.err5
782 endif
783 echo 7.err6
784 else
785 echo 7.ok7
786 if YeS
787 echo 7.ok8
788 if No
789 echo 7.err9
790 else
791 echo 7.ok9
792 endif
793 echo 7.ok10
794 else
795 echo 7.err11
796 if yeS
797 echo 7.err12
798 else
799 echo 7.err13
800 endif
801 endif
802 echo 7.ok14
803 endif
804 if r
805 echo 8.ok1
806 if R
807 echo 8.ok2
808 else
809 echo 8.err2
810 endif
811 echo 8.ok3
812 else
813 echo 8.err1
814 endif
815 if s
816 echo 9.err1
817 else
818 echo 9.ok1
819 if S
820 echo 9.err2
821 else
822 echo 9.ok2
823 endif
824 echo 9.ok3
825 endif
826 # `elif'
827 if $dietcurd == 'yohu'
828 echo 10.err1
829 elif $dietcurd == 'yoha'
830 echo 10.err2
831 elif $dietcurd == 'yohe'
832 echo 10.err3
833 elif $dietcurd == 'yoho'
834 echo 10.ok1
835 if $dietcurd == 'yohu'
836 echo 10.err4
837 elif $dietcurd == 'yoha'
838 echo 10.err5
839 elif $dietcurd == 'yohe'
840 echo 10.err6
841 elif $dietcurd == 'yoho'
842 echo 10.ok2
843 if $dietcurd == 'yohu'
844 echo 10.err7
845 elif $dietcurd == 'yoha'
846 echo 10.err8
847 elif $dietcurd == 'yohe'
848 echo 10.err9
849 elif $dietcurd == 'yoho'
850 echo 10.ok3
851 else
852 echo 10.err10
853 endif
854 else
855 echo 10.err11
856 endif
857 else
858 echo 10.err12
859 endif
860 # integer
861 set dietcurd=10
862 if $dietcurd -lt 11
863 echo 11.ok1
864 if $dietcurd -gt 9
865 echo 11.ok2
866 else
867 echo 11.err2
868 endif
869 if $dietcurd -eq 10
870 echo 11.ok3
871 else
872 echo 11.err3
873 endif
874 if $dietcurd -ge 10
875 echo 11.ok4
876 else
877 echo 11.err4
878 endif
879 if $dietcurd -le 10
880 echo 11.ok5
881 else
882 echo 11.err5
883 endif
884 if $dietcurd -ge 11
885 echo 11.err6
886 else
887 echo 11.ok6
888 endif
889 if $dietcurd -le 9
890 echo 11.err7
891 else
892 echo 11.ok7
893 endif
894 else
895 echo 11.err1
896 endif
897 set dietcurd=Abc
898 if $dietcurd < aBd
899 echo 12.ok1
900 if $dietcurd @> abB
901 echo 12.ok2
902 else
903 echo 12.err2
904 endif
905 if $dietcurd @== aBC
906 echo 12.ok3
907 else
908 echo 12.err3
909 endif
910 if $dietcurd @>= AbC
911 echo 12.ok4
912 else
913 echo 12.err4
914 endif
915 if $dietcurd @<= ABc
916 echo 12.ok5
917 else
918 echo 12.err5
919 endif
920 if $dietcurd @>= abd
921 echo 12.err6
922 else
923 echo 12.ok6
924 endif
925 if $dietcurd @<= abb
926 echo 12.err7
927 else
928 echo 12.ok7
929 endif
930 else
931 echo 12.err1
932 endif
933 if $dietcurd < aBc
934 echo 12-1.ok
935 else
936 echo 12-1.err
937 endif
938 if $dietcurd @< aBc
939 echo 12-2.err
940 else
941 echo 12-2.ok
942 endif
943 if $dietcurd > ABc
944 echo 12-3.ok
945 else
946 echo 12-3.err
947 endif
948 if $dietcurd @> ABc
949 echo 12-3.err
950 else
951 echo 12-3.ok
952 endif
953 if $dietcurd @i=% aB
954 echo 13.ok
955 else
956 echo 13.err
957 endif
958 if $dietcurd =% aB
959 echo 13-1.err
960 else
961 echo 13-1.ok
962 endif
963 if $dietcurd @=% bC
964 echo 14.ok
965 else
966 echo 14.err
967 endif
968 if $dietcurd !% aB
969 echo 15-1.ok
970 else
971 echo 15-1.err
972 endif
973 if $dietcurd @!% aB
974 echo 15-2.err
975 else
976 echo 15-2.ok
977 endif
978 if $dietcurd !% bC
979 echo 15-3.ok
980 else
981 echo 15-3.err
982 endif
983 if $dietcurd @!% bC
984 echo 15-4.err
985 else
986 echo 15-4.ok
987 endif
988 if $dietcurd =% Cd
989 echo 16.err
990 else
991 echo 16.ok
992 endif
993 if $dietcurd !% Cd
994 echo 17.ok
995 else
996 echo 17.err
997 endif
998 set diet=abc curd=abc
999 if $diet == $curd
1000 echo 18.ok
1001 else
1002 echo 18.err
1003 endif
1004 set diet=abc curd=abcd
1005 if $diet != $curd
1006 echo 19.ok
1007 else
1008 echo 19.err
1009 endif
1010 # 1. Shitty grouping capabilities as of today
1011 unset diet curd ndefined
1012 if [ [ false ] || [ false ] || [ true ] ] && [ [ false ] || [ true ] ] && \
1013 [ yes ]
1014 echo 20.ok
1015 else
1016 echo 20.err
1017 endif
1018 if [ [ [ [ 0 ] || [ 1 ] ] && [ [ 1 ] || [ 0 ] ] ] && [ 1 ] ] && [ yes ]
1019 echo 21.ok
1020 else
1021 echo 21.err
1022 endif
1023 if [ [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] ]
1024 echo 22.ok
1025 else
1026 echo 22.err
1027 endif
1028 if [ [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] || [ [ 1 ] ] ]
1029 echo 23.ok
1030 else
1031 echo 23.err
1032 endif
1033 if [ [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] || [ [ 1 ] ] || [ 1 ] ] && [ no ]
1034 echo 24.err
1035 else
1036 echo 24.ok
1037 endif
1038 if [ [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] || [ [ 1 ] ] || [ 1 ] ] \
1039 && [ no ] || [ yes ]
1040 echo 25.ok
1041 else
1042 echo 25.err
1043 endif
1044 if [ [ [ [ [ [ [ 1 ] ] && [ 1 ] ] && [ 1 ] ] && [ 1 ] ] ] && [ 1 ] ]
1045 echo 26.ok
1046 else
1047 echo 26.err
1048 endif
1049 if [ [ [ [ [ [ [ 1 ] ] && [ 1 ] ] && [ 1 ] ] && [ 1 ] ] ] && [ 0 ] ]
1050 echo 27.err
1051 else
1052 echo 27.ok
1053 endif
1054 if [ [ [ [ [ [ [ 1 ] ] && [ 1 ] ] && [ 0 ] ] && [ 1 ] ] ] && [ 1 ] ]
1055 echo 28.err
1056 else
1057 echo 28.ok
1058 endif
1059 if [ [ [ [ [ [ [ 0 ] ] && [ 1 ] ] && [ 1 ] ] && [ 1 ] ] ] && [ 1 ] ]
1060 echo 29.err
1061 else
1062 echo 29.ok
1063 endif
1064 if [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] && [ 0 ]
1065 echo 30.err
1066 else
1067 echo 30.ok
1068 endif
1069 if [ 1 ] || [ 0 ] || [ 0 ] || [ 0 ] && [ 1 ]
1070 echo 31.ok
1071 else
1072 echo 31.err
1073 endif
1074 if [ 0 ] || [ 0 ] || [ 0 ] || [ 1 ] && [ 0 ]
1075 echo 32.err
1076 else
1077 echo 32.ok
1078 endif
1079 if [ 0 ] || [ 0 ] || [ 0 ] || [ 1 ] && [ 1 ]
1080 echo 33.ok
1081 else
1082 echo 33.err
1083 endif
1084 if [ 0 ] || [ 0 ] || [ 0 ] || [ 1 ] && [ 0 ] || [ 1 ] && [ 0 ]
1085 echo 34.err
1086 else
1087 echo 34.ok
1088 endif
1089 if [ 0 ] || [ 0 ] || [ 0 ] || [ 1 ] && [ 0 ] || [ 1 ] && [ 1 ]
1090 echo 35.ok
1091 else
1092 echo 35.err
1093 endif
1094 set diet=yo curd=ho
1095 if [ [ $diet == 'yo' ] && [ $curd == 'ho' ] ] && [ $ndefined ]
1096 echo 36.err
1097 else
1098 echo 36.ok
1099 endif
1100 set ndefined
1101 if [ [ $diet == 'yo' ] && [ $curd == 'ho' ] ] && [ $ndefined ]
1102 echo 37.ok
1103 else
1104 echo 37.err
1105 endif
1106 # 2. Shitty grouping capabilities as of today
1107 unset diet curd ndefined
1108 if [ false || false || true ] && [ false || true ] && yes
1109 echo 40.ok
1110 else
1111 echo 40.err
1112 endif
1113 if [ [ [ 0 || 1 ] && [ 1 || 0 ] ] && 1 ] && [ yes ]
1114 echo 41.ok
1115 else
1116 echo 41.err
1117 endif
1118 if [ 1 || 0 || 0 || 0 ]
1119 echo 42.ok
1120 else
1121 echo 42.err
1122 endif
1123 if [ 1 || 0 || 0 || 0 || [ 1 ] ]
1124 echo 43.ok
1125 else
1126 echo 43.err
1127 endif
1128 if [ 1 || 0 || 0 || 0 || [ 1 ] || 1 ] && no
1129 echo 44.err
1130 else
1131 echo 44.ok
1132 endif
1133 if [ 1 || 0 || 0 || 0 || 1 || [ 1 ] ] && no || [ yes ]
1134 echo 45.ok
1135 else
1136 echo 45.err
1137 endif
1138 if [ [ [ [ [ [ 1 ] && 1 ] && 1 ] && 1 ] ] && [ 1 ] ]
1139 echo 46.ok
1140 else
1141 echo 46.err
1142 endif
1143 if [ [ [ [ [ [ 1 ] && 1 ] && 1 ] && [ 1 ] ] ] && 0 ]
1144 echo 47.err
1145 else
1146 echo 47.ok
1147 endif
1148 if [ [ [ [ [ [ [ 1 ] ] && 1 ] && 0 ] && [ 1 ] ] ] && 1 ]
1149 echo 48.err
1150 else
1151 echo 48.ok
1152 endif
1153 if [ [ [ [ [ [ 0 ] && 1 ] && 1 ] && 1 ] ] && 1 ]
1154 echo 49.err
1155 else
1156 echo 49.ok
1157 endif
1158 if 1 || 0 || 0 || 0 && 0
1159 echo 50.err
1160 else
1161 echo 50.ok
1162 endif
1163 if 1 || 0 || 0 || 0 && 1
1164 echo 51.ok
1165 else
1166 echo 51.err
1167 endif
1168 if 0 || 0 || 0 || 1 && 0
1169 echo 52.err
1170 else
1171 echo 52.ok
1172 endif
1173 if 0 || 0 || 0 || 1 && 1
1174 echo 53.ok
1175 else
1176 echo 53.err
1177 endif
1178 if 0 || 0 || 0 || 1 && 0 || 1 && 0
1179 echo 54.err
1180 else
1181 echo 54.ok
1182 endif
1183 if 0 || 0 || 0 || 1 && 0 || 1 && 1
1184 echo 55.ok
1185 else
1186 echo 55.err
1187 endif
1188 set diet=yo curd=ho
1189 if [ $diet == 'yo' && $curd == 'ho' ] && $ndefined
1190 echo 56.err
1191 else
1192 echo 56.ok
1193 endif
1194 if $diet == 'yo' && $curd == 'ho' && $ndefined
1195 echo 57.err
1196 else
1197 echo 57.ok
1198 endif
1199 set ndefined
1200 if [ $diet == 'yo' && $curd == 'ho' ] && $ndefined
1201 echo 57.ok
1202 else
1203 echo 57.err
1204 endif
1205 if $diet == 'yo' && $curd == 'ho' && $ndefined
1206 echo 58.ok
1207 else
1208 echo 58.err
1209 endif
1210 if [ [ [ [ [ [ $diet == 'yo' && $curd == 'ho' && $ndefined ] ] ] ] ] ]
1211 echo 59.ok
1212 else
1213 echo 59.err
1214 endif
1215 # Some more en-braced variables
1216 set diet=yo curd=ho
1217 if ${diet} == ${curd}
1218 echo 70.err
1219 else
1220 echo 70.ok
1221 endif
1222 if ${diet} != ${curd}
1223 echo 71.ok
1224 else
1225 echo 71.err
1226 endif
1227 if $diet == ${curd}
1228 echo 72.err
1229 else
1230 echo 72.ok
1231 endif
1232 if ${diet} == $curd
1233 echo 73.err
1234 else
1235 echo 73.ok
1236 endif
1237 # Unary !
1238 if ! 0 && ! ! 1 && ! ! ! ! 2 && 3
1239 echo 80.ok
1240 else
1241 echo 80.err
1242 endif
1243 if ! 0 && ! [ ! 1 ] && ! [ ! [ ! [ ! 2 ] ] ] && 3
1244 echo 81.ok
1245 else
1246 echo 81.err
1247 endif
1248 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ 2 ] ] ] ] ] && 3
1249 echo 82.ok
1250 else
1251 echo 82.err
1252 endif
1253 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ 2 ] ] ] ] ] && ! 3
1254 echo 83.err
1255 else
1256 echo 83.ok
1257 endif
1258 if [ ! 0 ] && [ ! [ ! 1 ] ] && ! [ [ ! [ ! [ ! [ 2 ] ] ] ] ] && ! 3
1259 echo 84.err
1260 else
1261 echo 84.ok
1262 endif
1263 if [ ! 0 ] && ! [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ 2 ] ] ] ] ] && 3
1264 echo 85.err
1265 else
1266 echo 85.ok
1267 endif
1268 if ! [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ 2 ] ] ] ] ] && 3
1269 echo 86.err
1270 else
1271 echo 86.ok
1272 endif
1273 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ 2 ] ] ] ] ] || 3
1274 echo 87.ok
1275 else
1276 echo 87.err
1277 endif
1278 if [ ! 0 ] && [ ! ! [ ! ! 1 ] ] && [ ! ! [ ! ! [ ! ! [ ! ! [ 2 ] ] ] ] ]
1279 echo 88.ok
1280 else
1281 echo 88.err
1282 endif
1283 # Unary !, odd
1284 if ! 0 && ! ! 1 && ! ! ! 0 && 3
1285 echo 90.ok
1286 else
1287 echo 90.err
1288 endif
1289 if ! 0 && ! [ ! 1 ] && ! [ ! [ ! [ 0 ] ] ] && 3
1290 echo 91.ok
1291 else
1292 echo 91.err
1293 endif
1294 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ [ 0 ] ] ] ] ] && 3
1295 echo 92.ok
1296 else
1297 echo 92.err
1298 endif
1299 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! ! [ ! [ ! 0 ] ] ] ] && ! 3
1300 echo 93.err
1301 else
1302 echo 93.ok
1303 endif
1304 if [ ! 0 ] && [ ! [ ! 1 ] ] && ! [ ! [ ! [ ! [ ! 0 ] ] ] ] && 3
1305 echo 94.ok
1306 else
1307 echo 94.err
1308 endif
1309 if [ ! 0 ] && ! [ ! [ ! 1 ] ] && [ ! ! [ ! [ ! [ ! [ 0 ] ] ] ] ] && 3
1310 echo 95.err
1311 else
1312 echo 95.ok
1313 endif
1314 if ! [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! ! 0 ] ] ] ] && 3
1315 echo 96.err
1316 else
1317 echo 96.ok
1318 endif
1319 if [ ! 0 ] && [ ! [ ! 1 ] ] && [ ! [ ! [ ! [ ! [ ! 0 ] ] ] ] ] || 3
1320 echo 97.ok
1321 else
1322 echo 97.err
1323 endif
1324 if [ ! 0 ] && [ ! ! [ ! ! 1 ] ] && [ ! ! [ ! ! [ ! ! [ ! [ 0 ] ] ] ] ]
1325 echo 98.ok
1326 else
1327 echo 98.err
1328 endif
1329 __EOT
1331 check behave:if-normal 0 "${MBOX}" '1688759742 719'
1333 if have_feat regex; then
1334 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}"
1335 set dietcurd=yoho
1336 if $dietcurd =~ '^yo.*'
1337 echo 1.ok
1338 else
1339 echo 1.err
1340 endif
1341 if $dietcurd =~ '^Yo.*'
1342 echo 1-1.err
1343 else
1344 echo 1-1.ok
1345 endif
1346 if $dietcurd @=~ '^Yo.*'
1347 echo 1-2.ok
1348 else
1349 echo 1-2.err
1350 endif
1351 if $dietcurd =~ '^yOho.+'
1352 echo 2.err
1353 else
1354 echo 2.ok
1355 endif
1356 if $dietcurd @!~ '.*Ho$'
1357 echo 3.err
1358 else
1359 echo 3.ok
1360 endif
1361 if $dietcurd !~ '.+yohO$'
1362 echo 4.ok
1363 else
1364 echo 4.err
1365 endif
1366 if [ $dietcurd @i!~ '.+yoho$' ]
1367 echo 5.ok
1368 else
1369 echo 5.err
1370 endif
1371 if ! [ $dietcurd @i=~ '.+yoho$' ]
1372 echo 6.ok
1373 else
1374 echo 6.err
1375 endif
1376 if ! ! [ $dietcurd @i!~ '.+yoho$' ]
1377 echo 7.ok
1378 else
1379 echo 7.err
1380 endif
1381 if ! [ ! [ $dietcurd @i!~ '.+yoho$' ] ]
1382 echo 8.ok
1383 else
1384 echo 8.err
1385 endif
1386 if [ ! [ ! [ $dietcurd @i!~ '.+yoho$' ] ] ]
1387 echo 9.ok
1388 else
1389 echo 9.err
1390 endif
1391 if ! [ ! [ ! [ $dietcurd !~ '.+yoho$' ] ] ]
1392 echo 10.err
1393 else
1394 echo 10.ok
1395 endif
1396 if ! ! ! $dietcurd !~ '.+yoho$'
1397 echo 11.err
1398 else
1399 echo 11.ok
1400 endif
1401 if ! ! ! $dietcurd =~ '.+yoho$'
1402 echo 12.ok
1403 else
1404 echo 12.err
1405 endif
1406 if ! [ ! ! [ ! [ $dietcurd !~ '.+yoho$' ] ] ]
1407 echo 13.ok
1408 else
1409 echo 13.err
1410 endif
1411 set diet=abc curd='^abc$'
1412 if $diet =~ $curd
1413 echo 14.ok
1414 else
1415 echo 14.err
1416 endif
1417 set diet=abc curd='^abcd$'
1418 if $diet !~ $curd
1419 echo 15.ok
1420 else
1421 echo 15.err
1422 endif
1423 __EOT
1425 check behave:if-regex 0 "${MBOX}" '1115671789 95'
1426 else
1427 printf 'behave:if-regex: unsupported, skipped\n'
1430 t_epilog
1433 t_behave_localopts() {
1434 t_prolog t_behave_localopts
1436 # Nestable conditions test
1437 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>&1
1438 define t2 {
1439 echo in: t2
1440 set t2=t2
1441 echo $t2
1443 define t1 {
1444 echo in: t1
1445 set gv1=gv1
1446 localopts on
1447 set lv1=lv1 lv2=lv2
1448 set lv3=lv3
1449 call t2
1450 localopts off
1451 set gv2=gv2
1452 echo $gv1 $lv1 ${lv2} ${lv3} ${gv2}, $t2
1454 define t0 {
1455 echo in: t0
1456 call t1
1457 echo $gv1 $lv1 ${lv2} ${lv3} ${gv2}, $t2
1458 echo "$gv1 $lv1 ${lv2} ${lv3} ${gv2}, $t2"
1460 account trouble {
1461 echo in: trouble
1462 call t0
1464 call t0
1465 unset gv1 gv2
1466 account trouble
1467 echo active trouble: $gv1 $lv1 ${lv2} ${lv3} ${gv2}, $t3
1468 account null
1469 echo active null: $gv1 $lv1 ${lv2} ${lv3} ${gv2}, $t3
1472 define ll2 {
1473 localopts $1
1474 set x=2
1475 echo ll2=$x
1477 define ll1 {
1478 wysh set y=$1; shift; eval localopts $y; localopts $1; shift
1479 set x=1
1480 echo ll1.1=$x
1481 call ll2 $1
1482 echo ll1.2=$x
1484 define ll0 {
1485 wysh set y=$1; shift; eval localopts $y; localopts $1; shift
1486 set x=0
1487 echo ll0.1=$x
1488 call ll1 $y "$@"
1489 echo ll0.2=$x
1491 define llx {
1492 echo ----- $1: $2 -> $3 -> $4
1493 echo ll-1.1=$x
1494 eval localopts $1
1495 call ll0 "$@"
1496 echo ll-1.2=$x
1497 unset x
1499 define lly {
1500 call llx 'call off' on on on
1501 call llx 'call off' off on on
1502 call llx 'call off' on off on
1503 call llx 'call off' on off off
1504 localopts call-fixate on
1505 call llx 'call-fixate on' on on on
1506 call llx 'call-fixate on' off on on
1507 call llx 'call-fixate on' on off on
1508 call llx 'call-fixate on' on off off
1509 unset x;localopts call on
1510 call llx 'call on' on on on
1511 call llx 'call on' off on on
1512 call llx 'call on' on off on
1513 call llx 'call on' on off off
1515 call lly
1516 __EOT
1518 check behave:localopts 0 "${MBOX}" '4016155249 1246'
1520 t_epilog
1523 t_behave_macro_param_shift() {
1524 t_prolog t_behave_macro_param_shift
1526 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>/dev/null
1527 define t2 {
1528 echo in: t2
1529 echo t2.0 has $#/${#} parameters: "$1,${2},$3" (${*}) [$@]
1530 localopts on
1531 wysh set ignerr=$1
1532 shift
1533 localopts off
1534 echo t2.1 has $#/${#} parameters: "$1,${2},$3" (${*}) [$@]
1535 if [ $# > 1 ] || [ $ignerr == '' ]
1536 shift 2
1537 else
1538 ignerr shift 2
1539 endif
1540 echo t2.2:$? has $#/${#} parameters: "$1,${2},$3" (${*}) [$@]
1541 shift 0
1542 echo t2.3:$? has $#/${#} parameters: "$1,${2},$3" (${*}) [$@]
1543 if [ $# > 0 ]
1544 shift
1545 endif
1546 echo t2.4:$? has $#/${#} parameters: "$1,${2},$3" (${*}) [$@]
1548 define t1 {
1549 set errexit
1550 echo in: t1
1551 call t2 1 you get four args
1552 echo t1.1: $?';' ignerr ($ignerr) should not exist
1553 call t2 1 you get 'three args'
1554 echo t1.2: $?';' ignerr ($ignerr) should not exist
1555 call t2 1 you 'get two args'
1556 echo t1.3: $?';' ignerr ($ignerr) should not exist
1557 call t2 1 'you get one arg'
1558 echo t1.4: $?';' ignerr ($ignerr) should not exist
1559 ignerr call t2 '' 'you get one arg'
1560 echo t1.5: $?';' ignerr ($ignerr) should not exist
1562 call t1
1563 __EOT
1565 check behave:macro_param_shift 0 "${MBOX}" '1402489146 1682'
1567 t_epilog
1570 t_behave_addrcodec() {
1571 t_prolog t_behave_addrcodec
1573 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>&1
1574 vput addrcodec res e 1 <doog@def>
1575 echo $?/$^ERRNAME $res
1576 eval vput addrcodec res d $res
1577 echo $?/$^ERRNAME $res
1578 vput addrcodec res e 2 . <doog@def>
1579 echo $?/$^ERRNAME $res
1580 eval vput addrcodec res d $res
1581 echo $?/$^ERRNAME $res
1582 vput addrcodec res e 3 Sauer Dr. <doog@def>
1583 echo $?/$^ERRNAME $res
1584 eval vput addrcodec res d $res
1585 echo $?/$^ERRNAME $res
1586 vput addrcodec res e 3.50 Sauer (Ma) Dr. <doog@def>
1587 echo $?/$^ERRNAME $res
1588 eval vput addrcodec res d $res
1589 echo $?/$^ERRNAME $res
1590 vput addrcodec res e 3.51 Sauer (Ma) "Dr." <doog@def>
1591 echo $?/$^ERRNAME $res
1592 eval vput addrcodec res d $res
1593 echo $?/$^ERRNAME $res
1595 vput addrcodec res +e 4 Sauer (Ma) Dr. <doog@def>
1596 echo $?/$^ERRNAME $res
1597 eval vput addrcodec res d $res
1598 echo $?/$^ERRNAME $res
1599 vput addrcodec res +e 5 Sauer (Ma) Braten Dr. <doog@def>
1600 echo $?/$^ERRNAME $res
1601 eval vput addrcodec res d $res
1602 echo $?/$^ERRNAME $res
1603 vput addrcodec res +e 6 Sauer (Ma) Braten Dr. (Heu) <doog@def>
1604 echo $?/$^ERRNAME $res
1605 eval vput addrcodec res d $res
1606 echo $?/$^ERRNAME $res
1607 vput addrcodec res +e 7 Sauer (Ma) Braten Dr. (Heu) <doog@def> (bu)
1608 echo $?/$^ERRNAME $res
1609 eval vput addrcodec res d $res
1610 echo $?/$^ERRNAME $res
1611 vput addrcodec res +e 8 \
1612 Dr. Sauer (Ma) Braten Dr. (Heu) <doog@def> (bu) Boom. Boom
1613 echo $?/$^ERRNAME $res
1614 eval vput addrcodec res d $res
1615 echo $?/$^ERRNAME $res
1616 vput addrcodec res +e 9 Dr.Sauer(Ma)Braten Dr. (Heu) <doog@def>
1617 echo $?/$^ERRNAME $res
1618 eval vput addrcodec res d $res
1619 echo $?/$^ERRNAME $res
1620 vput addrcodec res +e 10 (Ma)Braten Dr. (Heu) <doog@def>
1621 echo $?/$^ERRNAME $res
1622 eval vput addrcodec res d $res
1623 echo $?/$^ERRNAME $res
1624 vput addrcodec res +e 11 (Ma)Braten Dr"." (Heu) <doog@def>
1625 echo $?/$^ERRNAME $res
1626 eval vput addrcodec res d $res
1627 echo $?/$^ERRNAME $res
1628 vput addrcodec res +e 12 Dr. Sauer (Ma) Braten Dr. (u) <doog@def>
1629 echo $?/$^ERRNAME $res
1630 eval vput addrcodec res d $res
1631 echo $?/$^ERRNAME $res
1632 vput addrcodec res +e 13(Ma)Braten Dr. (Heu) <doog@def>
1633 echo $?/$^ERRNAME $res
1634 eval vput addrcodec res d $res
1635 echo $?/$^ERRNAME $res
1636 vput addrcodec res +e 14 Hey, Du <doog@def> Wie() findet Dr. das? ()
1637 echo $?/$^ERRNAME $res
1638 eval vput addrcodec res d $res
1639 echo $?/$^ERRNAME $res
1640 vput addrcodec res +e 15 \
1641 Hey, Du <doog@def> Wie() findet "" Dr. "" das? ()
1642 echo $?/$^ERRNAME $res
1643 eval vput addrcodec res d $res
1644 echo $?/$^ERRNAME $res
1645 vput addrcodec res +e 16 \
1646 "Hey," "Du" <doog@def> "Wie()" findet "" Dr. "" das? ()
1647 echo $?/$^ERRNAME $res
1648 eval vput addrcodec res d $res
1649 echo $?/$^ERRNAME $res
1650 vput addrcodec res +e 17 \
1651 "Hey" Du <doog@def> "Wie() findet " " Dr. """ das? ()
1652 echo $?/$^ERRNAME $res
1653 eval vput addrcodec res d $res
1654 echo $?/$^ERRNAME $res
1655 vput addrcodec res +e 18 \
1656 <doog@def> "Hey" Du "Wie() findet " " Dr. """ das? ()
1657 echo $?/$^ERRNAME $res
1658 eval vput addrcodec res d $res
1659 echo $?/$^ERRNAME $res
1660 vput addrcodec res +e 19 Hey\,\" <doog@def> "Wie()" findet \" Dr. \" das?
1661 echo $?/$^ERRNAME $res
1662 eval vput addrcodec res d $res
1663 echo $?/$^ERRNAME $res
1665 vput addrcodec res ++e 20 Hey\,\" <doog@def> "Wie()" findet \" Dr. \" das?
1666 echo $?/$^ERRNAME $res
1667 vput addrcodec res ++e 21 Hey\,\"" <doog@def> "Wie()" findet \" Dr. \" das?
1668 echo $?/$^ERRNAME $res
1669 eval vput addrcodec res d $res
1670 echo $?/$^ERRNAME $res
1672 vput addrcodec res +++e 22 Hey\\,\" <doog@def> "Wie()" findet \" Dr. \" das?
1673 echo $?/$^ERRNAME $res
1674 eval vput addrcodec res d $res
1675 echo $?/$^ERRNAME $res
1677 vput addrcodec res s \
1678 "23 Hey\\,\\\" \"Wie" () "\" findet \\\" Dr. \\\" das?" <doog@def>
1679 echo $?/$^ERRNAME $res
1680 __EOT
1682 check behave:addrcodec-1 0 "${MBOX}" '429099645 2414'
1684 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>&1
1685 mlist isa1@list
1686 mlsubscribe isa2@list
1688 vput addrcodec res skin Hey\\,\" <isa0@list> "Wie()" find \" Dr. \" das?
1689 echo $?/$^ERRNAME $res
1690 vput addrcodec res skinlist Hey\\,\" <isa0@list> "Wie()" find \" Dr. \" das?
1691 echo $?/$^ERRNAME $res
1692 vput addrcodec res skin Hey\\,\" <isa1@list> "Wie()" find \" Dr. \" das?
1693 echo $?/$^ERRNAME $res
1694 vput addrcodec res skinlist Hey\\,\" <isa1@list> "Wie()" find \" Dr. \" das?
1695 echo $?/$^ERRNAME $res
1696 vput addrcodec res skin Hey\\,\" <isa2@list> "Wie()" find \" Dr. \" das?
1697 echo $?/$^ERRNAME $res
1698 vput addrcodec res skinlist Hey\\,\" <isa2@list> "Wie()" find \" Dr. \" das?
1699 echo $?/$^ERRNAME $res
1700 __EOT
1702 check behave:addrcodec-2 0 "${MBOX}" '1391779299 104'
1704 t_epilog
1707 t_behave_vexpr() {
1708 t_prolog t_behave_vexpr
1710 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>/dev/null
1711 vput vexpr res = 9223372036854775807
1712 echo $?/$^ERRNAME $res
1713 vput vexpr res = 9223372036854775808
1714 echo $?/$^ERRNAME $res
1715 vput vexpr res =@ 9223372036854775808
1716 echo $?/$^ERRNAME $res
1717 vput vexpr res = -9223372036854775808
1718 echo $?/$^ERRNAME $res
1719 vput vexpr res = -9223372036854775809
1720 echo $?/$^ERRNAME $res
1721 vput vexpr res =@ -9223372036854775809
1722 echo $?/$^ERRNAME $res
1723 echo ' #1'
1724 vput vexpr res ~ 0
1725 echo $?/$^ERRNAME $res
1726 vput vexpr res ~ 1
1727 echo $?/$^ERRNAME $res
1728 vput vexpr res ~ -1
1729 echo $?/$^ERRNAME $res
1730 echo ' #2'
1731 vput vexpr res + 0 0
1732 echo $?/$^ERRNAME $res
1733 vput vexpr res + 0 1
1734 echo $?/$^ERRNAME $res
1735 vput vexpr res + 1 1
1736 echo $?/$^ERRNAME $res
1737 echo ' #3'
1738 vput vexpr res + 9223372036854775807 0
1739 echo $?/$^ERRNAME $res
1740 vput vexpr res + 9223372036854775807 1
1741 echo $?/$^ERRNAME $res
1742 vput vexpr res +@ 9223372036854775807 1
1743 echo $?/$^ERRNAME $res
1744 vput vexpr res + 0 9223372036854775807
1745 echo $?/$^ERRNAME $res
1746 vput vexpr res + 1 9223372036854775807
1747 echo $?/$^ERRNAME $res
1748 vput vexpr res +@ 1 9223372036854775807
1749 echo $?/$^ERRNAME $res
1750 echo ' #4'
1751 vput vexpr res + -9223372036854775808 0
1752 echo $?/$^ERRNAME $res
1753 vput vexpr res + -9223372036854775808 -1
1754 echo $?/$^ERRNAME $res
1755 vput vexpr res +@ -9223372036854775808 -1
1756 echo $?/$^ERRNAME $res
1757 vput vexpr res + 0 -9223372036854775808
1758 echo $?/$^ERRNAME $res
1759 vput vexpr res + -1 -9223372036854775808
1760 echo $?/$^ERRNAME $res
1761 vput vexpr res +@ -1 -9223372036854775808
1762 echo $?/$^ERRNAME $res
1763 echo ' #5'
1764 vput vexpr res - 0 0
1765 echo $?/$^ERRNAME $res
1766 vput vexpr res - 0 1
1767 echo $?/$^ERRNAME $res
1768 vput vexpr res - 1 1
1769 echo $?/$^ERRNAME $res
1770 echo ' #6'
1771 vput vexpr res - 9223372036854775807 0
1772 echo $?/$^ERRNAME $res
1773 vput vexpr res - 9223372036854775807 -1
1774 echo $?/$^ERRNAME $res
1775 vput vexpr res -@ 9223372036854775807 -1
1776 echo $?/$^ERRNAME $res
1777 vput vexpr res - 0 9223372036854775807
1778 echo $?/$^ERRNAME $res
1779 vput vexpr res - -1 9223372036854775807
1780 echo $?/$^ERRNAME $res
1781 vput vexpr res - -2 9223372036854775807
1782 echo $?/$^ERRNAME $res
1783 vput vexpr res -@ -2 9223372036854775807
1784 echo $?/$^ERRNAME $res
1785 echo ' #7'
1786 vput vexpr res - -9223372036854775808 +0
1787 echo $?/$^ERRNAME $res
1788 vput vexpr res - -9223372036854775808 +1
1789 echo $?/$^ERRNAME $res
1790 vput vexpr res -@ -9223372036854775808 +1
1791 echo $?/$^ERRNAME $res
1792 vput vexpr res - 0 -9223372036854775808
1793 echo $?/$^ERRNAME $res
1794 vput vexpr res - +1 -9223372036854775808
1795 echo $?/$^ERRNAME $res
1796 vput vexpr res -@ +1 -9223372036854775808
1797 echo $?/$^ERRNAME $res
1798 echo ' #8'
1799 vput vexpr res + -13 -2
1800 echo $?/$^ERRNAME $res
1801 vput vexpr res - 0 0
1802 echo $?/$^ERRNAME $res
1803 vput vexpr res - 0 1
1804 echo $?/$^ERRNAME $res
1805 vput vexpr res - 1 1
1806 echo $?/$^ERRNAME $res
1807 vput vexpr res - -13 -2
1808 echo $?/$^ERRNAME $res
1809 echo ' #9'
1810 vput vexpr res * 0 0
1811 echo $?/$^ERRNAME $res
1812 vput vexpr res * 0 1
1813 echo $?/$^ERRNAME $res
1814 vput vexpr res * 1 1
1815 echo $?/$^ERRNAME $res
1816 vput vexpr res * -13 -2
1817 echo $?/$^ERRNAME $res
1818 echo ' #10'
1819 vput vexpr res / 0 0
1820 echo $?/$^ERRNAME $res
1821 vput vexpr res / 0 1
1822 echo $?/$^ERRNAME $res
1823 vput vexpr res / 1 1
1824 echo $?/$^ERRNAME $res
1825 vput vexpr res / -13 -2
1826 echo $?/$^ERRNAME $res
1827 echo ' #11'
1828 vput vexpr res % 0 0
1829 echo $?/$^ERRNAME $res
1830 vput vexpr res % 0 1
1831 echo $?/$^ERRNAME $res
1832 vput vexpr res % 1 1
1833 echo $?/$^ERRNAME $res
1834 vput vexpr res % -13 -2
1835 echo $?/$^ERRNAME $res
1836 __EOT
1838 check behave:vexpr-numeric 0 "${MBOX}" '1723609217 1048'
1840 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" #2>/dev/null
1841 vput vexpr res find 'bananarama' 'nana'
1842 echo $?/$^ERRNAME :$res:
1843 vput vexpr res find 'bananarama' 'bana'
1844 echo $?/$^ERRNAME :$res:
1845 vput vexpr res find 'bananarama' 'Bana'
1846 echo $?/$^ERRNAME :$res:
1847 vput vexpr res find 'bananarama' 'rama'
1848 echo $?/$^ERRNAME :$res:
1849 echo ' #1'
1850 vput vexpr res ifind 'bananarama' 'nana'
1851 echo $?/$^ERRNAME :$res:
1852 vput vexpr res ifind 'bananarama' 'bana'
1853 echo $?/$^ERRNAME :$res:
1854 vput vexpr res ifind 'bananarama' 'Bana'
1855 echo $?/$^ERRNAME :$res:
1856 vput vexpr res ifind 'bananarama' 'rama'
1857 echo $?/$^ERRNAME :$res:
1858 echo ' #2'
1859 vput vexpr res substring 'bananarama' 1
1860 echo $?/$^ERRNAME :$res:
1861 vput vexpr res substring 'bananarama' 3
1862 echo $?/$^ERRNAME :$res:
1863 vput vexpr res substring 'bananarama' 5
1864 echo $?/$^ERRNAME :$res:
1865 vput vexpr res substring 'bananarama' 7
1866 echo $?/$^ERRNAME :$res:
1867 vput vexpr res substring 'bananarama' 9
1868 echo $?/$^ERRNAME :$res:
1869 vput vexpr res substring 'bananarama' 10
1870 echo $?/$^ERRNAME :$res:
1871 vput vexpr res substring 'bananarama' 1 3
1872 echo $?/$^ERRNAME :$res:
1873 vput vexpr res substring 'bananarama' 3 3
1874 echo $?/$^ERRNAME :$res:
1875 vput vexpr res substring 'bananarama' 5 3
1876 echo $?/$^ERRNAME :$res:
1877 vput vexpr res substring 'bananarama' 7 3
1878 echo $?/$^ERRNAME :$res:
1879 vput vexpr res substring 'bananarama' 9 3
1880 echo $?/$^ERRNAME :$res:
1881 vput vexpr res substring 'bananarama' 10 3
1882 echo $?/$^ERRNAME :$res:
1883 echo ' #3'
1884 vput vexpr res substring 'bananarama' -1
1885 echo $?/$^ERRNAME :$res:
1886 vput vexpr res substring 'bananarama' -3
1887 echo $?/$^ERRNAME :$res:
1888 vput vexpr res substring 'bananarama' -5
1889 echo $?/$^ERRNAME :$res:
1890 vput vexpr res substring 'bananarama' -7
1891 echo $?/$^ERRNAME :$res:
1892 vput vexpr res substring 'bananarama' -9
1893 echo $?/$^ERRNAME :$res:
1894 vput vexpr res substring 'bananarama' -10
1895 echo $?/$^ERRNAME :$res:
1896 vput vexpr res substring 'bananarama' 1 -3
1897 echo $?/$^ERRNAME :$res:
1898 vput vexpr res substring 'bananarama' 3 -3
1899 echo $?/$^ERRNAME :$res:
1900 vput vexpr res substring 'bananarama' 5 -3
1901 echo $?/$^ERRNAME :$res:
1902 vput vexpr res substring 'bananarama' 7 -3
1903 echo $?/$^ERRNAME :$res:
1904 vput vexpr res substring 'bananarama' 9 -3
1905 echo $?/$^ERRNAME :$res:
1906 vput vexpr res substring 'bananarama' 10 -3
1907 echo $?/$^ERRNAME :$res:
1908 echo ' #4'
1909 vput vexpr res trim 'Cocoon Cocoon'
1910 echo $?/$^ERRNAME :$res:
1911 vput vexpr res trim ' Cocoon Cocoon '
1912 echo $?/$^ERRNAME :$res:
1913 vput vexpr res trim-front 'Cocoon Cocoon'
1914 echo $?/$^ERRNAME :$res:
1915 vput vexpr res trim-front ' Cocoon Cocoon '
1916 echo $?/$^ERRNAME :$res:
1917 vput vexpr res trim-end 'Cocoon Cocoon'
1918 echo $?/$^ERRNAME :$res:
1919 vput vexpr res trim-end ' Cocoon Cocoon '
1920 echo $?/$^ERRNAME :$res:
1921 __EOT
1923 check behave:vexpr-string 0 "${MBOX}" '3182004322 601'
1925 if have_feat regex; then
1926 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" #2>/dev/null
1927 vput vexpr res regex 'bananarama' 'nana'
1928 echo $?/$^ERRNAME :$res:
1929 vput vexpr res regex 'bananarama' 'bana'
1930 echo $?/$^ERRNAME :$res:
1931 vput vexpr res regex 'bananarama' 'Bana'
1932 echo $?/$^ERRNAME :$res:
1933 vput vexpr res regex 'bananarama' 'rama'
1934 echo $?/$^ERRNAME :$res:
1935 echo ' #1'
1936 vput vexpr res iregex 'bananarama' 'nana'
1937 echo $?/$^ERRNAME :$res:
1938 vput vexpr res iregex 'bananarama' 'bana'
1939 echo $?/$^ERRNAME :$res:
1940 vput vexpr res iregex 'bananarama' 'Bana'
1941 echo $?/$^ERRNAME :$res:
1942 vput vexpr res iregex 'bananarama' 'rama'
1943 echo $?/$^ERRNAME :$res:
1944 echo ' #2'
1945 vput vexpr res regex 'bananarama' '(.*)nana(.*)' '\${1}a\${0}u{\$2}'
1946 echo $?/$^ERRNAME :$res:
1947 vput vexpr res regex 'bananarama' '(.*)bana(.*)' '\${1}a\${0}u\$2'
1948 echo $?/$^ERRNAME :$res:
1949 vput vexpr res regex 'bananarama' 'Bana(.+)' '\$1\$0'
1950 echo $?/$^ERRNAME :$res:
1951 vput vexpr res regex 'bananarama' '(.+)rama' '\$1\$0'
1952 echo $?/$^ERRNAME :$res:
1953 echo ' #3'
1954 vput vexpr res iregex 'bananarama' '(.*)nana(.*)' '\${1}a\${0}u{\$2}'
1955 echo $?/$^ERRNAME :$res:
1956 vput vexpr res iregex 'bananarama' '(.*)bana(.*)' '\${1}a\${0}u\$2'
1957 echo $?/$^ERRNAME :$res:
1958 vput vexpr res iregex 'bananarama' 'Bana(.+)' '\$1\$0'
1959 echo $?/$^ERRNAME :$res:
1960 vput vexpr res iregex 'bananarama' '(.+)rama' '\$1\$0'
1961 echo $?/$^ERRNAME :$res:
1962 echo ' #4'
1963 __EOT
1965 check behave:vexpr-regex 0 "${MBOX}" '3270360157 311'
1966 else
1967 printf 'behave:vexpr-regex: unsupported, skipped\n'
1970 t_epilog
1973 t_behave_call_ret() {
1974 t_prolog t_behave_call_ret
1976 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} -Snomemdebug > "${MBOX}" 2>&1
1977 define w1 {
1978 echon ">$1 "
1979 vput vexpr i + $1 1
1980 if [ $i -le 42 ]
1981 vput vexpr j '&' $i 7
1982 if [ $j -eq 7 ]
1983 echo .
1985 call w1 $i
1986 wysh set i=$? k=$!
1987 vput vexpr j '&' $i 7
1988 echon "<$1/$i/$k "
1989 if [ $j -eq 7 ]
1990 echo .
1992 else
1993 echo ! The end for $1
1995 return $1
1997 # Transport $?/$! up the call chain
1998 define w2 {
1999 echon ">$1 "
2000 vput vexpr i + $1 1
2001 if [ $1 -lt 42 ]
2002 call w2 $i
2003 wysh set i=$? j=$! k=$^ERRNAME
2004 echon "<$1/$i/$k "
2005 return $i $j
2006 else
2007 echo ! The end for $1
2008 return $i $^ERR-BUSY
2010 echoerr au
2012 # Up and down it goes
2013 define w3 {
2014 echon ">$1/$2 "
2015 vput vexpr i + $1 1
2016 if [ $1 -lt 42 ]
2017 call w3 $i $2
2018 wysh set i=$? j=$!
2019 vput vexpr k - $1 $2
2020 if [ $k -eq 21 ]
2021 vput vexpr i + $1 1
2022 vput vexpr j + $2 1
2023 echo "# <$i/$j> .. "
2024 call w3 $i $j
2025 wysh set i=$? j=$!
2027 eval echon "<\$1=\$i/\$^ERRNAME-$j "
2028 return $i $j
2029 else
2030 echo ! The end for $1=$i/$2
2031 if [ "$2" != "" ]
2032 return $i $^ERR-DOM
2033 else
2034 return $i $^ERR-BUSY
2037 echoerr au
2040 call w1 0; echo ?=$? !=$!; echo -----;
2041 call w2 0; echo ?=$? !=$^ERRNAME; echo -----;
2042 call w3 0 1; echo ?=$? !=$^ERRNAME; echo -----;
2043 __EOT
2045 check behave:call_ret 0 "${MBOX}" '1572045517 5922'
2047 t_epilog
2050 t_behave_xcall() {
2051 t_prolog t_behave_xcall
2053 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} -Snomemdebug > "${MBOX}" 2>&1
2054 define work {
2055 echon "$1 "
2056 vput vexpr i + $1 1
2057 if [ $i -le 1111 ]
2058 vput vexpr j '&' $i 7
2059 if [ $j -eq 7 ]
2060 echo .
2062 \xcall work $i $2
2064 echo ! The end for $1/$2
2065 if [ "$2" != "" ]
2066 return $i $^ERR-BUSY
2069 define xwork {
2070 \xcall work 0 $2
2072 call work 0
2073 echo ?=$? !=$!
2074 call xwork
2075 echo ?=$? !=$!
2076 xcall xwork
2077 echo ?=$? !=$^ERRNAME
2079 call work 0 yes
2080 echo ?=$? !=$^ERRNAME
2081 call xwork 0 yes
2082 echo ?=$? !=$^ERRNAME
2083 __EOT
2085 check behave:xcall-1 0 "${MBOX}" '2401702082 23801'
2089 ${cat} <<- '__EOT' > "${BODY}"
2090 define __w {
2091 echon "$1 "
2092 vput vexpr i + $1 1
2093 if [ $i -le 111 ]
2094 vput vexpr j '&' $i 7
2095 if [ $j -eq 7 ]
2096 echo .
2098 \xcall __w $i $2
2100 echo ! The end for $1
2101 if [ $2 -eq 0 ]
2102 nonexistingcommand
2103 echo would be err with errexit
2104 return
2106 echo calling exit
2107 exit
2109 define work {
2110 echo eins
2111 call __w 0 0
2112 echo zwei, ?=$? !=$!
2113 localopts yes; set errexit
2114 ignerr call __w 0 0
2115 echo drei, ?=$? !=$^ERRNAME
2116 call __w 0 $1
2117 echo vier, ?=$? !=$^ERRNAME, this is an error
2119 ignerr call work 0
2120 echo outer 1, ?=$? !=$^ERRNAME
2121 xxxign call work 0
2122 echo outer 2, ?=$? !=$^ERRNAME, could be error if xxxign non-empty
2123 call work 1
2124 echo outer 3, ?=$? !=$^ERRNAME
2125 echo this is definitely an error
2126 __EOT
2128 < "${BODY}" ${MAILX} ${ARGS} -X'commandalias xxxign ignerr' -Snomemdebug \
2129 > "${MBOX}" 2>&1
2130 check behave:xcall-2 0 "${MBOX}" '3900716531 4200'
2132 < "${BODY}" ${MAILX} ${ARGS} -X'commandalias xxxign " "' -Snomemdebug \
2133 > "${MBOX}" 2>&1
2134 check behave:xcall-3 1 "${MBOX}" '1006776201 2799'
2136 t_epilog
2139 t_behave_vpospar() {
2140 t_prolog t_behave_vpospar
2142 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>&1
2143 vpospar set hey, "'you ", world!
2144 echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2145 vput vpospar x quote; echo x<$x>
2146 vpospar clear;echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2147 vput vpospar y quote;echo y<$y>
2148 eval vpospar set ${x};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2149 eval vpospar set ${y};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2150 eval vpospar set ${x};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2152 define infun2 {
2153 echo infun2:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
2154 vput vpospar z quote;echo infun2:z<$z>
2157 define infun {
2158 echo infun:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
2159 vput vpospar y quote;echo infun:y<$y>
2160 eval vpospar set ${x};echo infun:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
2161 vpospar clear;echo infun:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
2162 eval call infun2 $x
2163 echo infun:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
2164 eval vpospar set ${y};echo infun:$?/$^ERRNAME/$#:$*/"$@"/<$1><$2><$3><$4>
2167 call infun This "in a" fun
2168 echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2169 vpospar clear;echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2170 __EOT
2171 check behave:vpospar-1 0 "${MBOX}" '155175639 866'
2174 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>&1
2175 set ifs=\'
2176 echo ifs<$ifs> ifs-ws<$ifs-ws>
2177 vpospar set hey, "'you ", world!
2178 echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2179 vput vpospar x quote; echo x<$x>
2180 vpospar clear;echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2181 eval vpospar set ${x};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2183 set ifs=,
2184 echo ifs<$ifs> ifs-ws<$ifs-ws>
2185 vpospar set hey, "'you ", world!
2186 echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2187 vput vpospar x quote; echo x<$x>
2188 vpospar clear;echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2189 eval vpospar set ${x};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2191 wysh set ifs=$',\t'
2192 echo ifs<$ifs> ifs-ws<$ifs-ws>
2193 vpospar set hey, "'you ", world!
2194 echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2195 vput vpospar x quote; echo x<$x>
2196 vpospar clear;echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2197 eval vpospar set ${x};echo $?/$^ERRNAME/$#: $* / "$@" / <$1><$2><$3><$4>
2198 __EOT
2199 check behave:vpospar-ifs 0 "${MBOX}" '2015927702 706'
2201 t_epilog
2204 t_behave_atxplode() {
2205 t_prolog t_behave_atxplode
2206 TRAP_EXIT_ADDONS="./.t*"
2208 ${cat} > ./.t.sh <<- '___'; ${cat} > ./.t.rc <<- '___'
2209 x() { echo $#; }
2210 xxx() {
2211 printf " (1/$#: <$1>)"
2212 shift
2213 if [ $# -gt 0 ]; then
2214 xxx "$@"
2215 else
2216 echo
2219 yyy() {
2220 eval "$@ ' ball"
2222 set --
2223 x "$@"
2224 x "$@"''
2225 x " $@"
2226 x "$@ "
2227 printf yyy;yyy 'xxx' "b\$'\t'u ' "
2228 printf xxx;xxx arg ,b u.
2229 printf xxx;xxx arg , .
2230 printf xxx;xxx arg ,ball.
2232 define x {
2233 echo $#
2235 define xxx {
2236 echon " (1/$#: <$1>)"
2237 shift
2238 if [ $# -gt 0 ]
2239 \xcall xxx "$@"
2240 endif
2241 echo
2243 define yyy {
2244 eval "$@ ' ball"
2246 vpospar set
2247 call x "$@"
2248 call x "$@"''
2249 call x " $@"
2250 call x "$@ "
2251 echon yyy;call yyy '\call xxx' "b\$'\t'u ' "
2252 echon xxx;call xxx arg ,b u.
2253 echon xxx;call xxx arg , .
2254 echon xxx;call xxx arg ,ball.
2257 ${MAILX} ${ARGS} -X'source ./.t.rc' -Xx > "${MBOX}" 2>&1
2258 check behave:atxplode-1 0 "${MBOX}" '41566293 164'
2260 #${SHELL} ./.t.sh > ./.tshout 2>&1
2261 #check behave:atxplode:disproof-1 0 ./.tshout '41566293 164'
2263 t_epilog
2266 t_behave_read() {
2267 t_prolog t_behave_read
2268 TRAP_EXIT_ADDONS="./.t*"
2270 ${cat} <<- '__EOT' > .tin
2271 hey1, "'you ", world!
2272 hey2, "'you ", bugs bunny!
2273 hey3, "'you ",
2274 hey4, "'you "
2275 __EOT
2277 ${cat} <<- '__EOT' |\
2278 ${MAILX} ${ARGS} -X'readctl create ./.tin' > "${MBOX}" 2>&1
2279 read a b c
2280 echo $?/$^ERRNAME / <$a><$b><$c>
2281 read a b c
2282 echo $?/$^ERRNAME / <$a><$b><$c>
2283 read a b c
2284 echo $?/$^ERRNAME / <$a><$b><$c>
2285 read a b c
2286 echo $?/$^ERRNAME / <$a><$b><$c>
2287 unset a b c;read a b c
2288 echo $?/$^ERRNAME / <$a><$b><$c>
2289 readctl remove ./.tin;echo readctl remove:$?/$^ERRNAME
2290 __EOT
2291 check behave:read-1 0 "${MBOX}" '1527910147 173'
2293 ${cat} <<- '__EOT' > .tin2
2294 hey2.0,:"'you ",:world!:mars.:
2295 hey2.1,:"'you ",:world!
2296 hey2.2,:"'you ",:bugs bunny!
2297 hey2.3,:"'you ",:
2298 hey2.4,:"'you ":
2300 __EOT
2302 ${cat} <<- '__EOT' |\
2303 6< .tin2 ${MAILX} ${ARGS} -X 'readctl create 6' > "${MBOX}" 2>&1
2304 set ifs=:
2305 read a b c
2306 echo $?/$^ERRNAME / <$a><$b><$c>
2307 read a b c
2308 echo $?/$^ERRNAME / <$a><$b><$c>
2309 read a b c
2310 echo $?/$^ERRNAME / <$a><$b><$c>
2311 read a b c
2312 echo $?/$^ERRNAME / <$a><$b><$c>
2313 read a b c
2314 echo $?/$^ERRNAME / <$a><$b><$c>
2315 read a b c
2316 echo $?/$^ERRNAME / <$a><$b><$c>
2317 unset a b c;read a b c
2318 echo $?/$^ERRNAME / <$a><$b><$c>
2319 read a b c
2320 echo $?/$^ERRNAME / <$a><$b><$c>
2321 readctl remove 6;echo readctl remove:$?/$^ERRNAME
2322 __EOT
2323 check behave:read-ifs 0 "${MBOX}" '890153490 298'
2325 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} > "${MBOX}" 2>&1
2326 readctl create .tin
2327 readall d; echo $?/$^ERRNAME / <$d>
2328 wysh set d;readall d;echo $?/$^ERRNAME / <$d>
2329 readctl create .tin2
2330 readall d; echo $?/$^ERRNAME / <$d>
2331 wysh set d;readall d;echo $?/$^ERRNAME / <$d>
2332 readctl remove .tin;echo $?/$^ERRNAME;\
2333 readctl remove .tin2;echo $?/$^ERRNAME
2334 __EOT
2335 check behave:readall 0 "${MBOX}" '860434889 333'
2337 t_epilog
2340 t_behave_mbox() {
2341 t_prolog t_behave_mbox
2342 TRAP_EXIT_ADDONS="./.t*"
2346 while [ ${i} -lt 112 ]; do
2347 printf 'm file://%s\n~s Subject %s\nHello %s!\n~.\n' \
2348 "${MBOX}" "${i}" "${i}"
2349 i=`add ${i} 1`
2350 done
2351 ) | ${MAILX} ${ARGS}
2352 check behave:mbox-1 0 "${MBOX}" '1140119864 13780'
2354 printf 'File "%s"\ncopy * "%s"\nFile "%s"\nfrom*' "${MBOX}" .tmbox1 .tmbox1 |
2355 ${MAILX} ${ARGS} > .tlst
2356 check behave:mbox-2 0 .tlst '2739893312 9103'
2358 printf 'File "%s"\ncopy * "file://%s"\nFile "file://%s"\nfrom*' \
2359 "${MBOX}" .tmbox2 .tmbox2 | ${MAILX} ${ARGS} > .tlst
2360 check behave:mbox-3 0 .tlst '1702194178 9110'
2362 # only the odd (even)
2364 printf 'File "file://%s"\ncopy ' .tmbox2
2366 while [ ${i} -lt 112 ]; do
2367 j=`modulo ${i} 2`
2368 [ ${j} -eq 1 ] && printf '%s ' "${i}"
2369 i=`add ${i} 1`
2370 done
2371 printf 'file://%s\nFile "file://%s"\nfrom*' .tmbox3 .tmbox3
2372 ) | ${MAILX} ${ARGS} > .tlst
2373 check behave:mbox-4 0 .tmbox3 '631132924 6890'
2374 check behave:mbox-5 - .tlst '2960975049 4573'
2375 # ...
2377 printf 'file "file://%s"\nmove ' .tmbox2
2379 while [ ${i} -lt 112 ]; do
2380 j=`modulo ${i} 2`
2381 [ ${j} -eq 0 ] && [ ${i} -ne 0 ] && printf '%s ' "${i}"
2382 i=`add ${i} 1`
2383 done
2384 printf 'file://%s\nFile "file://%s"\nfrom*\nFile "file://%s"\nfrom*' \
2385 .tmbox3 .tmbox3 .tmbox2
2386 ) | ${MAILX} ${ARGS} > .tlst
2387 check behave:mbox-6 0 .tmbox3 '1387070539 13655'
2388 ${sed} 2d < .tlst > .tlstx
2389 check behave:mbox-7 - .tlstx '2729940494 13645'
2391 t_epilog
2394 t_behave_alternates() {
2395 t_prolog t_behave_alternates
2396 TRAP_EXIT_ADDONS="./.t*"
2398 ${cat} <<-_EOT > ./.tsendmail.sh
2399 #!${SHELL} -
2400 (echo 'From Valeriana Sat Jul 08 15:54:03 2017' && ${cat} && echo
2401 ) >> "${MBOX}"
2402 _EOT
2403 chmod 0755 ./.tsendmail.sh
2405 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} -Smta=./.tsendmail.sh > ./.tall 2>&1
2406 echo --0
2407 alternates
2408 echo $?/$^ERRNAME
2409 alternates a1@b1 a2@b2 a3@b3
2410 echo $?/$^ERRNAME
2411 alternates
2412 echo $?/$^ERRNAME
2413 vput alternates rv
2414 echo $?/$^ERRNAME <$rv>
2416 echo --1
2417 unalternates a2@b2
2418 vput alternates rv
2419 echo $?/$^ERRNAME <$rv>
2420 unalternates a3@b3
2421 vput alternates rv
2422 echo $?/$^ERRNAME <$rv>
2423 unalternates a1@b1
2424 vput alternates rv
2425 echo $?/$^ERRNAME <$rv>
2427 echo --2
2428 unalternates *
2429 alternates a1@b1 a2@b2 a3@b3
2430 unalternates a3@b3
2431 vput alternates rv
2432 echo $?/$^ERRNAME <$rv>
2433 unalternates a2@b2
2434 vput alternates rv
2435 echo $?/$^ERRNAME <$rv>
2436 unalternates a1@b1
2437 vput alternates rv
2438 echo $?/$^ERRNAME <$rv>
2440 echo --3
2441 alternates a1@b1 a2@b2 a3@b3
2442 unalternates a1@b1
2443 vput alternates rv
2444 echo $?/$^ERRNAME <$rv>
2445 unalternates a2@b2
2446 vput alternates rv
2447 echo $?/$^ERRNAME <$rv>
2448 unalternates a3@b3
2449 vput alternates rv
2450 echo $?/$^ERRNAME <$rv>
2452 echo --4
2453 unalternates *
2454 alternates a1@b1 a2@b2 a3@b3
2455 unalternates *
2456 vput alternates rv
2457 echo $?/$^ERRNAME <$rv>
2459 echo --5
2460 unalternates *
2461 alternates a1@b1 a1@c1 a1@d1 a2@b2 a3@b3 a3@c3 a3@d3
2462 m a1@b1 a1@c1 a1@d1
2463 ~s all alternates, only a1@b1 remains
2464 ~c a2@b2
2465 ~b a3@b3 a3@c3 a3@d3
2466 ~r - '_EOT'
2467 This body is!
2468 This also body is!!
2469 _EOT
2472 echo --6
2473 unalternates *
2474 alternates a1@b1 a1@c1 a2@b2 a3@b3
2475 m a1@b1 a1@c1 a1@d1
2476 ~s a1@b1 a1@d1, and a3@c3 a3@d3 remain
2477 ~c a2@b2
2478 ~b a3@b3 a3@c3 a3@d3
2479 ~r - '_EOT'
2480 This body2 is!
2481 _EOT
2484 echo --7
2485 alternates a1@b1 a2@b2 a3; set allnet
2486 m a1@b1 a1@c1 a1@d1
2487 ~s all alternates via allnet, only a1@b1 remains
2488 ~c a2@b2
2489 ~b a3@b3 a3@c3 a3@d3
2490 ~r - '_EOT'
2491 This body3 is!
2492 _EOT
2495 echo --10
2496 unalternates *
2497 alternates a1@b1
2498 echo $?/$^ERRNAME
2499 vput alternates rv
2500 echo $?/$^ERRNAME <$rv>
2501 alternates a2@b2
2502 echo $?/$^ERRNAME
2503 vput alternates rv
2504 echo $?/$^ERRNAME <$rv>
2505 alternates a3@b3
2506 echo $?/$^ERRNAME
2507 vput alternates rv
2508 echo $?/$^ERRNAME <$rv>
2509 alternates a4@b4
2510 echo $?/$^ERRNAME
2511 vput alternates rv
2512 echo $?/$^ERRNAME <$rv>
2514 unalternates *
2515 vput alternates rv
2516 echo $?/$^ERRNAME <$rv>
2518 echo --11
2519 set posix
2520 alternates a1@b1 a2@b2
2521 echo $?/$^ERRNAME
2522 vput alternates rv
2523 echo $?/$^ERRNAME <$rv>
2524 alternates a3@b3 a4@b4
2525 echo $?/$^ERRNAME
2526 vput alternates rv
2527 echo $?/$^ERRNAME <$rv>
2528 __EOT
2529 check behave:alternates-1 0 "${MBOX}" '142184864 515'
2530 check behave:alternates-2 - .tall '1878598364 505'
2532 t_epilog
2535 t_behave_alias() {
2536 t_prolog t_behave_alias
2537 TRAP_EXIT_ADDONS="./.t*"
2539 ${cat} <<-_EOT > ./.tsendmail.sh
2540 #!${SHELL} -
2541 (echo 'From Hippocastanum Mon Jun 19 15:07:07 2017' && ${cat} && echo
2542 ) >> "${MBOX}"
2543 _EOT
2544 chmod 0755 ./.tsendmail.sh
2546 ${cat} <<- '__EOT' | ${MAILX} ${ARGS} -Smta=./.tsendmail.sh > ./.tall 2>&1
2547 alias a1 ex1@a1.ple
2548 alias a1 ex2@a1.ple "EX3 <ex3@a1.ple>"
2549 alias a1 ex4@a1.ple
2550 alias a2 ex1@a2.ple ex2@a2.ple ex3@a2.ple ex4@a2.ple
2551 alias a3 a4
2552 alias a4 a5 ex1@a4.ple
2553 alias a5 a6
2554 alias a6 a7 ex1@a6.ple
2555 alias a7 a8
2556 alias a8 ex1@a8.ple
2557 alias a1
2558 alias a2
2559 alias a3
2560 m a1
2561 ~c a2
2562 ~b a3
2563 ~r - '_EOT'
2564 This body is!
2565 This also body is!!
2566 _EOT
2567 __EOT
2568 check behave:alias-1 0 "${MBOX}" '2496925843 272'
2569 check behave:alias-2 - .tall '3548953204 152'
2571 # TODO t_behave_alias: n_ALIAS_MAXEXP is compile-time constant,
2572 # TODO need to somehow provide its contents to the test, then test
2574 t_epilog
2577 t_behave_filetype() {
2578 t_prolog t_behave_filetype
2579 TRAP_EXIT_ADDONS="./.t*"
2581 ${cat} <<-_EOT > ./.tsendmail.sh
2582 #!${SHELL} -
2583 (echo 'From Alchemilla Wed Apr 25 15:12:13 2017' && ${cat} && echo
2584 ) >> "${MBOX}"
2585 _EOT
2586 chmod 0755 ./.tsendmail.sh
2588 printf 'm m1@e.t\nL1\nHy1\n~.\nm m2@e.t\nL2\nHy2\n~@ %s\n~.\n' \
2589 "${SRCDIR}snailmail.jpg" | ${MAILX} ${ARGS} -Smta=./.tsendmail.sh
2590 check behave:filetype-1 0 "${MBOX}" '1594682963 13520'
2592 if (echo | gzip -c) >/dev/null 2>&1; then
2593 ${rm} -f ./.t.mbox*
2595 printf 'File "%s"\ncopy 1 ./.t.mbox.gz\ncopy 2 ./.t.mbox.gz' \
2596 "${MBOX}" | ${MAILX} ${ARGS} \
2597 -X'filetype gz gzip\ -dc gzip\ -c'
2598 printf 'File ./.t.mbox.gz\ncopy * ./.t.mbox\n' |
2599 ${MAILX} ${ARGS} -X'filetype gz gzip\ -dc gzip\ -c'
2600 } > ./.t.out 2>&1
2601 check behave:filetype-2 - "./.t.mbox" '1594682963 13520'
2602 check behave:filetype-3 - "./.t.out" '2494681730 102'
2603 else
2604 echo 'behave:filetype-2: unsupported, skipped'
2605 echo 'behave:filetype-3: unsupported, skipped'
2609 ${rm} -f ./.t.mbox*
2610 printf 'File "%s"\ncopy 1 ./.t.mbox.gz
2611 copy 2 ./.t.mbox.gz
2612 copy 1 ./.t.mbox.gz
2613 copy 2 ./.t.mbox.gz
2614 ' "${MBOX}" |
2615 ${MAILX} ${ARGS} \
2616 -X'filetype gz gzip\ -dc gzip\ -c' \
2617 -X'filetype mbox.gz "${sed} 1,3d|${cat}" \
2618 "echo eins;echo zwei;echo und mit ${sed} bist Du dabei;${cat}"'
2619 printf 'File ./.t.mbox.gz\ncopy * ./.t.mbox\n' |
2620 ${MAILX} ${ARGS} \
2621 -X'filetype gz gzip\ -dc gzip\ -c' \
2622 -X'filetype mbox.gz "${sed} 1,3d|${cat}" kill\ 0'
2623 } > ./.t.out 2>&1
2624 check behave:filetype-4 - "./.t.mbox" '2886541147 27060'
2625 check behave:filetype-5 - "./.t.out" '838452520 172'
2627 t_epilog
2630 t_behave_record_a_resend() {
2631 t_prolog t_behave_record_a_resend
2632 TRAP_EXIT_ADDONS="./.t.record ./.t.resent"
2634 printf '
2635 set record=%s
2636 m %s\n~s Subject 1.\nHello.\n~.
2637 set record-files add-file-recipients
2638 m %s\n~s Subject 2.\nHello.\n~.
2639 File %s
2640 resend 2 ./.t.resent
2641 Resend 1 ./.t.resent
2642 set record-resent
2643 resend 2 ./.t.resent
2644 Resend 1 ./.t.resent
2645 ' ./.t.record "${MBOX}" "${MBOX}" "${MBOX}" |
2646 ${MAILX} ${ARGS}
2648 check behave:record_a_resend-1 0 "${MBOX}" '3057873538 256'
2649 check behave:record_a_resend-2 - .t.record '391356429 460'
2650 check behave:record_a_resend-3 - .t.resent '2685231691 648'
2652 t_epilog
2655 t_behave_e_H_L_opts() {
2656 t_prolog t_behave_e_H_L_opts
2657 TRAP_EXIT_ADDONS="./.tsendmail.sh ./.t.mbox"
2659 touch ./.t.mbox
2660 ${MAILX} ${ARGS} -ef ./.t.mbox
2661 echo ${?} > "${MBOX}"
2663 ${cat} <<-_EOT > ./.tsendmail.sh
2664 #!${SHELL} -
2665 (echo 'From Alchemilla Wed Apr 07 17:03:33 2017' && ${cat} && echo
2666 ) >> "./.t.mbox"
2667 _EOT
2668 chmod 0755 ./.tsendmail.sh
2669 printf 'm me@exam.ple\nLine 1.\nHello.\n~.\n' |
2670 ${MAILX} ${ARGS} -Smta=./.tsendmail.sh
2671 printf 'm you@exam.ple\nLine 1.\nBye.\n~.\n' |
2672 ${MAILX} ${ARGS} -Smta=./.tsendmail.sh
2674 ${MAILX} ${ARGS} -ef ./.t.mbox
2675 echo ${?} >> "${MBOX}"
2676 ${MAILX} ${ARGS} -efL @t@me ./.t.mbox
2677 echo ${?} >> "${MBOX}"
2678 ${MAILX} ${ARGS} -efL @t@you ./.t.mbox
2679 echo ${?} >> "${MBOX}"
2680 ${MAILX} ${ARGS} -efL '@>@Line 1' ./.t.mbox
2681 echo ${?} >> "${MBOX}"
2682 ${MAILX} ${ARGS} -efL '@>@Hello.' ./.t.mbox
2683 echo ${?} >> "${MBOX}"
2684 ${MAILX} ${ARGS} -efL '@>@Bye.' ./.t.mbox
2685 echo ${?} >> "${MBOX}"
2686 ${MAILX} ${ARGS} -efL '@>@Good bye.' ./.t.mbox
2687 echo ${?} >> "${MBOX}"
2689 ${MAILX} ${ARGS} -fH ./.t.mbox >> "${MBOX}"
2690 echo ${?} >> "${MBOX}"
2691 ${MAILX} ${ARGS} -fL @t@me ./.t.mbox >> "${MBOX}"
2692 echo ${?} >> "${MBOX}"
2693 ${MAILX} ${ARGS} -fL @t@you ./.t.mbox >> "${MBOX}"
2694 echo ${?} >> "${MBOX}"
2695 ${MAILX} ${ARGS} -fL '@>@Line 1' ./.t.mbox >> "${MBOX}"
2696 echo ${?} >> "${MBOX}"
2697 ${MAILX} ${ARGS} -fL '@>@Hello.' ./.t.mbox >> "${MBOX}"
2698 echo ${?} >> "${MBOX}"
2699 ${MAILX} ${ARGS} -fL '@>@Bye.' ./.t.mbox >> "${MBOX}"
2700 echo ${?} >> "${MBOX}"
2701 ${MAILX} ${ARGS} -fL '@>@Good bye.' ./.t.mbox >> "${MBOX}" 2>/dev/null
2702 echo ${?} >> "${MBOX}"
2704 check behave:e_H_L_opts - "${MBOX}" '1708955574 678'
2706 t_epilog
2709 t_behave_compose_hooks() { # TODO monster
2710 t_prolog t_behave_compose_hooks
2711 TRAP_EXIT_ADDONS="./.t*"
2713 (echo line one&&echo line two&&echo line three) > ./.treadctl
2714 (echo echo four&&echo echo five&&echo echo six) > ./.tattach
2716 ${cat} <<-_EOT > ./.tsendmail.sh
2717 #!${SHELL} -
2718 (echo 'From PrimulaVeris Wed Apr 10 22:59:00 2017' && ${cat} && echo
2719 ) >> "${MBOX}"
2720 _EOT
2721 chmod 0755 ./.tsendmail.sh
2723 ${cat} <<'__EOT__' > ./.trc
2724 define bail {
2725 echoerr "Failed: $1. Bailing out"; echo "~x"; xit
2727 define xerr {
2728 vput vexpr es substr "$1" 0 1
2729 if [ "$es" != 2 ]
2730 xcall bail "$2"
2733 define read_mline_res {
2734 read hl; wysh set len=$? es=$! en=$^ERRNAME;\
2735 echo $len/$es/$^ERRNAME: $hl
2736 if [ $es -ne $^ERR-NONE ]
2737 xcall bail read_mline_res
2738 elif [ $len -ne 0 ]
2739 \xcall read_mline_res
2742 define ins_addr {
2743 wysh set xh=$1
2744 echo "~^header list"; read hl; echo $hl;\
2745 call xerr "$hl" "in_addr ($xh) 0-1"
2747 echo "~^header insert $xh diet <$xh@exam.ple> spliced";\
2748 read es; echo $es; call xerr "$es" "ins_addr $xh 1-1"
2749 echo "~^header insert $xh <${xh}2@exam.ple>";\
2750 read es; echo $es; call xerr "$es" "ins_addr $xh 1-2"
2751 echo "~^header insert $xh ${xh}3@exam.ple";\
2752 read es; echo $es; call xerr "$es" "ins_addr $xh 1-3"
2753 echo "~^header list $xh"; read hl; echo $hl;\
2754 call xerr "$hl" "ins_addr $xh 1-4"
2755 echo "~^header show $xh"; read es; call xerr $es "ins_addr $xh 1-5"
2756 call read_mline_res
2758 if [ "$t_remove" == "" ]
2759 return
2762 echo "~^header remove $xh"; read es; call xerr $es "ins_addr $xh 2-1"
2763 echo "~^header remove $xh"; read es; vput vexpr es substr $es 0 3
2764 if [ $es != 501 ]
2765 xcall bail "ins_addr $xh 2-2"
2767 echo "~^header list $xh"; read es; vput vexpr es substr $es 0 3
2768 if [ $es != 501 ]
2769 xcall bail "ins_addr $xh 2-3"
2771 echo "~^header show $xh"; read es; vput vexpr es substr $es 0 3
2772 if [ $es != 501 ]
2773 xcall bail "ins_addr $xh 2-4"
2777 echo "~^header insert $xh diet <$xh@exam.ple> spliced";\
2778 read es; echo $es; call xerr "$es" "ins_addr $xh 3-1"
2779 echo "~^header insert $xh <${xh}2@exam.ple>";\
2780 read es; echo $es; call xerr "$es" "ins_addr $xh 3-2"
2781 echo "~^header insert $xh ${xh}3@exam.ple";\
2782 read es; echo $es; call xerr "$es" "ins_addr $xh 3-3"
2783 echo "~^header list $xh"; read hl; echo $hl;\
2784 call xerr "$hl" "ins_addr $xh 3-4"
2785 echo "~^header show $xh"; read es; call xerr $es "ins_addr $xh 3-5"
2786 call read_mline_res
2788 echo "~^header remove-at $xh 1"; read es;\
2789 call xerr $es "ins_addr $xh 3-6"
2790 echo "~^header remove-at $xh 1"; read es;\
2791 call xerr $es "ins_addr $xh 3-7"
2792 echo "~^header remove-at $xh 1"; read es;\
2793 call xerr $es "ins_addr $xh 3-8"
2794 echo "~^header remove-at $xh 1"; read es;\
2795 vput vexpr es substr $es 0 3
2796 if [ $es != 501 ]
2797 xcall bail "ins_addr $xh 3-9"
2799 echo "~^header remove-at $xh T"; read es;\
2800 vput vexpr es substr $es 0 3
2801 if [ $es != 505 ]
2802 xcall bail "ins_addr $xh 3-10"
2804 echo "~^header list $xh"; read es;\
2805 vput vexpr es substr $es 0 3
2806 if [ $es != 501 ]
2807 xcall bail "ins_addr $xh 3-11"
2809 echo "~^header show $xh"; read es;\
2810 vput vexpr es substr $es 0 3
2811 if [ $es != 501 ]
2812 xcall bail "ins_addr $xh 3-12"
2816 echo "~^header insert $xh diet <$xh@exam.ple> spliced";\
2817 read es; echo $es; call xerr "$es" "ins_addr $xh 4-1"
2818 echo "~^header insert $xh <${xh}2@exam.ple> (comment) \"Quot(e)d\"";\
2819 read es; echo $es; call xerr "$es" "ins_addr $xh 4-2"
2820 echo "~^header insert $xh ${xh}3@exam.ple";\
2821 read es; echo $es; call xerr "$es" "ins_addr $xh 4-3"
2822 echo "~^header list $xh"; read hl; echo $hl;\
2823 call xerr "$hl" "header list $xh 3-4"
2824 echo "~^header show $xh"; read es; call xerr $es "ins_addr $xh 4-5"
2825 call read_mline_res
2827 echo "~^header remove-at $xh 3"; read es;\
2828 call xerr $es "ins_addr $xh 4-6"
2829 echo "~^header remove-at $xh 2"; read es;\
2830 call xerr $es "ins_addr $xh 4-7"
2831 echo "~^header remove-at $xh 1"; read es;\
2832 call xerr $es "ins_addr $xh 4-8"
2833 echo "~^header remove-at $xh 1"; read es;\
2834 vput vexpr es substr $es 0 3
2835 if [ $es != 501 ]
2836 xcall bail "ins_addr $xh 4-9"
2838 echo "~^header remove-at $xh T"; read es;\
2839 vput vexpr es substr $es 0 3
2840 if [ $es != 505 ]
2841 xcall bail "ins_addr $xh 4-10"
2843 echo "~^header list $xh"; read es;\
2844 vput vexpr es substr $es 0 3
2845 if [ $es != 501 ]
2846 xcall bail "ins_addr $xh 4-11"
2848 echo "~^header show $xh"; read es;\
2849 vput vexpr es substr $es 0 3
2850 if [ $es != 501 ]
2851 xcall bail "ins_addr $xh 4-12"
2854 define ins_ref {
2855 wysh set xh=$1 mult=$2
2856 echo "~^header list"; read hl; echo $hl;\
2857 call xerr "$hl" "ins_ref ($xh) 0-1"
2859 echo "~^header insert $xh <$xh@exam.ple>";\
2860 read es; echo $es; call xerr "$es" "ins_ref $xh 1-1"
2861 if [ $mult -ne 0 ]
2862 echo "~^header insert $xh <${xh}2@exam.ple>";\
2863 read es; echo $es; call xerr "$es" "ins_ref $xh 1-2"
2864 echo "~^header insert $xh ${xh}3@exam.ple";\
2865 read es; echo $es; call xerr "$es" "ins_ref $xh 1-3"
2866 else
2867 echo "~^header insert $xh <${xh}2@exam.ple>"; read es;\
2868 vput vexpr es substr $es 0 3
2869 if [ $es != 506 ]
2870 xcall bail "ins_ref $xh 1-4"
2874 echo "~^header list $xh"; read hl; echo $hl;\
2875 call xerr "$hl" "ins_ref $xh 1-5"
2876 echo "~^header show $xh"; read es; call xerr $es "ins_ref $xh 1-6"
2877 call read_mline_res
2879 if [ "$t_remove" == "" ]
2880 return
2883 echo "~^header remove $xh"; read es;\
2884 call xerr $es "ins_ref $xh 2-1"
2885 echo "~^header remove $xh"; read es;\
2886 vput vexpr es substr $es 0 3
2887 if [ $es != 501 ]
2888 xcall bail "ins_ref $xh 2-2"
2890 echo "~^header list $xh"; read es;\
2891 vput vexpr es substr $es 0 3
2892 if [ $es != 501 ]
2893 xcall bail "$es ins_ref $xh 2-3"
2895 echo "~^header show $xh"; read es;\
2896 vput vexpr es substr $es 0 3
2897 if [ $es != 501 ]
2898 xcall bail "ins_ref $xh 2-4"
2902 echo "~^header insert $xh <$xh@exam.ple>";\
2903 read es; echo $es; call xerr "$es" "ins_ref $xh 3-1"
2904 if [ $mult -ne 0 ]
2905 echo "~^header insert $xh <${xh}2@exam.ple>";\
2906 read es; echo $es; call xerr "$es" "ins_ref $xh 3-2"
2907 echo "~^header insert $xh ${xh}3@exam.ple";\
2908 read es; echo $es; call xerr "$es" "ins_ref $xh 3-3"
2910 echo "~^header list $xh";\
2911 read hl; echo $hl; call xerr "$hl" "ins_ref $xh 3-4"
2912 echo "~^header show $xh";\
2913 read es; call xerr $es "ins_ref $xh 3-5"
2914 call read_mline_res
2916 echo "~^header remove-at $xh 1"; read es;\
2917 call xerr $es "ins_ref $xh 3-6"
2918 if [ $mult -ne 0 ] && [ $xh != subject ]
2919 echo "~^header remove-at $xh 1"; read es;\
2920 call xerr $es "ins_ref $xh 3-7"
2921 echo "~^header remove-at $xh 1"; read es;\
2922 call xerr $es "ins_ref $xh 3-8"
2924 echo "~^header remove-at $xh 1"; read es;\
2925 vput vexpr es substr $es 0 3
2926 if [ $es != 501 ]
2927 xcall bail "ins_ref $xh 3-9"
2929 echo "~^header remove-at $xh T"; read es;\
2930 vput vexpr es substr $es 0 3
2931 if [ $es != 505 ]
2932 xcall bail "ins_ref $xh 3-10"
2934 echo "~^header show $xh"; read es;\
2935 vput vexpr es substr $es 0 3
2936 if [ $es != 501 ]
2937 xcall bail "ins_ref $xh 3-11"
2941 echo "~^header insert $xh <$xh@exam.ple> ";\
2942 read es; echo $es; call xerr "$es" "ins_ref $xh 4-1"
2943 if [ $mult -ne 0 ]
2944 echo "~^header insert $xh <${xh}2@exam.ple> ";\
2945 read es; echo $es; call xerr "$es" "ins_ref $xh 4-2"
2946 echo "~^header insert $xh ${xh}3@exam.ple";\
2947 read es; echo $es; call xerr "$es" "ins_ref $xh 4-3"
2949 echo "~^header list $xh"; read hl; echo $hl;\
2950 call xerr "$hl" "ins_ref $xh 4-4"
2951 echo "~^header show $xh"; read es; call xerr $es "ins_ref $xh 4-5"
2952 call read_mline_res
2954 if [ $mult -ne 0 ] && [ $xh != subject ]
2955 echo "~^header remove-at $xh 3"; read es;\
2956 call xerr $es "ins_ref $xh 4-6"
2957 echo "~^header remove-at $xh 2"; read es;\
2958 call xerr $es "ins_ref $xh 4-7"
2960 echo "~^header remove-at $xh 1"; read es;\
2961 call xerr $es "ins_ref $xh 4-8"
2962 echo "~^header remove-at $xh 1"; read es;\
2963 vput vexpr es substr $es 0 3
2964 if [ $es != 501 ]
2965 xcall bail "ins_ref $xh 4-9"
2967 echo "~^header remove-at $xh T"; read es;\
2968 vput vexpr es substr $es 0 3
2969 if [ $es != 505 ]
2970 xcall bail "ins_ref $xh 4-10"
2972 echo "~^header show $xh"; read es;\
2973 vput vexpr es substr $es 0 3
2974 if [ $es != 501 ]
2975 xcall bail "ins_ref $xh 4-11"
2978 define t_header {
2979 echo t_header ENTER
2980 # In collect.c order
2981 call ins_addr from
2982 call ins_ref sender 0 # Not a "ref", but works
2983 call ins_addr To
2984 call ins_addr cC
2985 call ins_addr bCc
2986 call ins_addr reply-To
2987 call ins_addr mail-Followup-to
2988 call ins_ref messAge-id 0
2989 call ins_ref rEfErEncEs 1
2990 call ins_ref in-Reply-to 1
2991 call ins_ref subject 1 # Not a "ref", but works (with tweaks)
2992 call ins_addr freeForm1
2993 call ins_addr freeform2
2995 echo "~^header show MAILX-Command"; read es; call xerr $es "t_header 1000"
2996 call read_mline_res
2997 echo "~^header show MAILX-raw-TO"; read es; call xerr $es "t_header 1001"
2998 call read_mline_res
3000 echo t_header LEAVE
3002 define t_attach {
3003 echo t_attach ENTER
3005 echo "~^attachment";\
3006 read hl; echo $hl; vput vexpr es substr "$hl" 0 3
3007 if [ "$es" != 501 ]
3008 xcall bail "attach 0-1"
3011 echo "~^attach attribute ./.treadctl";\
3012 read hl; echo $hl; vput vexpr es substr "$hl" 0 3
3013 if [ "$es" != 501 ]
3014 xcall bail "attach 0-2"
3016 echo "~^attachment attribute-at 1";\
3017 read hl; echo $hl; vput vexpr es substr "$hl" 0 3
3018 if [ "$es" != 501 ]
3019 xcall bail "attach 0-3"
3022 echo "~^attachment insert ./.treadctl=ascii";\
3023 read hl; echo $hl; call xerr "$hl" "attach 1-1"
3024 echo "~^attachment list";\
3025 read es; echo $es;call xerr "$es" "attach 1-2"
3026 call read_mline_res
3027 echo "~^attachment attribute ./.treadctl";\
3028 read es; echo $es;call xerr "$es" "attach 1-3"
3029 call read_mline_res
3030 echo "~^attachment attribute .treadctl";\
3031 read es; echo $es;call xerr "$es" "attach 1-4"
3032 call read_mline_res
3033 echo "~^attachment attribute-at 1";\
3034 read es; echo $es;call xerr "$es" "attach 1-5"
3035 call read_mline_res
3037 echo "~^attachment attribute-set ./.treadctl filename rctl";\
3038 read es; echo $es;call xerr "$es" "attach 1-6"
3039 echo "~^attachment attribute-set .treadctl content-description Au";\
3040 read es; echo $es;call xerr "$es" "attach 1-7"
3041 echo "~^attachment attribute-set-at 1 content-id <10.du@ich>";\
3042 read es; echo $es;call xerr "$es" "attach 1-8"
3044 echo "~^attachment attribute ./.treadctl";\
3045 read es; echo $es;call xerr "$es" "attach 1-9"
3046 call read_mline_res
3047 echo "~^attachment attribute .treadctl";\
3048 read es; echo $es;call xerr "$es" "attach 1-10"
3049 call read_mline_res
3050 echo "~^attachment attribute rctl";\
3051 read es; echo $es;call xerr "$es" "attach 1-11"
3052 call read_mline_res
3053 echo "~^attachment attribute-at 1";\
3054 read es; echo $es;call xerr "$es" "attach 1-12"
3055 call read_mline_res
3058 echo "~^attachment insert ./.tattach=latin1";\
3059 read hl; echo $hl; call xerr "$hl" "attach 2-1"
3060 echo "~^attachment list";\
3061 read es; echo $es;call xerr "$es" "attach 2-2"
3062 call read_mline_res
3063 echo "~^attachment attribute ./.tattach";\
3064 read es; echo $es;call xerr "$es" "attach 2-3"
3065 call read_mline_res
3066 echo "~^attachment attribute .tattach";\
3067 read es; echo $es;call xerr "$es" "attach 2-4"
3068 call read_mline_res
3069 echo "~^attachment attribute-at 2";\
3070 read es; echo $es;call xerr "$es" "attach 2-5"
3071 call read_mline_res
3073 echo "~^attachment attribute-set ./.tattach filename tat";\
3074 read es; echo $es;call xerr "$es" "attach 2-6"
3075 echo \
3076 "~^attachment attribute-set .tattach content-description Au2";\
3077 read es; echo $es;call xerr "$es" "attach 2-7"
3078 echo "~^attachment attribute-set-at 2 content-id <20.du@wir>";\
3079 read es; echo $es;call xerr "$es" "attach 2-8"
3080 echo \
3081 "~^attachment attribute-set-at 2 content-type application/x-sh";\
3082 read es; echo $es;call xerr "$es" "attach 2-9"
3084 echo "~^attachment attribute ./.tattach";\
3085 read es; echo $es;call xerr "$es" "attach 2-10"
3086 call read_mline_res
3087 echo "~^attachment attribute .tattach";\
3088 read es; echo $es;call xerr "$es" "attach 2-11"
3089 call read_mline_res
3090 echo "~^attachment attribute tat";\
3091 read es; echo $es;call xerr "$es" "attach 2-12"
3092 call read_mline_res
3093 echo "~^attachment attribute-at 2";\
3094 read es; echo $es;call xerr "$es" "attach 2-13"
3095 call read_mline_res
3098 if [ "$t_remove" == "" ]
3099 return
3102 echo "~^attachment remove ./.treadctl"; read es;\
3103 call xerr $es "attach 3-1"
3104 echo "~^attachment remove ./.tattach"; read es;\
3105 call xerr $es "attach 3-2"
3106 echo "~^ attachment remove ./.treadctl"; read es;\
3107 vput vexpr es substr $es 0 3
3108 if [ $es != 501 ]
3109 xcall bail "attach 3-3"
3111 echo "~^ attachment remove ./.tattach"; read es;\
3112 vput vexpr es substr $es 0 3
3113 if [ $es != 501 ]
3114 xcall bail "attach 3-4"
3116 echo "~^attachment list"; read es;\
3117 vput vexpr es substr $es 0 3
3118 if [ $es != 501 ]
3119 xcall bail "attach 3-5"
3123 echo "~^attachment insert ./.tattach=latin1";\
3124 read hl; echo $hl; call xerr "$hl" "attach 4-1"
3125 echo "~^attachment insert ./.tattach=latin1";\
3126 read hl; echo $hl; call xerr "$hl" "attach 4-2"
3127 echo "~^attachment list";\
3128 read es; echo $es;call xerr "$es" "attach 4-3"
3129 call read_mline_res
3130 echo "~^ attachment remove .tattach"; read es;\
3131 vput vexpr es substr $es 0 3
3132 if [ $es != 506 ]
3133 xcall bail "attach 4-4 $es"
3135 echo "~^attachment remove-at T"; read es;\
3136 vput vexpr es substr $es 0 3
3137 if [ $es != 505 ]
3138 xcall bail "attach 4-5"
3140 echo "~^attachment remove ./.tattach"; read es;\
3141 call xerr $es "attach 4-6"
3142 echo "~^attachment remove ./.tattach"; read es;\
3143 call xerr $es "attach 4-7"
3144 echo "~^ attachment remove ./.tattach"; read es;\
3145 vput vexpr es substr $es 0 3
3146 if [ $es != 501 ]
3147 xcall bail "attach 4-8 $es"
3149 echo "~^attachment list"; read es;\
3150 vput vexpr es substr $es 0 3
3151 if [ $es != 501 ]
3152 xcall bail "attach 4-9"
3156 echo "~^attachment insert ./.tattach=latin1";\
3157 read hl; echo $hl; call xerr "$hl" "attach 5-1"
3158 echo "~^attachment insert ./.tattach=latin1";\
3159 read hl; echo $hl; call xerr "$hl" "attach 5-2"
3160 echo "~^attachment insert ./.tattach=latin1";\
3161 read hl; echo $hl; call xerr "$hl" "attach 5-3"
3162 echo "~^attachment list";\
3163 read es; echo $es;call xerr "$es" "attach 5-4"
3164 call read_mline_res
3166 echo "~^attachment remove-at 3"; read es;\
3167 call xerr $es "attach 5-5"
3168 echo "~^attachment remove-at 3"; read es;\
3169 vput vexpr es substr $es 0 3
3170 if [ $es != 501 ]
3171 xcall bail "attach 5-6"
3173 echo "~^attachment remove-at 2"; read es;\
3174 call xerr $es "attach 5-7"
3175 echo "~^attachment remove-at 2"; read es;\
3176 vput vexpr es substr $es 0 3
3177 if [ $es != 501 ]
3178 xcall bail "attach 5-8"
3180 echo "~^attachment remove-at 1"; read es;\
3181 call xerr $es "attach 5-9"
3182 echo "~^attachment remove-at 1"; read es;\
3183 vput vexpr es substr $es 0 3
3184 if [ $es != 501 ]
3185 xcall bail "attach 5-10"
3188 echo "~^attachment list"; read es;\
3189 vput vexpr es substr $es 0 3
3190 if [ $es != 501 ]
3191 xcall bail "attach 5-11"
3195 echo "~^attachment insert ./.tattach=latin1";\
3196 read hl; echo $hl; call xerr "$hl" "attach 6-1"
3197 echo "~^attachment insert ./.tattach=latin1";\
3198 read hl; echo $hl; call xerr "$hl" "attach 6-2"
3199 echo "~^attachment insert ./.tattach=latin1";\
3200 read hl; echo $hl; call xerr "$hl" "attach 6-3"
3201 echo "~^attachment list";\
3202 read es; echo $es;call xerr "$es" "attach 6-4"
3203 call read_mline_res
3205 echo "~^attachment remove-at 1"; read es;\
3206 call xerr $es "attach 6-5"
3207 echo "~^attachment remove-at 1"; read es;\
3208 call xerr $es "attach 6-6"
3209 echo "~^attachment remove-at 1"; read es;\
3210 call xerr $es "attach 6-7"
3211 echo "~^attachment remove-at 1"; read es;\
3212 vput vexpr es substr $es 0 3
3213 if [ $es != 501 ]
3214 xcall bail "attach 6-8"
3217 echo "~^attachment list"; read es;\
3218 vput vexpr es substr $es 0 3
3219 if [ $es != 501 ]
3220 xcall bail "attach 6-9"
3223 echo t_attach LEAVE
3225 define t_ocs {
3226 read ver
3227 echo t_ocs
3228 call t_header
3229 call t_attach
3231 define t_oce {
3232 echo on-compose-enter, mailx-command<$mailx-command>
3233 alternates alter1@exam.ple alter2@exam.ple
3234 alternates
3235 set autocc='alter1@exam.ple alter2@exam.ple'
3236 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3237 echo mailx-subject<$mailx-subject>
3238 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3239 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3240 mailx-raw-bcc<$mailx-raw-bcc>
3241 echo mailx-orig-from<$mailx-orig-from> mailx-orig-to<$mailx-orig-to> \
3242 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3244 define t_ocl {
3245 echo on-compose-leave, mailx-command<$mailx-command>
3246 vput alternates al
3247 eval alternates $al alter3@exam.ple alter4@exam.ple
3248 alternates
3249 set autobcc='alter3@exam.ple alter4@exam.ple'
3250 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3251 echo mailx-subject<$mailx-subject>
3252 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3253 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3254 mailx-raw-bcc<$mailx-raw-bcc>
3255 echo mailx-orig-from<$mailx-orig-from> mailx-orig-to<$mailx-orig-to> \
3256 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3258 define t_occ {
3259 echo on-compose-cleanup, mailx-command<$mailx-command>
3260 unalternates *
3261 alternates
3262 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3263 echo mailx-subject<$mailx-subject>
3264 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3265 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3266 mailx-raw-bcc<$mailx-raw-bcc>
3267 echo mailx-orig-from<$mailx-orig-from> mailx-orig-to<$mailx-orig-to> \
3268 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3270 wysh set on-compose-splice=t_ocs \
3271 on-compose-enter=t_oce on-compose-leave=t_ocl \
3272 on-compose-cleanup=t_occ
3273 __EOT__
3275 ${rm} -f "${MBOX}"
3276 printf 'm this-goes@nowhere\nbody\n!.\n' |
3277 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! -Sstealthmua=noagent \
3278 -X'source ./.trc' -Smta=./.tsendmail.sh \
3279 >./.tall 2>&1
3280 ${cat} ./.tall >> "${MBOX}"
3281 check behave:compose_hooks-1 0 "${MBOX}" '522535560 10101'
3283 ${rm} -f "${MBOX}"
3284 printf 'm this-goes@nowhere\nbody\n!.\n' |
3285 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! -Sstealthmua=noagent \
3286 -St_remove=1 -X'source ./.trc' -Smta=./.tsendmail.sh \
3287 >./.tall 2>&1
3288 ${cat} ./.tall >> "${MBOX}"
3289 check behave:compose_hooks-2 0 "${MBOX}" '3654000499 12535'
3293 # Some state machine stress, shell compose hook, localopts for hook, etc.
3294 # readctl in child. ~r as HERE document
3295 ${rm} -f "${MBOX}"
3296 printf 'm ex@am.ple\nbody\n!.\nvar t_oce t_ocs t_ocs_sh t_ocl t_occ autocc' |
3297 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! \
3298 -Smta=./.tsendmail.sh \
3300 define bail {
3301 echoerr "Failed: $1. Bailing out"; echo "~x"; xit
3303 define xerr {
3304 vput vexpr es substr "$1" 0 1
3305 if [ "$es" != 2 ]
3306 xcall bail "$2"
3309 define read_mline_res {
3310 read hl; wysh set len=$? es=$! en=$^ERRNAME;\
3311 echo $len/$es/$^ERRNAME: $hl
3312 if [ $es -ne $^ERR-NONE ]
3313 xcall bail read_mline_res
3314 elif [ $len -ne 0 ]
3315 \xcall read_mline_res
3318 define _work {
3319 vput vexpr i + 1 "$2"
3320 if [ $i -lt 111 ]
3321 vput vexpr j % $i 10
3322 if [ $j -ne 0 ]
3323 set j=xcall
3324 else
3325 echon "$i.. "
3326 set j=call
3328 eval \\$j _work $1 $i
3329 return $?
3331 vput vexpr i + $i "$1"
3332 return $i
3334 define _read {
3335 wysh set line; read line;wysh set es=$? en=$^ERRNAME ;\
3336 echo read:$es/$en: $line
3337 if [ "${es}" -ne -1 ]
3338 xcall _read
3340 readctl remove $cwd/.treadctl; echo readctl remove:$?/$^ERRNAME
3342 define t_ocs {
3343 read ver
3344 echo t_ocs
3345 echo "~^header list"; read hl; echo $hl;\
3346 vput vexpr es substr "$hl" 0 1
3347 if [ "$es" != 2 ]
3348 xcall bail "header list"
3349 endif
3351 call _work 1; echo $?
3352 echo "~^header insert cc splicy diet <splice@exam.ple> spliced";\
3353 read es; echo $es; vput vexpr es substr "$es" 0 1
3354 if [ "$es" != 2 ]
3355 xcall bail "be diet"
3356 endif
3357 echo "~^header insert cc <splice2@exam.ple>";\
3358 read es; echo $es; vput vexpr es substr "$es" 0 1
3359 if [ "$es" != 2 ]
3360 xcall bail "be diet2"
3361 endif
3363 call _work 2; echo $?
3364 echo "~^header insert bcc juicy juice <juice@exam.ple> spliced";\
3365 read es; echo $es;vput vexpr es substr "$es" 0 1
3366 if [ "$es" != 2 ]
3367 xcall bail "be juicy"
3368 endif
3369 echo "~^header insert bcc juice2@exam.ple";\
3370 read es; echo $es;vput vexpr es substr "$es" 0 1
3371 if [ "$es" != 2 ]
3372 xcall bail "be juicy2"
3373 endif
3374 echo "~^header insert bcc juice3 <juice3@exam.ple>";\
3375 read es; echo $es;vput vexpr es substr "$es" 0 1
3376 if [ "$es" != 2 ]
3377 xcall bail "be juicy3"
3378 endif
3379 echo "~^header insert bcc juice4@exam.ple";\
3380 read es; echo $es;vput vexpr es substr "$es" 0 1
3381 if [ "$es" != 2 ]
3382 xcall bail "be juicy4"
3383 endif
3385 echo "~^header remove-at bcc 3";\
3386 read es; echo $es;vput vexpr es substr "$es" 0 1
3387 if [ "$es" != 2 ]
3388 xcall bail "remove juicy5"
3389 endif
3390 echo "~^header remove-at bcc 2";\
3391 read es; echo $es;vput vexpr es substr "$es" 0 1
3392 if [ "$es" != 2 ]
3393 xcall bail "remove juicy6"
3394 endif
3395 echo "~^header remove-at bcc 3";\
3396 read es; echo $es;vput vexpr es substr "$es" 0 3
3397 if [ "$es" != 501 ]
3398 xcall bail "failed to remove-at"
3399 endif
3400 # Add duplicates which ought to be removed!
3401 echo "~^header insert bcc juice4@exam.ple";\
3402 read es; echo $es;vput vexpr es substr "$es" 0 1
3403 if [ "$es" != 2 ]
3404 xcall bail "be juicy4-1"
3405 endif
3406 echo "~^header insert bcc juice4@exam.ple";\
3407 read es; echo $es;vput vexpr es substr "$es" 0 1
3408 if [ "$es" != 2 ]
3409 xcall bail "be juicy4-2"
3410 endif
3411 echo "~^header insert bcc juice4@exam.ple";\
3412 read es; echo $es;vput vexpr es substr "$es" 0 1
3413 if [ "$es" != 2 ]
3414 xcall bail "be juicy4-3"
3415 endif
3416 echo "~:set t_ocs"
3419 call _work 3; echo $?
3420 echo "~r - '__EOT'"
3421 vput ! i echo just knock if you can hear me;\
3422 i=0;\
3423 while [ $i -lt 24 ]; do printf "%s " $i; i=`expr $i + 1`; done;\
3424 echo relax
3425 echon shell-cmd says $?/$^ERRNAME: $i
3426 echo "~x will not become interpreted, we are reading until __EOT"
3427 echo "__EOT"
3428 read r_status; echo "~~r status output: $r_status"
3429 echo "~:echo $? $! $^ERRNAME"
3430 read r_status
3431 echo "~~r status from parent: $r_status"
3434 call _work 4; echo $?
3435 vput cwd cwd;echo cwd:$?
3436 readctl create $cwd/.treadctl ;echo readctl:$?/$^ERRNAME;\
3437 call _read
3440 call _work 5; echo $?
3441 echo "~^header show MAILX-Command"; read es;\
3442 call xerr $es "t_header 1000"; call read_mline_res
3443 echo "~^header show MAILX-raw-TO"; read es;\
3444 call xerr $es "t_header 1001"; xcall read_mline_res
3446 echoerr IT IS WRONG IF YOU SEE THIS
3448 define t_oce {
3449 echo on-compose-enter, mailx-command<$mailx-command>
3450 set t_oce autobcc=oce@exam.ple
3451 alternates alter1@exam.ple alter2@exam.ple
3452 alternates
3453 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3454 echo mailx-subject<$mailx-subject>
3455 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3456 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3457 mailx-raw-bcc<$mailx-raw-bcc>
3458 echo mailx-orig-from<$mailx-orig-from> \
3459 mailx-orig-to<$mailx-orig-to> \
3460 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3462 define t_ocl {
3463 echo on-compose-leave, mailx-command<$mailx-command>
3464 set t_ocl autocc=ocl@exam.ple
3465 unalternates *
3466 alternates alter3@exam.ple alter4@exam.ple
3467 alternates
3468 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3469 echo mailx-subject<$mailx-subject>
3470 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3471 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3472 mailx-raw-bcc<$mailx-raw-bcc>
3473 echo mailx-orig-from<$mailx-orig-from> \
3474 mailx-orig-to<$mailx-orig-to> \
3475 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3477 define t_occ {
3478 echo on-compose-cleanup, mailx-command<$mailx-command>
3479 set t_occ autocc=occ@exam.ple
3480 unalternates *
3481 alternates
3482 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3483 echo mailx-subject<$mailx-subject>
3484 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3485 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3486 mailx-raw-bcc<$mailx-raw-bcc>
3487 echo mailx-orig-from<$mailx-orig-from> \
3488 mailx-orig-to<$mailx-orig-to> \
3489 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3491 wysh set on-compose-splice=t_ocs \
3492 on-compose-splice-shell="read ver;printf \"t_ocs-shell\\n\
3493 ~t shell@exam.ple\\n~:set t_ocs_sh\\n\"" \
3494 on-compose-enter=t_oce on-compose-leave=t_ocl \
3495 on-compose-cleanup=t_occ
3496 ' > ./.tnotes 2>&1
3497 ex0_test behave:compose_hooks-3
3498 ${cat} ./.tnotes >> "${MBOX}"
3500 check behave:compose_hooks-3 - "${MBOX}" '679526364 2431'
3502 # Reply, forward, resend, Resend
3504 ${rm} -f "${MBOX}"
3505 printf 'set from=f1@z\nm t1@z\nb1\n!.\nset from=f2@z\nm t2@z\nb2\n!.\n' |
3506 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! \
3507 -Smta=./.tsendmail.sh
3509 printf '
3510 echo start: $? $! $^ERRNAME
3511 File %s
3512 echo File: $? $! $^ERRNAME;echo;echo
3513 reply 1
3514 this is content of reply 1
3516 echo reply 1: $? $! $^ERRNAME;echo;echo
3517 Reply 1 2
3518 this is content of Reply 1 2
3520 echo Reply 1 2: $? $! $^ERRNAME;echo;echo
3521 forward 1 fwdex@am.ple
3522 this is content of forward 1
3524 echo forward 1: $? $! $^ERRNAME;echo;echo
3525 resend 1 2 resendex@am.ple
3526 echo resend 1 2: $? $! $^ERRNAME;echo;echo
3527 Resend 1 2 Resendex@am.ple
3528 echo Resend 1 2: $? $! $^ERRNAME;echo;echo
3529 ' "${MBOX}" |
3530 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! \
3531 -Smta=./.tsendmail.sh \
3533 define bail {
3534 echoerr "Failed: $1. Bailing out"; echo "~x"; xit
3536 define xerr {
3537 vput vexpr es substr "$1" 0 1
3538 if [ "$es" != 2 ]
3539 xcall bail "$2"
3542 define read_mline_res {
3543 read hl; wysh set len=$? es=$! en=$^ERRNAME;\
3544 echo mline_res:$len/$es/$^ERRNAME: $hl
3545 if [ $es -ne $^ERR-NONE ]
3546 xcall bail read_mline_res
3547 elif [ $len -ne 0 ]
3548 \xcall read_mline_res
3551 define work_hl {
3552 echo "~^header show $1"; read es;\
3553 call xerr $es "work_hl $1"; echo $1; call read_mline_res
3554 if [ $# -gt 1 ]
3555 shift
3556 xcall work_hl "$@"
3559 define t_ocs {
3560 read ver
3561 echo t_ocs version $ver
3562 echo "~^header list"; read hl; echo $hl;\
3563 echoerr the header list is $hl;\
3564 call xerr "$hl" "header list"
3565 eval vpospar set $hl
3566 shift
3567 xcall work_hl "$@"
3568 echoerr IT IS WRONG IF YOU SEE THIS
3570 define t_oce {
3571 echo on-XY-enter, mailx-command<$mailx-command>
3572 set t_oce autobcc=oce@exam.ple
3573 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3574 echo mailx-subject<$mailx-subject>
3575 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3576 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3577 mailx-raw-bcc<$mailx-raw-bcc>
3578 echo mailx-orig-from<$mailx-orig-from> \
3579 mailx-orig-to<$mailx-orig-to> \
3580 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3582 define t_ocl {
3583 echo on-XY-leave, mailx-command<$mailx-command>
3584 set t_ocl autocc=ocl@exam.ple
3585 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3586 echo mailx-subject<$mailx-subject>
3587 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3588 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3589 mailx-raw-bcc<$mailx-raw-bcc>
3590 echo mailx-orig-from<$mailx-orig-from> \
3591 mailx-orig-to<$mailx-orig-to> \
3592 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3594 define t_occ {
3595 echo on-XY-cleanup, mailx-command<$mailx-command>
3596 set t_occ autocc=occ@exam.ple
3597 echo mailx-from<$mailx-from> mailx-sender<$mailx-sender>
3598 echo mailx-subject<$mailx-subject>
3599 echo mailx-to<$mailx-to> mailx-cc<$mailx-cc> mailx-bcc<$mailx-bcc>
3600 echo mailx-raw-to<$mailx-raw-to> mailx-raw-cc<$mailx-raw-cc> \
3601 mailx-raw-bcc<$mailx-raw-bcc>
3602 echo mailx-orig-from<$mailx-orig-from> \
3603 mailx-orig-to<$mailx-orig-to> \
3604 mailx-orig-cc<$mailx-orig-cc> mailx-orig-bcc<$mailx-orig-bcc>
3606 wysh set on-compose-splice=t_ocs \
3607 on-compose-enter=t_oce on-compose-leave=t_ocl \
3608 on-compose-cleanup=t_occ \
3609 on-resend-enter=t_oce on-resend-cleanup=t_occ
3610 ' > ./.tnotes 2>&1
3611 ex0_test behave:compose_hooks-4
3612 ${cat} ./.tnotes >> "${MBOX}"
3614 check behave:compose_hooks-4 - "${MBOX}" '3038884027 7516'
3616 t_epilog
3619 t_behave_message_injections() {
3620 t_prolog t_behave_message_injections
3621 TRAP_EXIT_ADDONS="./.t*"
3623 ${cat} <<-_EOT > ./.tsendmail.sh
3624 #!${SHELL} -
3625 (echo 'From Echinacea Tue Jun 20 15:54:02 2017' && ${cat} && echo
3626 ) > "${MBOX}"
3627 _EOT
3628 chmod 0755 ./.tsendmail.sh
3630 echo mysig > ./.tmysig
3632 echo some-body | ${MAILX} ${ARGS} -Smta=./.tsendmail.sh \
3633 -Smessage-inject-head=head-inject \
3634 -Smessage-inject-tail=tail-inject \
3635 -Ssignature=./.tmysig \
3636 ex@am.ple > ./.tall 2>&1
3637 check behave:message_injections-1 0 "${MBOX}" '2434746382 134'
3638 check behave:message_injections-2 - .tall '4294967295 0' # empty file
3640 ${cat} <<-_EOT > ./.template
3641 From: me
3642 To: ex1@am.ple
3643 Cc: ex2@am.ple
3644 Subject: This subject is
3646 Body, body, body me.
3647 _EOT
3648 < ./.template ${MAILX} ${ARGS} -t -Smta=./.tsendmail.sh \
3649 -Smessage-inject-head=head-inject \
3650 -Smessage-inject-tail=tail-inject \
3651 -Ssignature=./.tmysig \
3652 > ./.tall 2>&1
3653 check behave:message_injections-3 0 "${MBOX}" '3114203412 198'
3654 check behave:message_injections-4 - .tall '4294967295 0' # empty file
3656 t_epilog
3659 t_behave_mime_types_load_control() {
3660 t_prolog t_behave_mime_types_load_control
3661 TRAP_EXIT_ADDONS="./.t*"
3663 ${cat} <<-_EOT > ./.tmts1
3664 @ application/mathml+xml mathml
3665 _EOT
3666 ${cat} <<-_EOT > ./.tmts2
3667 @ x-conference/x-cooltalk ice
3668 @ aga-aga aga
3669 @ application/aga-aga aga
3670 _EOT
3672 ${cat} <<-_EOT > ./.tmts1.mathml
3673 <head>nonsense ML</head>
3674 _EOT
3675 ${cat} <<-_EOT > ./.tmts2.ice
3676 Icy, icy road.
3677 _EOT
3678 printf 'of which the c\x01rack is coming soon' > ./.tmtsx.doom
3679 printf 'of which the c\x01rack is coming soon' > ./.tmtsx.aga
3681 printf '
3682 m %s
3683 Schub-di-du
3684 ~@ ./.tmts1.mathml
3685 ~@ ./.tmts2.ice
3686 ~@ ./.tmtsx.doom
3687 ~@ ./.tmtsx.aga
3689 File %s
3690 from*
3691 type
3693 ' "${MBOX}" "${MBOX}" |
3694 ${MAILX} ${ARGS} \
3695 -Smimetypes-load-control=f=./.tmts1,f=./.tmts2 \
3696 > ./.tout 2>&1
3697 ex0_test behave:mime_types_load_control
3699 ${cat} "${MBOX}" >> ./.tout
3700 check behave:mime_types_load_control-1 - ./.tout '1441260727 2449'
3702 echo type | ${MAILX} ${ARGS} -R \
3703 -Smimetypes-load-control=f=./.tmts1,f=./.tmts3 \
3704 -f "${MBOX}" >> ./.tout 2>&1
3705 check behave:mime_types_load_control-2 0 ./.tout '1441391438 3646'
3707 t_epilog
3710 t_behave_s_mime() {
3711 have_feat smime || {
3712 echo 'behave:s/mime: unsupported, skipped'
3713 return
3716 t_prolog t_behave_s_mime
3717 TRAP_EXIT_ADDONS="./.t.conf ./.tkey.pem ./.tcert.pem ./.tpair.pem"
3718 TRAP_EXIT_ADDONS="${TRAP_EXIT_ADDONS} ./.VERIFY ./.DECRYPT ./.ENCRYPT"
3719 TRAP_EXIT_ADDONS="${TRAP_EXIT_ADDONS} ./.tsendmail.sh"
3721 printf 'behave:s/mime: .. generating test key and certificate ..\n'
3722 ${cat} <<-_EOT > ./.t.conf
3723 [ req ]
3724 default_bits = 1024
3725 default_keyfile = keyfile.pem
3726 distinguished_name = req_distinguished_name
3727 attributes = req_attributes
3728 prompt = no
3729 output_password =
3731 [ req_distinguished_name ]
3732 C = GB
3733 ST = Over the
3734 L = rainbow
3735 O = S-nail
3736 OU = S-nail.smime
3737 CN = S-nail.test
3738 emailAddress = test@localhost
3740 [ req_attributes ]
3741 challengePassword =
3742 _EOT
3743 openssl req -x509 -nodes -days 3650 -config ./.t.conf \
3744 -newkey rsa:1024 -keyout ./.tkey.pem -out ./.tcert.pem >/dev/null 2>&1
3745 ${cat} ./.tkey.pem ./.tcert.pem > ./.tpair.pem
3747 # Sign/verify
3748 printf 'behave:s/mime:sign/verify: '
3749 echo bla | ${MAILX} ${ARGS} \
3750 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3751 -Ssmime-sign -Sfrom=test@localhost \
3752 -s 'S/MIME test' ./.VERIFY
3753 if [ $? -eq 0 ]; then
3754 printf 'ok\n'
3755 else
3756 printf 'failed\n'
3757 ESTAT=1
3758 t_epilog
3759 return
3762 ${awk} '
3763 BEGIN{ skip=0 }
3764 /^Content-Description: /{ skip = 2; print; next }
3765 /^$/{ if(skip) --skip }
3766 { if(!skip) print }
3768 < ./.VERIFY > "${MBOX}"
3769 check behave:s/mime:sign/verify:checksum - "${MBOX}" '2900817158 648'
3771 printf 'behave:s/mime:sign/verify:verify '
3772 printf 'verify\nx\n' |
3773 ${MAILX} ${ARGS} \
3774 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3775 -Ssmime-sign -Sfrom=test@localhost \
3776 -Serrexit -R \
3777 -f ./.VERIFY >/dev/null 2>&1
3778 if [ $? -eq 0 ]; then
3779 printf 'ok\n'
3780 else
3781 printf 'failed\n'
3782 ESTAT=1
3783 t_epilog
3784 return
3787 printf 'behave:s/mime:sign/verify:disproof-1 '
3788 if openssl smime -verify -CAfile ./.tcert.pem \
3789 -in ./.VERIFY >/dev/null 2>&1; then
3790 printf 'ok\n'
3791 else
3792 printf 'failed\n'
3793 ESTAT=1
3794 t_epilog
3795 return
3798 # (signing +) encryption / decryption
3799 ${cat} <<-_EOT > ./.tsendmail.sh
3800 #!${SHELL} -
3801 (echo 'From Euphrasia Thu Apr 27 17:56:23 2017' && ${cat}) > ./.ENCRYPT
3802 _EOT
3803 chmod 0755 ./.tsendmail.sh
3805 printf 'behave:s/mime:encrypt+sign: '
3806 echo bla |
3807 ${MAILX} ${ARGS} \
3808 -Ssmime-force-encryption \
3809 -Ssmime-encrypt-recei@ver.com=./.tpair.pem \
3810 -Smta=./.tsendmail.sh \
3811 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3812 -Ssmime-sign -Sfrom=test@localhost \
3813 -s 'S/MIME test' recei@ver.com
3814 if [ $? -eq 0 ]; then
3815 printf 'ok\n'
3816 else
3817 ESTAT=1
3818 printf 'error: encrypt+sign failed\n'
3821 ${sed} -e '/^$/,$d' < ./.ENCRYPT > "${MBOX}"
3822 check behave:s/mime:encrypt+sign:checksum - "${MBOX}" '1937410597 327'
3824 printf 'behave:s/mime:decrypt+verify: '
3825 printf 'decrypt ./.DECRYPT\nfi ./.DECRYPT\nverify\nx\n' |
3826 ${MAILX} ${ARGS} \
3827 -Ssmime-force-encryption \
3828 -Ssmime-encrypt-recei@ver.com=./.tpair.pem \
3829 -Smta=./.tsendmail.sh \
3830 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3831 -Ssmime-sign -Sfrom=test@localhost \
3832 -Serrexit -R \
3833 -f ./.ENCRYPT >/dev/null 2>&1
3834 if [ $? -eq 0 ]; then
3835 printf 'ok\n'
3836 else
3837 ESTAT=1
3838 printf 'failed\n'
3841 ${awk} '
3842 BEGIN{ skip=0 }
3843 /^Content-Description: /{ skip = 2; print; next }
3844 /^$/{ if(skip) --skip }
3845 { if(!skip) print }
3847 < ./.DECRYPT > "${MBOX}"
3848 check behave:s/mime:decrypt+verify:checksum - "${MBOX}" '1720739247 931'
3850 printf 'behave:s/mime:decrypt+verify:disproof-1: '
3851 if (openssl smime -decrypt -inkey ./.tkey.pem -in ./.ENCRYPT |
3852 openssl smime -verify -CAfile ./.tcert.pem) >/dev/null 2>&1; then
3853 printf 'ok\n'
3854 else
3855 printf 'failed\n'
3856 ESTAT=1
3859 printf "behave:s/mime:encrypt: "
3860 echo bla | ${MAILX} ${ARGS} \
3861 -Ssmime-force-encryption \
3862 -Ssmime-encrypt-recei@ver.com=./.tpair.pem \
3863 -Smta=./.tsendmail.sh \
3864 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3865 -Sfrom=test@localhost \
3866 -s 'S/MIME test' recei@ver.com
3867 if [ $? -eq 0 ]; then
3868 printf 'ok\n'
3869 else
3870 ESTAT=1
3871 printf 'failed\n'
3874 # Same as behave:s/mime:encrypt+sign:checksum above
3875 ${sed} -e '/^$/,$d' < ./.ENCRYPT > "${MBOX}"
3876 check behave:s/mime:encrypt:checksum - "${MBOX}" '1937410597 327'
3878 ${rm} -f ./.DECRYPT
3879 printf 'decrypt ./.DECRYPT\nx\n' | ${MAILX} ${ARGS} \
3880 -Ssmime-force-encryption \
3881 -Ssmime-encrypt-recei@ver.com=./.tpair.pem \
3882 -Smta=./.tsendmail.sh \
3883 -Ssmime-ca-file=./.tcert.pem -Ssmime-sign-cert=./.tpair.pem \
3884 -Sfrom=test@localhost \
3885 -Serrexit -R \
3886 -f ./.ENCRYPT >/dev/null 2>&1
3887 check behave:s/mime:decrypt 0 "./.DECRYPT" '2624716890 422'
3889 printf 'behave:s/mime:decrypt:disproof-1: '
3890 if openssl smime -decrypt -inkey ./.tkey.pem \
3891 -in ./.ENCRYPT >/dev/null 2>&1; then
3892 printf 'ok\n'
3893 else
3894 printf 'failed\n'
3895 ESTAT=1
3898 t_epilog
3901 t_behave_maildir() {
3902 t_prolog t_behave_maildir
3903 TRAP_EXIT_ADDONS="./.t*"
3907 while [ ${i} -lt 112 ]; do
3908 printf 'm file://%s\n~s Subject %s\nHello %s!\n~.\n' \
3909 "${MBOX}" "${i}" "${i}"
3910 i=`add ${i} 1`
3911 done
3912 ) | ${MAILX} ${ARGS}
3913 check behave:maildir-1 0 "${MBOX}" '1140119864 13780'
3915 printf 'File "%s"
3916 copy * "%s"
3917 File "%s"
3918 from*
3919 ' "${MBOX}" .tmdir1 .tmdir1 |
3920 ${MAILX} ${ARGS} -Snewfolders=maildir > .tlst
3921 check behave:maildir-2 0 .tlst '1797938753 9103'
3923 printf 'File "%s"
3924 copy * "maildir://%s"
3925 File "maildir://%s"
3926 from*
3927 ' "${MBOX}" .tmdir2 .tmdir2 |
3928 ${MAILX} ${ARGS} > .tlst
3929 check behave:maildir-3 0 .tlst '1155631089 9113'
3931 printf 'File "maildir://%s"
3932 copy * "file://%s"
3933 File "file://%s"
3934 from*
3935 ' .tmdir2 .tmbox1 .tmbox1 |
3936 ${MAILX} ${ARGS} > .tlst
3937 check behave:maildir-4 0 .tmbox1 '2646131190 13220'
3938 check behave:maildir-5 - .tlst '3701297796 9110'
3940 # only the odd (even)
3942 printf 'File "maildir://%s"
3943 copy ' .tmdir2
3945 while [ ${i} -lt 112 ]; do
3946 j=`modulo ${i} 2`
3947 [ ${j} -eq 1 ] && printf '%s ' "${i}"
3948 i=`add ${i} 1`
3949 done
3950 printf ' file://%s
3951 File "file://%s"
3952 from*
3953 ' .tmbox2 .tmbox2
3954 ) | ${MAILX} ${ARGS} > .tlst
3955 check behave:maildir-6 0 .tmbox2 '142890131 6610'
3956 check behave:maildir-7 - .tlst '960096773 4573'
3957 # ...
3959 printf 'file "maildir://%s"
3960 move ' .tmdir2
3962 while [ ${i} -lt 112 ]; do
3963 j=`modulo ${i} 2`
3964 [ ${j} -eq 0 ] && [ ${i} -ne 0 ] && printf '%s ' "${i}"
3965 i=`add ${i} 1`
3966 done
3967 printf ' file://%s
3968 File "file://%s"
3969 from*
3970 File "maildir://%s"
3971 from*
3972 ' .tmbox2 .tmbox2 .tmdir2
3973 ) | ${MAILX} ${ARGS} > .tlst
3974 check behave:maildir-8 0 .tmbox2 '3806905791 13100'
3975 ${sed} 2d < .tlst > .tlstx
3976 check behave:maildir-9 - .tlstx '4216815295 13645'
3978 t_epilog
3981 t_behave_mass_recipients() {
3982 t_prolog t_behave_mass_recipients
3983 TRAP_EXIT_ADDONS="./.t*"
3985 ${cat} <<-_EOT > ./.tsendmail.sh
3986 #!${SHELL} -
3987 (echo 'From Eucalyptus Sat Jul 08 21:14:57 2017' && ${cat} && echo
3988 ) >> "${MBOX}"
3989 _EOT
3990 chmod 0755 ./.tsendmail.sh
3992 ${cat} <<'__EOT__' > ./.trc
3993 define bail {
3994 echoerr "Failed: $1. Bailing out"; echo "~x"; xit
3996 define ins_addr {
3997 wysh set nr=$1 hn=$2
3998 echo "~$hn $hn$nr@$hn"; echo '~:echo $?'; read es
3999 if [ "$es" -ne 0 ]
4000 xcall bail "ins_addr $hn 1-$nr"
4002 vput vexpr nr + $nr 1
4003 if [ "$nr" -le "$maximum" ]
4004 xcall ins_addr $nr $hn
4007 define bld_alter {
4008 wysh set nr=$1 hn=$2
4009 alternates $hn$nr@$hn
4010 vput vexpr nr + $nr 2
4011 if [ "$nr" -le "$maximum" ]
4012 xcall bld_alter $nr $hn
4015 define t_ocs {
4016 read ver
4017 call ins_addr 1 t
4018 call ins_addr 1 c
4019 call ins_addr 1 b
4021 define t_ocl {
4022 if [ "$t_remove" != '' ]
4023 call bld_alter 1 t
4024 call bld_alter 2 c
4027 set on-compose-splice=t_ocs on-compose-leave=t_ocl
4028 __EOT__
4030 ${rm} -f "${MBOX}"
4031 printf 'm this-goes@nowhere\nbody\n!.\n' |
4032 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! -Sstealthmua=noagent \
4033 -X'source ./.trc' -Smta=./.tsendmail.sh -Smaximum=2001 \
4034 >./.tall 2>&1
4035 ${cat} ./.tall >> "${MBOX}"
4036 check behave:mass_recipients-1 0 "${MBOX}" '2912243346 51526'
4038 ${rm} -f "${MBOX}"
4039 printf 'm this-goes@nowhere\nbody\n!.\n' |
4040 ${MAILX} ${ARGS} -Snomemdebug -Sescape=! -Sstealthmua=noagent \
4041 -St_remove=1 -X'source ./.trc' -Smta=./.tsendmail.sh -Smaximum=2001 \
4042 >./.tall 2>&1
4043 ${cat} ./.tall >> "${MBOX}"
4044 check behave:mass_recipients-2 0 "${MBOX}" '4097804632 34394'
4046 t_epilog
4049 t_behave_lreply_futh_rth_etc() {
4050 t_prolog t_behave_lreply_futh_rth_etc
4051 TRAP_EXIT_ADDONS="./.t*"
4053 ${cat} <<-_EOT > ./.tsendmail.sh
4054 #!${SHELL} -
4055 (echo 'From HumulusLupulus Thu Jul 27 14:41:20 2017' && ${cat} && echo
4056 ) >> "${MBOX}"
4057 _EOT
4058 chmod 0755 ./.tsendmail.sh
4060 ${cat} <<-_EOT > ./.tmbox
4061 From neverneverland Sun Jul 23 13:46:25 2017
4062 Subject: Bugstop: five miles out 1
4063 Reply-To: mister originator2 <mr2@originator>, bugstop@five.miles.out
4064 From: mister originator <mr@originator>
4065 To: bugstop-commit@five.miles.out, laber@backe.eu
4066 Cc: is@a.list
4067 Mail-Followup-To: bugstop@five.miles.out, laber@backe.eu, is@a.list
4068 In-reply-to: <20170719111113.bkcMz%laber@backe.eu>
4069 Date: Wed, 19 Jul 2017 09:22:57 -0400
4070 Message-Id: <20170719132257.766AF781267@originator>
4071 Status: RO
4073 > |Sorry, I think I misunderstand something. I would think that
4075 That's appalling.
4077 From neverneverland Fri Jul 7 22:39:11 2017
4078 Subject: Bugstop: five miles out 2
4079 Reply-To: mister originator2<mr2@originator>,bugstop@five.miles.out,is@a.list
4080 Content-Transfer-Encoding: 7bit
4081 From: mister originator <mr@originator>
4082 To: bugstop-commit@five.miles.out
4083 Cc: is@a.list
4084 Message-ID: <149945963975.28888.6950788126957753723.reportbug@five.miles.out>
4085 Date: Fri, 07 Jul 2017 16:33:59 -0400
4086 Status: R
4088 capable of changing back.
4090 From neverneverland Fri Jul 7 22:42:00 2017
4091 Subject: Bugstop: five miles out 3
4092 Reply-To: mister originator2 <mr2@originator>, bugstop@five.miles.out
4093 Content-Transfer-Encoding: 7bit
4094 From: mister originator <mr@originator>
4095 To: bugstop-commit@five.miles.out
4096 Cc: is@a.list
4097 Message-ID: <149945963975.28888.6950788126957753746.reportbug@five.miles.out>
4098 Date: Fri, 07 Jul 2017 16:33:59 -0400
4099 List-Post: <mailto:bugstop@five.miles.out>
4100 Status: R
4102 are you ready, boots?
4104 From neverneverland Sat Aug 19 23:15:00 2017
4105 Subject: Bugstop: five miles out 4
4106 Reply-To: mister originator2 <mr2@originator>, bugstop@five.miles.out
4107 Content-Transfer-Encoding: 7bit
4108 From: mister originator <mr@originator>
4109 To: bugstop@five.miles.out
4110 Cc: is@a.list
4111 Message-ID: <149945963975.28888.6950788126qtewrqwer.reportbug@five.miles.out>
4112 Date: Fri, 07 Jul 2017 16:33:59 -0400
4113 List-Post: <mailto:bugstop@five.miles.out>
4114 Status: R
4116 are you ready, boots?
4117 _EOT
4121 ${cat} <<-'_EOT' | ${MAILX} ${ARGS} -Sescape=! -Smta=./.tsendmail.sh \
4122 -Rf ./.tmbox >> "${MBOX}" 2>&1
4123 define r {
4124 wysh set m="This is text of \"reply ${1}."
4125 reply 1 2 3
4126 !I m
4129 !I m
4132 !I m
4135 echo -----After reply $1.1 - $1.3: $?/$^ERRNAME
4137 define R {
4138 wysh set m="This is text of \"Reply ${1}."
4139 eval Reply $2
4140 !I m
4141 !I 2
4144 echo -----After Reply $1.$2: $?/$^ERRNAME
4146 define _Lh {
4147 read protover
4148 echo '~I m'
4149 echo '~I n'
4150 echo '".'
4152 define _Ls {
4153 wysh set m="This is text of \"Lreply ${1}." on-compose-splice=_Lh n=$2
4154 eval Lreply $2
4156 define L {
4157 # We need two indirections for this test: one for the case that Lreply
4158 # fails because of missing recipients: we need to read EOF next, thus
4159 # place this in _Ls last; and second for the succeeding cases EOF is
4160 # not what these should read, so go over the backside and splice it in!
4161 call _Ls "$@"
4162 echo -----After Lreply $1.$2: $?/$^ERRNAME
4164 define x {
4165 localopts call-fixate yes
4166 call r $1
4167 call R $1 1; call R $1 2; call R $1 3; call R $1 4
4168 call L $1 1; call L $1 2; call L $1 3
4170 define tweak {
4171 echo;echo '===== CHANGING === '"$*"' =====';echo
4172 eval "$@"
4175 set from=laber@backe.eu
4176 mlist is@a.list
4177 call x 1
4178 call tweak set reply-to-honour
4179 call x 2
4180 call tweak set followup-to
4181 call x 3
4182 call tweak set followup-to-honour
4183 call x 4
4184 call tweak mlist bugstop@five.miles.out
4185 call x 5
4186 call tweak mlsubscribe bugstop@five.miles.out
4187 call x 6
4188 call tweak set recipients-in-cc
4189 call x 7
4190 _EOT
4192 check behave:lreply_futh_rth_etc 0 "${MBOX}" '940818845 29373'
4194 t_epilog
4197 t_behave_iconv_mbyte_base64() {
4198 t_prolog t_behave_iconv_mbyte_base64
4199 TRAP_EXIT_ADDONS="./.t*"
4201 if [ -n "${UTF8_LOCALE}" ] && have_feat iconv &&
4202 (</dev/null iconv -f ascii -t iso-2022-jp) >/dev/null 2>&1 ||
4203 (</dev/null iconv -f ascii -t euc-jp) >/dev/null 2>&1; then
4205 else
4206 echo 'behave:iconv_mbyte_base64: unsupported, skipped'
4207 return
4210 ${cat} <<-_EOT > ./.tsendmail.sh
4211 #!${SHELL} -
4212 (echo 'From DroseriaRotundifolia Thu Aug 03 17:26:25 2017' && ${cat} &&
4213 echo) >> "${MBOX}"
4214 _EOT
4215 chmod 0755 ./.tsendmail.sh
4217 if (</dev/null iconv -f ascii -t iso-2022-jp) >/dev/null 2>&1; then
4218 cat <<-'_EOT' | LC_ALL=${UTF8_LOCALE} ${MAILX} ${ARGS} \
4219 -Smta=./.tsendmail.sh \
4220 -Sescape=! -Smime-encoding=base64 2>./.terr
4221 set ttycharset=utf-8 sendcharsets=iso-2022-jp
4222 m t1@exam.ple
4223 !s Japanese from UTF-8 to ISO-2022-JP
4224 シジュウカラ科(シジュウカラか、学名 Paridae)は、鳥類スズメ目の科である。シジュウカラ(四十雀)と総称されるが、狭義にはこの1種をシジュウカラと呼ぶ。
4226 カンムリガラ(学名Parus cristatus)は、スズメ目シジュウカラ科に分類される鳥類の一種。
4229 カンムリガラ(学名Parus cristatus)は、スズメ目シジュウカラ科に分類される鳥類の一種。
4231 シジュウカラ科(シジュウカラか、学名 Paridae)は、鳥類スズメ目の科である。シジュウカラ(四十雀)と総称されるが、狭義にはこの1種をシジュウカラと呼ぶ。
4234 set ttycharset=iso-2022-jp charset-7bit=iso-2022-jp sendcharsets=utf-8
4235 m t2@exam.ple
4236 !s Japanese from ISO-2022-JP to UTF-8, eh, no, also ISO-2022-JP
4237 \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
4239 \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
4242 \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
4244 \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
4246 _EOT
4247 check behave:iconv_mbyte_base64-1 0 "${MBOX}" '3428985079 1976'
4248 check behave:iconv_mbyte_base64-2 - ./.terr '4294967295 0'
4250 printf 'eval f 1; write ./.twrite\n' |
4251 ${MAILX} ${ARGS} ${ADDARG_UNI} -Rf "${MBOX}" >./.tlog 2>&1
4252 check behave:iconv_mbyte_base64-3 0 ./.twrite '1259742080 686'
4253 check behave:iconv_mbyte_base64-4 - ./.tlog '3956097665 119'
4254 else
4255 echo 'behave:iconv_mbyte_base64: ISO-2022-JP unsupported, skipping 1-4'
4258 if (</dev/null iconv -f ascii -t euc-jp) >/dev/null 2>&1; then
4259 rm -f "${MBOX}" ./.twrite
4260 cat <<-'_EOT' | LC_ALL=${UTF8_LOCALE} ${MAILX} ${ARGS} \
4261 -Smta=./.tsendmail.sh \
4262 -Sescape=! -Smime-encoding=base64 2>./.terr
4263 set ttycharset=utf-8 sendcharsets=euc-jp
4264 m t1@exam.ple
4265 !s Japanese from UTF-8 to EUC-JP
4266 シジュウカラ科(シジュウカラか、学名 Paridae)は、鳥類スズメ目の科である。シジュウカラ(四十雀)と総称されるが、狭義にはこの1種をシジュウカラと呼ぶ。
4268 カンムリガラ(学名Parus cristatus)は、スズメ目シジュウカラ科に分類される鳥類の一種。
4271 カンムリガラ(学名Parus cristatus)は、スズメ目シジュウカラ科に分類される鳥類の一種。
4273 シジュウカラ科(シジュウカラか、学名 Paridae)は、鳥類スズメ目の科である。シジュウカラ(四十雀)と総称されるが、狭義にはこの1種をシジュウカラと呼ぶ。
4276 set ttycharset=EUC-JP sendcharsets=utf-8
4277 m t2@exam.ple
4278 !s Japanese from EUC-JP to UTF-8
4279 ¥·¥¸¥å¥¦¥«¥é²Ê¡Ê¥·¥¸¥å¥¦¥«¥é¤«¡¢³Ø̾ Paridae¡Ë¤Ï¡¢Ä»Îॹ¥º¥áÌܤβʤǤ¢¤ë¡£¥·¥¸¥å¥¦¥«¥é¡Ê»Í½½¿ý¡Ë¤ÈÁí¾Î¤µ¤ì¤ë¤¬¡¢¶¹µÁ¤Ë¤Ï¤³¤Î1¼ï¤ò¥·¥¸¥å¥¦¥«¥é¤È¸Æ¤Ö¡£
4281 ¥«¥ó¥à¥ê¥¬¥é¡Ê³Ø̾Parus cristatus¡Ë¤Ï¡¢¥¹¥º¥áÌÜ¥·¥¸¥å¥¦¥«¥é²Ê¤ËʬÎव¤ì¤ëÄ»Îà¤Î°ì¼ï¡£
4284 ¥«¥ó¥à¥ê¥¬¥é¡Ê³Ø̾Parus cristatus¡Ë¤Ï¡¢¥¹¥º¥áÌÜ¥·¥¸¥å¥¦¥«¥é²Ê¤ËʬÎव¤ì¤ëÄ»Îà¤Î°ì¼ï¡£
4286 ¥·¥¸¥å¥¦¥«¥é²Ê¡Ê¥·¥¸¥å¥¦¥«¥é¤«¡¢³Ø̾ Paridae¡Ë¤Ï¡¢Ä»Îॹ¥º¥áÌܤβʤǤ¢¤ë¡£¥·¥¸¥å¥¦¥«¥é¡Ê»Í½½¿ý¡Ë¤ÈÁí¾Î¤µ¤ì¤ë¤¬¡¢¶¹µÁ¤Ë¤Ï¤³¤Î1¼ï¤ò¥·¥¸¥å¥¦¥«¥é¤È¸Æ¤Ö¡£
4288 _EOT
4289 check behave:iconv_mbyte_base64-5 0 "${MBOX}" '1686827547 2051'
4290 check behave:iconv_mbyte_base64-6 - ./.terr '4294967295 0'
4292 printf 'eval f 1; write ./.twrite\n' |
4293 ${MAILX} ${ARGS} ${ADDARG_UNI} -Rf "${MBOX}" >./.tlog 2>&1
4294 check behave:iconv_mbyte_base64-7 0 ./.twrite '1259742080 686'
4295 check behave:iconv_mbyte_base64-8 - ./.tlog '500059195 119'
4296 else
4297 echo 'behave:iconv_mbyte_base64: EUC-JP unsupported, skipping 5-8'
4300 t_epilog
4303 t_behave_iconv_mainbody() {
4304 t_prolog t_behave_iconv_mainbody
4305 TRAP_EXIT_ADDONS="./.t*"
4308 if have_feat iconv &&
4309 (</dev/null iconv -f utf-8 -t ascii) >/dev/null 2>&1; then
4310 j="`printf '' | iconv -f utf-8 -t ascii 2>/dev/null`"
4311 # This assumes iconv(1) behaves like iconv(3), but well
4312 if [ ${?} -ne 0 ]; then
4314 elif [ x"${j}" = 'x?' ]; then
4316 elif [ x"${j}" = 'x*' ]; then
4320 if [ -z "${i}" ]; then
4321 echo 'behave:iconv_mainbody: unsupported, skipped'
4322 return
4325 ${cat} <<-_EOT > ./.tsendmail.sh
4326 #!${SHELL} -
4327 (echo 'From HamamelisVirginiana Fri Oct 20 16:23:21 2017' && ${cat} &&
4328 echo) >> "${MBOX}"
4329 _EOT
4330 chmod 0755 ./.tsendmail.sh
4332 printf '' | ${MAILX} ${ARGS} ${ADDARG_UNI} -Smta=./.tsendmail.sh \
4333 -S charset-7bit=us-ascii -S charset-8bit=utf-8 \
4334 -s '' over-the@rain.bow 2>./.terr
4335 check behave:iconv_mainbody-1 0 "${MBOX}" '3634015017 251'
4336 check behave:iconv_mainbody-2 - ./.terr '4294967295 0'
4338 printf '' | ${MAILX} ${ARGS} ${ADDARG_UNI} -Smta=./.tsendmail.sh \
4339 -S charset-7bit=us-ascii -S charset-8bit=us-ascii \
4340 -s '' over-the@rain.bow 2>./.terr
4341 exn0_test behave:iconv_mainbody-3
4342 check behave:iconv_mainbody-3 - "${MBOX}" '3634015017 251'
4343 check behave:iconv_mainbody-4 - ./.terr '1960148192 128'
4345 printf 'p\nx\n' | ${MAILX} ${ARGS} -Rf "${MBOX}" >./.tout 2>./.terr
4346 j=${?}
4347 if [ ${i} -eq 1 ]; then
4348 # yuck, just assume ???, we need a test program for that one!
4349 ex0_test behave:iconv_mainbody-5-1 ${j}
4350 check behave:iconv_mainbody-6-1 - ./.tout '1959197095 283'
4351 check behave:iconv_mainbody-7-1 - ./.terr '4294967295 0'
4352 elif [ ${i} -eq 2 ]; then
4353 ex0_test behave:iconv_mainbody-5-2 ${j}
4354 check behave:iconv_mainbody-6-2 - ./.tout '1959197095 283'
4355 check behave:iconv_mainbody-7-2 - ./.terr '4294967295 0'
4356 else
4357 ex0_test behave:iconv_mainbody-5-3 ${j}
4358 check behave:iconv_mainbody-6-3 - ./.tout '3196380198 279'
4359 check behave:iconv_mainbody-7-3 - ./.terr '4294967295 0'
4362 t_epilog
4365 # t_content()
4366 # Some basic tests regarding correct sending of mails, via STDIN / -t / -q,
4367 # including basic MIME Content-Transfer-Encoding correctness (quoted-printable)
4368 # Note we unfortunately need to place some statements without proper
4369 # indentation because of continuation problems
4370 t_content() {
4371 t_prolog t_content
4373 # MIME encoding (QP) stress message body
4374 printf \
4375 'Ich bin eine DÖS-Datäi mit sehr langen Zeilen und auch '\
4376 'sonst bin ich ganz schön am Schleudern, da kannste denke '\
4377 "wasde willst, gelle, gelle, gelle, gelle, gelle.\r\n"\
4378 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst \r\n"\
4379 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 1\r\n"\
4380 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 12\r\n"\
4381 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 123\r\n"\
4382 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 1234\r\n"\
4383 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 12345\r\n"\
4384 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 123456\r\n"\
4385 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 1234567\r\n"\
4386 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 12345678\r\n"\
4387 "Ich bin eine DÖS-Datäi mit langen Zeilen und auch sonst 123456789\r\n"\
4388 "Unn ausserdem habe ich trailing SP/HT/SP/HT whitespace \r\n"\
4389 "Unn ausserdem habe ich trailing HT/SP/HT/SP whitespace \r\n"\
4390 "auf den zeilen vorher.\r\n"\
4391 "From am Zeilenbeginn und From der Mitte gibt es auch.\r\n"\
4392 ".\r\n"\
4393 "Die letzte Zeile war nur ein Punkt.\r\n"\
4394 "..\r\n"\
4395 "Das waren deren zwei.\r\n"\
4396 " \r\n"\
4397 "Die letzte Zeile war ein Leerschritt.\n"\
4398 "=VIER = EQUAL SIGNS=ON A LINE=\r\n"\
4399 "Prösterchen.\r\n"\
4400 ".\n"\
4401 "Die letzte Zeile war nur ein Punkt, mit Unix Zeilenende.\n"\
4402 "..\n"\
4403 "Das waren deren zwei. ditto.\n"\
4404 "Prösterchen.\n"\
4405 "Unn ausseerdem habe ich trailing SP/HT/SP/HT whitespace \n"\
4406 "Unn ausseerdem habe ich trailing HT/SP/HT/SP whitespace \n"\
4407 "auf den zeilen vorher.\n"\
4408 "ditto.\n"\
4409 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.\n"\
4410 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.1"\
4411 "\n"\
4412 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.12"\
4413 "\n"\
4414 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.12"\
4415 "3\n"\
4416 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.12"\
4417 "34\n"\
4418 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.12"\
4419 "345\n"\
4420 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende.12"\
4421 "3456\n"\
4422 "QP am Zeilenende über soft-nl hinweg\n"\
4423 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende."\
4424 "ö123\n"\
4425 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende."\
4426 "1ö23\n"\
4427 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende."\
4428 "12ö3\n"\
4429 "Ich bin eine ziemlich lange, steile, scharfe Zeile mit Unix Zeilenende."\
4430 "123ö\n"\
4431 "=VIER = EQUAL SIGNS=ON A LINE=\n"\
4432 " \n"\
4433 "Die letzte Zeile war ein Leerschritt.\n"\
4434 ' '\
4435 > "${BODY}"
4437 # MIME encoding (QP) stress message subject
4438 SUB="Äbrä Kä?dä=brö Fü?di=bus? \
4439 adadaddsssssssddddddddddddddddddddd\
4440 ddddddddddddddddddddddddddddddddddd\
4441 ddddddddddddddddddddddddddddddddddd\
4442 dddddddddddddddddddd Hallelulja? Od\
4443 er?? eeeeeeeeeeeeeeeeeeeeeeeeeeeeee\
4444 eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee\
4445 eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee f\
4446 fffffffffffffffffffffffffffffffffff\
4447 fffffffffffffffffffff ggggggggggggg\
4448 ggggggggggggggggggggggggggggggggggg\
4449 ggggggggggggggggggggggggggggggggggg\
4450 ggggggggggggggggggggggggggggggggggg\
4451 gggggggggggggggg"
4453 # Three tests for MIME encoding and (a bit) content classification.
4454 # At the same time testing -q FILE, < FILE and -t FILE
4456 ${rm} -f "${MBOX}"
4457 < "${BODY}" ${MAILX} ${ARGS} ${ADDARG_UNI} \
4458 -a "${BODY}" -s "${SUB}" "${MBOX}"
4459 check content:001 0 "${MBOX}" '1145066634 6654'
4461 ${rm} -f "${MBOX}"
4462 < /dev/null ${MAILX} ${ARGS} ${ADDARG_UNI} \
4463 -a "${BODY}" -s "${SUB}" -q "${BODY}" "${MBOX}"
4464 check content:002 0 "${MBOX}" '1145066634 6654'
4466 ${rm} -f "${MBOX}"
4467 ( echo "To: ${MBOX}" && echo "Subject: ${SUB}" && echo &&
4468 ${cat} "${BODY}"
4469 ) | ${MAILX} ${ARGS} ${ADDARG_UNI} -Snodot -a "${BODY}" -t
4470 check content:003 0 "${MBOX}" '1145066634 6654'
4472 # Test for [260e19d] (Juergen Daubert)
4473 ${rm} -f "${MBOX}"
4474 echo body | ${MAILX} ${ARGS} "${MBOX}"
4475 check content:004 0 "${MBOX}" '2917662811 98'
4477 # Sending of multiple mails in a single invocation
4478 ${rm} -f "${MBOX}"
4479 ( printf "m ${MBOX}\n~s subject1\nE-Mail Körper 1\n~.\n" &&
4480 printf "m ${MBOX}\n~s subject2\nEmail body 2\n~.\n" &&
4481 echo x
4482 ) | ${MAILX} ${ARGS} ${ADDARG_UNI}
4483 check content:005 0 "${MBOX}" '2098659767 358'
4485 ## $BODY CHANGED
4487 # "Test for" [d6f316a] (Gavin Troy)
4488 ${rm} -f "${MBOX}"
4489 printf "m ${MBOX}\n~s subject1\nEmail body\n~.\nfi ${MBOX}\np\nx\n" |
4490 ${MAILX} ${ARGS} ${ADDARG_UNI} -Spipe-text/plain="@* ${cat}" > "${BODY}"
4491 check content:006 0 "${MBOX}" '2099098650 122'
4492 check content:006-1 - "${BODY}" '794542938 174'
4494 # "Test for" [c299c45] (Peter Hofmann) TODO shouldn't end up QP-encoded?
4495 ${rm} -f "${MBOX}"
4496 ${awk} 'BEGIN{
4497 for(i = 0; i < 10000; ++i)
4498 printf "\xC3\xBC"
4499 #printf "\xF0\x90\x87\x90"
4500 }' | ${MAILX} ${ARGS} ${ADDARG_UNI} -s TestSubject "${MBOX}"
4501 check content:007 0 "${MBOX}" '534262374 61816'
4503 ## Test some more corner cases for header bodies (as good as we can today) ##
4506 ${rm} -f "${MBOX}"
4507 echo | ${MAILX} ${ARGS} ${ADDARG_UNI} \
4508 -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̲' \
4509 "${MBOX}"
4510 check content:008 0 "${MBOX}" '3370931614 375'
4512 # Single word (overlong line split -- bad standard! Requires injection of
4513 # artificial data!! But can be prevented by using RFC 2047 encoding)
4514 ${rm} -f "${MBOX}"
4515 i=`${awk} 'BEGIN{for(i=0; i<92; ++i) printf "0123456789_"}'`
4516 echo | ${MAILX} ${ARGS} -s "${i}" "${MBOX}"
4517 check content:009 0 "${MBOX}" '489922370 1718'
4519 # Combination of encoded words, space and tabs of varying sort
4520 ${rm} -f "${MBOX}"
4521 echo | ${MAILX} ${ARGS} ${ADDARG_UNI} \
4522 -s "1Abrä Kaspas1 2Abra Katä b_kaspas2 \
4523 3Abrä Kaspas3 4Abrä Kaspas4 5Abrä Kaspas5 \
4524 6Abra Kaspas6 7Abrä Kaspas7 8Abra Kaspas8 \
4525 9Abra Kaspastäb4-3 10Abra Kaspas1 _ 11Abra Katäb1 \
4526 12Abra Kadabrä1 After Tab after Täb this is NUTS" \
4527 "${MBOX}"
4528 check content:010 0 "${MBOX}" '1676887734 591'
4530 # Overlong multibyte sequence that must be forcefully split
4531 # todo This works even before v15.0, but only by accident
4532 ${rm} -f "${MBOX}"
4533 echo | ${MAILX} ${ARGS} ${ADDARG_UNI} \
4534 -s "✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄\
4535 ✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄\
4536 ✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄✄" \
4537 "${MBOX}"
4538 check content:011 0 "${MBOX}" '3029301775 659'
4540 # Trailing WS
4541 ${rm} -f "${MBOX}"
4542 echo | ${MAILX} ${ARGS} \
4543 -s "1-1 B2 B3 B4 B5 B6 B\
4544 1-2 B2 B3 B4 B5 B6 B\
4545 1-3 B2 B3 B4 B5 B6 B\
4546 1-4 B2 B3 B4 B5 B6 B\
4547 1-5 B2 B3 B4 B5 B6 B\
4548 1-6 B2 B3 B4 B5 B6 " \
4549 "${MBOX}"
4550 check content:012 0 "${MBOX}" '4126167195 297'
4552 # Leading and trailing WS
4553 ${rm} -f "${MBOX}"
4554 echo | ${MAILX} ${ARGS} \
4555 -s " 2-1 B2 B3 B4 B5 B6 B\
4556 1-2 B2 B3 B4 B5 B6 B\
4557 1-3 B2 B3 B4 B5 B6 B\
4558 1-4 B2 B3 B4 B5 B6 " \
4559 "${MBOX}"
4560 check content:013 0 "${MBOX}" '3600624479 236'
4562 # Quick'n dirty RFC 2231 test; i had more when implementing it, but until we
4563 # have a (better) test framework materialize a quick shot
4564 ${rm} -f "${MBOX}"
4565 TRAP_EXIT_ADDONS=./.ttt
4567 mkdir ./.ttt || exit 1
4568 cd ./.ttt || exit 2
4569 : > "ma'ger.txt"
4570 : > "mä'ger.txt"
4571 : > 'diet\ is \curd.txt'
4572 : > 'diet "is" curd.txt'
4573 : > höde-tröge.txt
4574 : > 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
4575 : > höde__tröge__müde__dätte__hätte__vuelle__guelle__aese__aesse__sauerliche__kräuter__österliche__grüße__mäh.txt
4576 : > hööööööööööööööööö_nöööööööööööööööööööööö_düüüüüüüüüüüüüüüüüüü_bäääääääääääääääääääääääh.txt
4577 : > ✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆.txt
4579 echo bla | ${MAILX} ${ARGS} ${ADDARG_UNI} \
4580 -a "./.ttt/ma'ger.txt" -a "./.ttt/mä'ger.txt" \
4581 -a './.ttt/diet\ is \curd.txt' -a './.ttt/diet "is" curd.txt' \
4582 -a ./.ttt/höde-tröge.txt \
4583 -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 \
4584 -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 \
4585 -a ./.ttt/hööööööööööööööööö_nöööööööööööööööööööööö_düüüüüüüüüüüüüüüüüüü_bäääääääääääääääääääääääh.txt \
4586 -a ./.ttt/✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆✆.txt \
4587 "${MBOX}"
4588 check content:014-1 0 "${MBOX}" '684985954 3092'
4590 # `resend' test, reusing $MBOX
4591 ${rm} -f "${BODY}"
4592 printf "Resend ${BODY}\nx\n" | ${MAILX} ${ARGS} -Rf "${MBOX}"
4593 check content:014-2 0 "${BODY}" '684985954 3092'
4595 ${rm} -f "${BODY}"
4596 printf "resend ${BODY}\nx\n" | ${MAILX} ${ARGS} -Rf "${MBOX}"
4597 check content:014-3 0 "${BODY}" '3130352658 3148'
4599 t_epilog
4602 t_all() {
4603 # if have_feat devel; then
4604 # ARGS="${ARGS} -Smemdebug"
4605 # export ARGS
4606 # fi
4608 if [ -n "${UTF8_LOCALE}" ]; then
4609 printf 'Using Unicode locale %s\n' "${UTF8_LOCALE}"
4610 else
4611 printf 'No Unicode locale found, disabling Unicode tests\n'
4614 t_behave
4615 t_content
4618 if [ -z "${CHECK_ONLY}${MAE_TEST}" ]; then
4619 cc_all_configs
4620 elif [ -z "${MAE_TEST}" ] || [ ${#} -eq 0 ]; then
4621 t_all
4622 else
4623 while [ ${#} -gt 0 ]; do
4624 ${1}
4625 shift
4626 done
4629 [ ${ESTAT} -eq 0 ] && echo Ok || echo >&2 'Errors occurred'
4631 exit ${ESTAT}
4632 # s-sh-mode