1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
# -*- tcl -*-
# This file is part of Mailutils testsuite.
# Copyright (C) 2002, 2007 Free Software Foundation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA.
source $top_srcdir/testsuite/lib/mailutils.exp
set sieve_source_dir "${srcdir}/scripts"
mu_init -noflags
set env(MAIL) $MU_SPOOL_DIR/sieve.mbox
set env(FOLDER) $env(MAIL)
set SIEVE_ETC_DIR "$MU_DATA_DIR/etc"
mu_makespool "$MU_RC_DIR" "$SIEVE_ETC_DIR"
# sieve_test [-retcode N][-message MESSAGE][-default (FAIL|XFAIL)]
# [-reuse-spool]
# [ARGS...][-pattern PATTERN...]
proc sieve_test {args} {
global sieve_source_dir
global top_builddir
global SIEVE_ETC_DIR
global MU_SPOOL_DIR
set default ""
set sw [list "--config-file=$SIEVE_ETC_DIR/mailutils.rc" \
"--verbose" \
"--line-info=no" \
"--no-program-name" \
"-M sendmail:$top_builddir/examples/mta" \
"--email foobar@nonexistent.net"]
set reuse_spool 0
set retcode 0
set mailbox "$MU_SPOOL_DIR/sieve.mbox"
for {set i 0} {$i < [llength $args]} {incr i} {
set a [lindex $args $i]
if {"$a" == "-default"} {
incr i
set default [lindex $args $i]
} elseif {"$a" == "-message"} {
incr i
set message [lindex $args $i]
} elseif {"$a" == "-pattern"} {
incr i
set pattern [lrange $args $i end]
break
} elseif {"$a" == "-reuse-spool"} {
set reuse_spool 1
break
} elseif {"$a" == "-retcode"} {
incr i
set retcode [lindex $args $i]
} elseif {"$a" == "-f"} {
incr i
set mailbox [lindex $args $i]
} else {
set sw [concat $sw [lindex $args $i]]
}
}
switch -- "[lindex $sw end]" {
^/.* { }
default {
set sw [concat [lrange $sw 0 [expr [llength $sw] - 2]] \
[list "${sieve_source_dir}/[lindex $sw end]"]]
}
}
set sw [concat "-f$mailbox" $sw]
if {![info exists message]} {
set message "[lindex $sw end]"
}
if {!$reuse_spool} {
mu_prepare_spools
}
if [info exists pattern] {
mu_exec -default $default -message $message -arg-list $sw \
-pattern $pattern -retcode $retcode
} else {
mu_exec -default $default -message $message -arg-list $sw \
-retcode $retcode
}
#FIXME: examine the output mailbox
}
proc sieve_driver_test {name mailer diag} {
global srcdir
set chan [open "${srcdir}/$name" r]
set state 0
set command ""
for {gets $chan line} {![eof $chan]} {gets $chan line} {
verbose "LINE $line" 1
switch -regexp -- "$line" {
"^#.*" { }
"^TEST END" {
verbose "ARGS $args" 1
verbose "PATTERN $pattern" 1
verbose "OUTPUT $output" 1
eval sieve_test $args -pattern $pattern
eval mu_test_file "$diag" $output
set state 0
}
"^TEST" {
regexp "^TEST (.*)" $line dummy args
set pattern [list]
set output [list]
set state 1
}
"^PATTERN BEGIN" {
set state 2
}
"^PATTERN END" {
set state 1
}
"^FILE BEGIN" {
set state 3
}
"^FILE END" {
set state 1
}
"^STOP" {
break
}
default {
if {$state == 2} {
lappend pattern $line
} elseif {$state == 3} {
lappend output $line
}
}
}
}
close $chan
}
|