1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 00:02:29 +01:00
imapsync/tests.sh

1376 lines
36 KiB
Bash
Raw Normal View History

2011-03-12 03:39:59 +01:00
#!/bin/sh
2011-03-12 03:44:54 +01:00
# $Id: tests.sh,v 1.105 2010/07/12 00:14:00 gilles Exp gilles $
2011-03-12 03:44:47 +01:00
# Example:
# CMD_PERL='perl -I./Mail-IMAPClient-3.14/lib' sh -x tests.sh
HOST1=${HOST1:-'localhost'}
echo HOST1=$HOST1
HOST2=${HOST2:-'localhost'}
echo HOST2=$HOST2
CMD_PERL=${CMD_PERL:-'perl -I./Mail-IMAPClient-2.2.9'}
2011-03-12 03:39:59 +01:00
#### Shell pragmas
2011-03-12 03:43:43 +01:00
exec 3>&2 #
#set -x # debug mode. See what is running
set -e # exit on first failure
2011-03-12 03:39:59 +01:00
#### functions definitions
echo3() {
2011-03-12 03:44:36 +01:00
#echo '#####################################################' >&3
2011-03-12 03:44:47 +01:00
echo "$@" >&3
2011-03-12 03:39:59 +01:00
}
run_test() {
2011-03-12 03:44:36 +01:00
echo3 "#### $test_count $1"
$1
if test x"$?" = x"0"; then
echo "$1 passed"
else
echo "$1 failed" >&2
fi
2011-03-12 03:39:59 +01:00
}
run_tests() {
2011-03-12 03:44:36 +01:00
for t in "$@"; do
test_count=`expr 1 + $test_count`
run_test "$t"
sleep 1
done
2011-03-12 03:39:59 +01:00
}
#### Variable definitions
test_count=0
##### The tests functions
perl_syntax() {
2011-03-12 03:44:47 +01:00
$CMD_PERL -c ./imapsync
2011-03-12 03:39:59 +01:00
}
no_args() {
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync
2011-03-12 03:39:59 +01:00
}
2011-03-12 03:44:29 +01:00
# list of accounts on plume :
2011-03-12 03:39:59 +01:00
2011-03-12 03:44:47 +01:00
# mailbox toto used on first_sync()
# bad_login()
# bad_host()
2011-03-12 03:44:29 +01:00
2011-03-12 03:44:47 +01:00
# mailbox titi used on first_sync()
# bad_host()
# locallocal()
2011-03-12 03:44:29 +01:00
2011-03-12 03:44:47 +01:00
# mailbox tata used on locallocal()
2011-03-12 03:44:29 +01:00
2011-03-12 03:44:47 +01:00
# mailbox tata titi on most ll_*() tests
2011-03-12 03:44:30 +01:00
2011-03-12 03:44:29 +01:00
# tutu@est.belle # not used
2011-03-12 03:44:47 +01:00
# mailbox tete@est.belle # used on big size tests
2011-03-12 03:44:29 +01:00
# big_transfert()
# big_transfert_sizes_only()
# dprof()
2011-03-12 03:39:59 +01:00
2011-03-12 03:43:48 +01:00
sendtestmessage() {
2011-03-12 03:44:47 +01:00
email=${1:-"tata"}
2011-03-12 03:43:48 +01:00
rand=`pwgen 16 1`
mess='test:'$rand
2011-03-12 03:44:35 +01:00
cmd="echo $mess""| mail -s ""$mess"" $email"
2011-03-12 03:43:48 +01:00
echo $cmd
2011-03-12 03:44:29 +01:00
eval "$cmd"
2011-03-12 03:43:48 +01:00
}
2011-03-12 03:44:29 +01:00
2011-03-12 03:44:48 +01:00
can_send() {
test X`hostname` = X"plume" && return 0;
test X`hostname` = X"vadrouille" && return 0;
return 1
}
2011-03-12 03:44:35 +01:00
zzzz() {
2011-03-12 03:44:36 +01:00
$CMD_PERL -V
2011-03-12 03:44:35 +01:00
}
option_version() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync --version
2011-03-12 03:44:35 +01:00
}
option_tests() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync --tests
2011-03-12 03:44:35 +01:00
}
2011-03-12 03:44:47 +01:00
option_bad_delete2() {
! $CMD_PERL ./imapsync --delete 2 --blabla
}
passwords_masked() {
$CMD_PERL ./imapsync --host1 boumboum --password1 secret --justbanner | grep MASKED
}
2011-03-12 03:44:35 +01:00
first_sync_dry() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 toto \
--passfile1 ../../var/pass/secret.toto \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--noauthmd5 --dry
2011-03-12 03:44:35 +01:00
}
2011-03-12 03:44:29 +01:00
first_sync() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 toto \
--passfile1 ../../var/pass/secret.toto \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--noauthmd5 \
--allow3xx
2011-03-12 03:39:59 +01:00
}
2011-03-12 03:44:29 +01:00
locallocal() {
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
2011-03-12 03:44:36 +01:00
sendtestmessage
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--allow3xx
2011-03-12 03:44:12 +01:00
}
2011-03-12 03:44:54 +01:00
ll_pidfile() {
$CMD_PERL ./imapsync \
--justbanner \
--pidfile /var/tmp/imapsync.pid
! test -f /var/tmp/imapsync.pid
}
2011-03-12 03:44:54 +01:00
2011-03-12 03:44:49 +01:00
ll_ask_password() {
{ sleep 2; cat ../../var/pass/secret.tata; } | \
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--justlogin
}
2011-03-12 03:44:54 +01:00
2011-03-12 03:44:40 +01:00
ll_timeout() {
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:54 +01:00
--folder INBOX --timeout 1
2011-03-12 03:44:40 +01:00
}
2011-03-12 03:44:54 +01:00
2011-03-12 03:44:40 +01:00
ll_timeout_ssl() {
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--folder INBOX --timeout 5 --ssl1 --ssl2 \
--allow3xx
2011-03-12 03:44:40 +01:00
}
2011-03-12 03:44:12 +01:00
2011-03-12 03:44:29 +01:00
ll_folder() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--folder INBOX.yop --folder INBOX.Trash \
--allow3xx
2011-03-12 03:39:59 +01:00
}
2011-03-12 03:44:37 +01:00
ll_oneemail() {
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--folder INBOX.oneemail \
--allow3xx
2011-03-12 03:44:37 +01:00
}
2011-03-12 03:44:30 +01:00
ll_folderrec() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--folderrec INBOX.yop \
--allow3xx
2011-03-12 03:44:30 +01:00
}
2011-03-12 03:43:43 +01:00
2011-03-12 03:44:29 +01:00
ll_buffersize() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--buffersize 8 \
--allow3xx
2011-03-12 03:44:15 +01:00
}
2011-03-12 03:44:29 +01:00
ll_justfolders() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--justfolders \
--allow3xx
echo "rm -rf /home/vmail/titi/.new_folder/"
2011-03-12 03:44:08 +01:00
}
2011-03-12 03:44:49 +01:00
ll_bug_folder_name_with_blank() {
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--justfolders \
--allow3xx
echo "rm -rf /home/vmail/titi/.bugs/"
}
2011-03-12 03:43:48 +01:00
2011-03-12 03:44:29 +01:00
ll_prefix12() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--folder INBOX.qqq \
--prefix1 INBOX.\
2011-03-12 03:44:43 +01:00
--prefix2 INBOX. \
--allow3xx
2011-03-12 03:44:19 +01:00
}
2011-03-12 03:44:29 +01:00
ll_internaldate() {
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
2011-03-12 03:44:36 +01:00
sendtestmessage
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--folder INBOX \
--syncinternaldates \
--allow3xx
2011-03-12 03:43:48 +01:00
}
2011-03-12 03:43:47 +01:00
2011-03-12 03:44:39 +01:00
ll_idatefromheader() {
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
2011-03-12 03:44:39 +01:00
sendtestmessage
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--folder INBOX.oneemail \
--idatefromheader --debug --dry \
--allow3xx
2011-03-12 03:44:39 +01:00
}
2011-03-12 03:43:47 +01:00
2011-03-12 03:44:29 +01:00
ll_folder_rev() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 titi \
--passfile1 ../../var/pass/secret.titi \
--host2 $HOST2 --user2 tata \
--passfile2 ../../var/pass/secret.tata \
2011-03-12 03:44:43 +01:00
--folder INBOX.yop \
2011-03-12 03:44:47 +01:00
--allow3xx
2011-03-12 03:43:43 +01:00
}
2011-03-12 03:39:59 +01:00
2011-03-12 03:44:29 +01:00
ll_subscribed()
2011-03-12 03:43:48 +01:00
{
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--subscribed \
--allow3xx
2011-03-12 03:43:49 +01:00
}
2011-03-12 03:43:48 +01:00
2011-03-12 03:39:59 +01:00
2011-03-12 03:44:29 +01:00
ll_subscribe()
2011-03-12 03:43:49 +01:00
{
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--subscribed --subscribe \
--allow3xx
2011-03-12 03:43:48 +01:00
}
2011-03-12 03:43:47 +01:00
2011-03-12 03:44:29 +01:00
ll_justconnect()
2011-03-12 03:44:20 +01:00
{
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host2 $HOST2 \
--host1 $HOST1 \
2011-03-12 03:44:43 +01:00
--justconnect \
--allow3xx
2011-03-12 03:44:20 +01:00
}
2011-03-12 03:44:29 +01:00
ll_justfoldersizes()
2011-03-12 03:43:50 +01:00
{
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:54 +01:00
--justfoldersizes
}
ll_dev_reconnect()
{
# in another terminal:
#
2011-03-12 03:44:54 +01:00
: <<'EOF'
while :; do
killall -u vmail imapd;
RAND_WAIT=`numrandom .1..5i.1`
echo sleeping $RAND_WAIT
sleepenh $RAND_WAIT
done
EOF
2011-03-12 03:44:54 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi
#--folder INBOX
#--debug --debugimap
2011-03-12 03:43:50 +01:00
}
2011-03-12 03:44:20 +01:00
2011-03-12 03:44:29 +01:00
ll_authmd5()
2011-03-12 03:43:50 +01:00
{
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:51 +01:00
--justlogin --authmd5 \
2011-03-12 03:44:43 +01:00
--allow3xx
2011-03-12 03:43:50 +01:00
}
2011-03-12 03:44:29 +01:00
ll_noauthmd5()
2011-03-12 03:43:53 +01:00
{
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--justfoldersizes --noauthmd5 \
--allow3xx
2011-03-12 03:43:53 +01:00
}
2011-03-12 03:43:50 +01:00
2011-03-12 03:44:29 +01:00
ll_maxage()
2011-03-12 03:43:50 +01:00
{
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
sendtestmessage
2011-03-12 03:44:36 +01:00
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--maxage 1 \
--allow3xx
2011-03-12 03:43:50 +01:00
}
2011-03-12 03:43:54 +01:00
2011-03-12 03:44:29 +01:00
ll_maxsize()
2011-03-12 03:43:50 +01:00
{
2011-03-12 03:44:47 +01:00
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
sendtestmessage
2011-03-12 03:44:36 +01:00
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--maxsize 10 \
--allow3xx
2011-03-12 03:43:50 +01:00
}
2011-03-12 03:43:47 +01:00
2011-03-12 03:44:29 +01:00
ll_skipsize()
2011-03-12 03:43:54 +01:00
{
2011-03-12 03:44:47 +01:00
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
sendtestmessage
2011-03-12 03:44:36 +01:00
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--skipsize --folder INBOX.yop.yap \
--allow3xx
2011-03-12 03:43:54 +01:00
}
2011-03-12 03:44:29 +01:00
ll_skipheader()
2011-03-12 03:43:54 +01:00
{
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
sendtestmessage
2011-03-12 03:44:36 +01:00
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:50 +01:00
--skipheader '^X-.*|^Date' --folder INBOX.yop.yap \
--allow3xx --debug
2011-03-12 03:43:54 +01:00
}
2011-03-12 03:44:29 +01:00
ll_include()
2011-03-12 03:43:51 +01:00
{
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
sendtestmessage
2011-03-12 03:44:36 +01:00
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--include '^INBOX.yop' \
--allow3xx
2011-03-12 03:43:51 +01:00
}
2011-03-12 03:44:36 +01:00
ll_exclude()
{
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
sendtestmessage
2011-03-12 03:44:36 +01:00
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--exclude '^INBOX.yop' \
--allow3xx
2011-03-12 03:44:36 +01:00
}
2011-03-12 03:44:29 +01:00
ll_regextrans2()
2011-03-12 03:43:55 +01:00
{
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
sendtestmessage
2011-03-12 03:44:36 +01:00
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:51 +01:00
--justfolders \
--nofoldersize \
--regextrans2 's/yop/yoX/' \
--folder 'INBOX.yop.yap'
}
ll_regextrans2_slash()
{
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--justfolders \
--nofoldersize \
--folder 'INBOX.yop.yap' \
--sep1 '/' \
--regextrans2 's,/,_,'
}
ll_regextrans2_remove_space()
{
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--justfolders \
--nofoldersize \
--folder 'INBOX.yop.y p' \
--regextrans2 's, ,,' \
--dry
2011-03-12 03:43:55 +01:00
}
2011-03-12 03:44:51 +01:00
2011-03-12 03:44:29 +01:00
ll_sep2()
2011-03-12 03:44:06 +01:00
{
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--folder INBOX.yop.yap \
2011-03-12 03:44:43 +01:00
--sep2 '\\' --dry \
--allow3xx
2011-03-12 03:44:06 +01:00
}
2011-03-12 03:44:29 +01:00
ll_bad_login()
2011-03-12 03:43:53 +01:00
{
2011-03-12 03:44:36 +01:00
! $CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 toto \
--passfile1 ../../var/pass/secret.toto \
--host2 $HOST2 --user2 notiti \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--allow3xx
2011-03-12 03:43:53 +01:00
}
2011-03-12 03:44:29 +01:00
ll_bad_host()
2011-03-12 03:43:53 +01:00
{
2011-03-12 03:44:36 +01:00
! $CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 badhost --user1 toto \
--passfile1 ../../var/pass/secret.toto \
--host2 badhost --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--allow3xx
2011-03-12 03:43:53 +01:00
}
2011-03-12 03:44:35 +01:00
ll_bad_host_ssl()
{
2011-03-12 03:44:36 +01:00
! $CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 badhost --user1 toto \
--passfile1 ../../var/pass/secret.toto \
--host2 badhost --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--ssl1 --ssl2 \
--allow3xx
2011-03-12 03:44:35 +01:00
}
2011-03-12 03:43:56 +01:00
2011-03-12 03:44:29 +01:00
ll_justfoldersizes()
2011-03-12 03:43:56 +01:00
{
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--justfoldersizes \
2011-03-12 03:44:47 +01:00
--allow3xx
2011-03-12 03:44:29 +01:00
}
2011-03-12 03:43:56 +01:00
2011-03-12 03:44:29 +01:00
ll_useheader()
{
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--folder INBOX.yop.yap \
--useheader 'Message-ID' \
2011-03-12 03:44:43 +01:00
--dry --debug \
--allow3xx
2011-03-12 03:44:36 +01:00
echo 'rm /home/vmail/tata/.yop.yap/cur/*'
2011-03-12 03:43:56 +01:00
}
2011-03-12 03:44:29 +01:00
ll_regexmess()
{
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:39 +01:00
rm -f /home/vmail/titi/.yop.yap/cur/*
2011-03-12 03:44:47 +01:00
fi
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--folder INBOX.yop.yap \
--regexmess 's/\157/O/g' \
--regexmess 's/p/Z/g' \
2011-03-12 03:44:43 +01:00
--debug \
--allow3xx
2011-03-12 03:44:47 +01:00
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
file=`ls -t /home/vmail/titi/.yop.yap/cur/* | tail -1`
diff ../../var/imapsync/tests/ll_regexmess/dest_01 $file
2011-03-12 03:44:39 +01:00
#echo 'rm -f /home/vmail/titi/.yop.yap/cur/*'
2011-03-12 03:44:47 +01:00
fi
2011-03-12 03:44:36 +01:00
}
ll_regexmess_scwchu()
{
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--folder INBOX.scwchu \
--regexmess 's{\A(.*?(?! ^$))^Date:(.*?)$}{$1Date:$2\nReceived: From; $2}gxms' \
--skipsize --skipheader 'Received: From;' \
2011-03-12 03:44:43 +01:00
--debug \
--allow3xx
2011-03-12 03:44:36 +01:00
echo 'rm /home/vmail/titi/.scwchu/cur/*'
2011-03-12 03:44:29 +01:00
}
ll_flags()
{
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--folder INBOX.yop.yap \
2011-03-12 03:44:51 +01:00
--debug
2011-03-12 03:44:36 +01:00
echo 'rm /home/vmail/titi/.yop.yap/cur/*'
2011-03-12 03:44:29 +01:00
}
ll_regex_flag()
{
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--folder INBOX.yop.yap \
2011-03-12 03:44:51 +01:00
--debug --regexflag 's/\\Answered/\\Seen/g'
2011-03-12 03:44:36 +01:00
2011-03-12 03:44:49 +01:00
echo 'rm -f /home/vmail/titi/.yop.yap/cur/*'
}
ll_regex_flag2()
{
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--folder INBOX.yop.yap \
--debug --regexflag s/\\\\Answered/\\\\Flagged/g
echo 'rm -f /home/vmail/titi/.yop.yap/cur/*'
2011-03-12 03:44:29 +01:00
}
2011-03-12 03:44:49 +01:00
ll_regex_flag3()
{
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--folder INBOX.yop.yap \
--debug --regexflag s/\\\\Answered//g
echo 'rm -f /home/vmail/titi/.yop.yap/cur/*'
}
2011-03-12 03:44:51 +01:00
ll_regex_flag_keep_only()
{
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--folder INBOX.yop.yap \
--debug \
--regexflag 's/(.*)/$1 jrdH8u/' \
--regexflag 's/.*?(\\Seen|\\Answered|\\Flagged|\\Deleted|\\Draft|jrdH8u)/$1 /g' \
--regexflag 's/(\\Seen|\\Answered|\\Flagged|\\Deleted|\\Draft|jrdH8u) (?!(\\Seen|\\Answered|\\Flagged|\\Deleted|\\Draft|jrdH8u)).*/$1 /g' \
--regexflag 's/jrdH8u *//'
echo 'rm -f /home/vmail/titi/.yop.yap/cur/*'
}
2011-03-12 03:44:49 +01:00
2011-03-12 03:44:51 +01:00
ll_tls_justconnect() {
$CMD_PERL ./imapsync \
--host1 l \
--host2 l \
--tls1 --tls2 \
--justconnect --debug
}
ll_tls_justlogin() {
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--tls1 --tls2 \
--justlogin --debug
}
ll_tls_devel() {
CMD_PERL='perl -I./Mail-IMAPClient-2.2.9' ll_justlogin ll_ssl_justlogin \
2011-03-12 03:44:53 +01:00
&& CMD_PERL='perl -I./Mail-IMAPClient-3.25/lib' ll_justlogin ll_ssl_justlogin \
2011-03-12 03:44:51 +01:00
&& CMD_PERL='perl -I./Mail-IMAPClient-2.2.9' ll_tls_justconnect ll_tls_justlogin \
2011-03-12 03:44:53 +01:00
&& CMD_PERL='perl -I./Mail-IMAPClient-3.25/lib' ll_tls_justconnect ll_tls_justlogin
2011-03-12 03:44:51 +01:00
}
ll_tls() {
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--tls1 --tls2
}
2011-03-12 03:44:49 +01:00
2011-03-12 03:44:47 +01:00
2011-03-12 03:44:51 +01:00
ll_ssl_justconnect() {
2011-03-12 03:44:40 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 \
--host2 $HOST2 \
2011-03-12 03:44:40 +01:00
--ssl1 --ssl2 \
2011-03-12 03:44:51 +01:00
--justconnect
}
ll_ssl_justlogin() {
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--ssl1 --ssl2 \
--justlogin
2011-03-12 03:44:40 +01:00
}
2011-03-12 03:44:51 +01:00
2011-03-12 03:44:29 +01:00
ll_ssl() {
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
sendtestmessage
2011-03-12 03:44:36 +01:00
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--ssl1 --ssl2 \
--allow3xx
2011-03-12 03:44:29 +01:00
}
ll_authmech_PLAIN() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--justfoldersizes --nofoldersizes \
2011-03-12 03:44:43 +01:00
--authmech1 PLAIN --authmech2 PLAIN \
2011-03-12 03:44:47 +01:00
--allow3xx
2011-03-12 03:44:29 +01:00
}
ll_authuser() {
2011-03-12 03:44:47 +01:00
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--justfoldersizes --nofoldersizes \
2011-03-12 03:44:47 +01:00
--authuser2 titi \
2011-03-12 03:44:43 +01:00
--allow3xx
2011-03-12 03:44:29 +01:00
}
ll_authmech_LOGIN() {
2011-03-12 03:44:47 +01:00
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--justfoldersizes --nofoldersizes \
2011-03-12 03:44:43 +01:00
--authmech1 LOGIN --authmech2 LOGIN \
--allow3xx
2011-03-12 03:44:29 +01:00
}
ll_authmech_CRAMMD5() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:36 +01:00
--justfoldersizes --nofoldersizes \
2011-03-12 03:44:43 +01:00
--authmech1 CRAM-MD5 --authmech2 CRAM-MD5 \
--allow3xx
2011-03-12 03:44:29 +01:00
}
ll_delete2() {
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
sendtestmessage titi
else
:
fi
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:29 +01:00
--folder INBOX \
2011-03-12 03:44:51 +01:00
--delete2 --expunge2
2011-03-12 03:44:29 +01:00
}
2011-03-12 03:44:51 +01:00
ll_delete() {
if can_send; then
sendtestmessage titi
else
:
fi
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 titi \
--passfile1 ../../var/pass/secret.titi \
--host2 $HOST2 --user2 tata \
--passfile2 ../../var/pass/secret.tata \
--folder INBOX \
--delete --expunge
}
2011-03-12 03:44:30 +01:00
ll_bigmail() {
2011-03-12 03:44:36 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:43 +01:00
--folder INBOX.bigmail \
--allow3xx
2011-03-12 03:44:36 +01:00
echo 'rm /home/vmail/titi/.bigmail/cur/*'
2011-03-12 03:44:30 +01:00
}
2011-03-12 03:44:35 +01:00
msw() {
2011-03-12 03:44:47 +01:00
sendtestmessage toto
2011-03-12 03:44:36 +01:00
scp imapsync Admin@192.168.68.77:'C:/msys/1.0/home/Admin/imapsync/imapsync'
ssh Admin@192.168.68.77 'C:/msys/1.0/home/Admin/imapsync/test.bat'
2011-03-12 03:44:35 +01:00
}
2011-03-12 03:44:39 +01:00
2011-03-12 03:44:40 +01:00
gmail() {
2011-03-12 03:44:47 +01:00
2011-03-12 03:44:40 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--allow3xx \
2011-03-12 03:44:40 +01:00
--host1 imap.gmail.com \
--ssl1 \
--user1 gilles.lamiral@gmail.com \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.gilles_gmail \
--host2 $HOST2 \
2011-03-12 03:44:40 +01:00
--ssl2 \
2011-03-12 03:44:47 +01:00
--user2 tata \
--passfile2 ../../var/pass/secret.tata \
2011-03-12 03:44:40 +01:00
--useheader 'Message-Id' --skipsize \
--regextrans2 's/\[Gmail\]/Gmail/' \
2011-03-12 03:44:47 +01:00
--authmech1 LOGIN \
--allowsizemismatch
2011-03-12 03:44:40 +01:00
#--dry # --debug --debugimap # --authmech1 LOGIN
2011-03-12 03:44:47 +01:00
2011-03-12 03:44:43 +01:00
}
2011-03-12 03:44:40 +01:00
2011-03-12 03:44:43 +01:00
gmail_gmail() {
2011-03-12 03:44:47 +01:00
2011-03-12 03:44:43 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--allow3xx \
2011-03-12 03:44:43 +01:00
--host1 imap.gmail.com \
--ssl1 \
--user1 gilles.lamiral@gmail.com \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.gilles_gmail \
2011-03-12 03:44:43 +01:00
--host2 imap.gmail.com \
--ssl2 \
--user2 gilles.lamiral@gmail.com \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.gilles_gmail \
2011-03-12 03:44:43 +01:00
--useheader 'Message-Id' --skipsize \
--regextrans2 's<>INBOX<4F>inbox_copy<70>' \
--folder INBOX \
2011-03-12 03:44:49 +01:00
--authmech1 LOGIN --authmech2 LOGIN \
--allowsizemismatch
2011-03-12 03:44:43 +01:00
#--dry # --debug --debugimap # --authmech1 LOGIN
}
gmail_gmail2() {
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--allow3xx \
2011-03-12 03:44:43 +01:00
--host1 imap.gmail.com \
--ssl1 \
--user1 gilles.lamiral@gmail.com \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.gilles_gmail \
2011-03-12 03:44:43 +01:00
--host2 imap.gmail.com \
--ssl2 \
--user2 imapsync.gl@gmail.com \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.imapsync.gl_gmail \
2011-03-12 03:44:43 +01:00
--useheader 'Message-Id' --skipsize \
--folder INBOX \
2011-03-12 03:44:49 +01:00
--authmech1 LOGIN --authmech2 LOGIN \
--allowsizemismatch
2011-03-12 03:44:43 +01:00
#--dry # --debug --debugimap # --authmech1 LOGIN
}
allow3xx() {
2011-03-12 03:44:51 +01:00
$CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:51 +01:00
--allow3xx --justlogin
2011-03-12 03:44:47 +01:00
}
2011-03-12 03:44:48 +01:00
noallow3xx() {
2011-03-12 03:44:53 +01:00
! perl -I./Mail-IMAPClient-3.25/lib ./imapsync \
2011-03-12 03:44:48 +01:00
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
2011-03-12 03:44:51 +01:00
--noallow3xx --justlogin
2011-03-12 03:44:48 +01:00
}
2011-03-12 03:44:47 +01:00
archiveopteryx_1() {
2011-03-12 03:44:48 +01:00
if can_send; then
2011-03-12 03:44:47 +01:00
#echo3 Here is plume
sendtestmessage je@lupus.aox.org
2011-03-12 03:44:43 +01:00
else
:
fi
2011-03-12 03:44:47 +01:00
$CMD_PERL ./imapsync \
--host1 lupus.aox.org --user1 je \
--passfile1 ../../var/pass/secret.aox_je \
--host2 lupus.aox.org --user2 je \
--passfile2 ../../var/pass/secret.aox_je \
--folder INBOX --regextrans2 's/INBOX/copy/' \
--allow3xx
}
2011-03-12 03:44:51 +01:00
ll_justlogin() {
2011-03-12 03:44:47 +01:00
# Look in the file ../../var/pass/secret.tptp to see
# strange \ character behavior
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 titi \
--passfile2 ../../var/pass/secret.titi \
--allow3xx --justlogin --noauthmd5
}
2011-03-12 03:44:51 +01:00
ll_justlogin_backslash_char() {
2011-03-12 03:44:47 +01:00
# Look in the file ../../var/pass/secret.tptp to see
# strange \ character behavior
$CMD_PERL ./imapsync \
--host1 $HOST1 --user1 tata \
--passfile1 ../../var/pass/secret.tata \
--host2 $HOST2 --user2 tptp@est.belle \
--passfile2 ../../var/pass/secret.tptp \
--allow3xx --justlogin --noauthmd5
2011-03-12 03:44:40 +01:00
}
2011-03-12 03:44:29 +01:00
##########################
# specific tests
##########################
2011-03-12 03:43:55 +01:00
big_transfert()
{
date1=`date`
2011-03-12 03:44:36 +01:00
{ $CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 gilles@est.belle \
--passfile1 ../../var/pass/secret.gilles_mbox \
--host2 $HOST2 --user2 tete@est.belle \
--passfile2 ../../var/pass/secret.tete \
--noauthmd5 \
--fast --folder INBOX.Trash \
2011-03-12 03:44:36 +01:00
--useheader Message-ID --useheader Received || \
2011-03-12 03:44:01 +01:00
true
}
date2=`date`
echo3 "[$date1] [$date2]"
}
big_transfert_sizes_only()
{
date1=`date`
2011-03-12 03:44:36 +01:00
{ $CMD_PERL ./imapsync \
2011-03-12 03:44:47 +01:00
--host1 $HOST1 --user1 gilles@est.belle \
--passfile1 ../../var/pass/secret.gilles_mbox \
--host2 $HOST2 --user2 tete@est.belle \
--passfile2 ../../var/pass/secret.tete \
--noauthmd5 \
--justfoldersizes --folder INBOX.Trash || \
2011-03-12 03:43:55 +01:00
true
}
date2=`date`
2011-03-12 03:44:01 +01:00
echo3 "[$date1] [$date2]"
2011-03-12 03:43:55 +01:00
}
2011-03-12 03:43:51 +01:00
2011-03-12 03:44:01 +01:00
2011-03-12 03:44:06 +01:00
dprof()
2011-03-12 03:44:01 +01:00
{
date1=`date`
{ perl -d:DProf ./imapsync \
2011-03-12 03:44:36 +01:00
--host1 louloutte --user1 gilles \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret \
2011-03-12 03:44:36 +01:00
--host2 plume --user2 tete@est.belle \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.tete \
2011-03-12 03:44:36 +01:00
--subscribed --foldersizes --noauthmd5 \
2011-03-12 03:44:06 +01:00
--folder INBOX.Trash || \
2011-03-12 03:44:01 +01:00
true
}
date2=`date`
echo3 "[$date1] [$date2]"
dprofpp tmon.out
}
2011-03-12 03:44:06 +01:00
essnet_justconnect()
{
./imapsync \
2011-03-12 03:44:36 +01:00
--host1 mail2.softwareuno.com \
--user1 gilles@mail2.softwareuno.com \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.prw \
2011-03-12 03:44:36 +01:00
--host2 mail.softwareuno.com \
--user2 gilles@softwareuno.com \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.prw \
2011-03-12 03:44:36 +01:00
--dry --noauthmd5 --sep1 / --foldersizes --justconnect
2011-03-12 03:44:06 +01:00
}
essnet_mail2_mail()
{
./imapsync \
2011-03-12 03:44:36 +01:00
--host1 mail2.softwareuno.com \
--user1 gilles@mail2.softwareuno.com \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.prw \
2011-03-12 03:44:36 +01:00
--host2 mail.softwareuno.com \
--user2 gilles@softwareuno.com \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.prw \
2011-03-12 03:44:36 +01:00
--noauthmd5 --sep1 / --foldersizes \
2011-03-12 03:44:11 +01:00
--prefix2 "INBOX/" --regextrans2 's<>INBOX/INBOX<4F>INBOX<4F>'
2011-03-12 03:44:06 +01:00
}
essnet_mail2_mail_t123()
{
for user1 in test1 test2 test3; do
2011-03-12 03:44:36 +01:00
./imapsync \
--host1 mail2.softwareuno.com \
--user1 ${user1}@mail2.softwareuno.com \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.prw \
2011-03-12 03:44:36 +01:00
--host2 mail.softwareuno.com \
--user2 gilles@softwareuno.com \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.prw \
2011-03-12 03:44:36 +01:00
--noauthmd5 --sep1 / --foldersizes \
--prefix2 "INBOX/" --regextrans2 's<>INBOX/INBOX<4F>INBOX<4F>' \
2011-03-12 03:44:23 +01:00
--debug \
2011-03-12 03:44:36 +01:00
|| true
2011-03-12 03:44:06 +01:00
done
}
essnet_plume2()
{
./imapsync \
2011-03-12 03:44:36 +01:00
--host1 mail2.softwareuno.com \
--user1 gilles@mail2.softwareuno.com \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.prw \
--host2 plume --user2 tata \
--passfile2 ../../var/pass/secret.tata \
2011-03-12 03:44:11 +01:00
--noauthmd5 --sep1 / --foldersizes \
2011-03-12 03:44:14 +01:00
--prefix2 INBOX. --regextrans2 's<>INBOX.INBOX<4F>INBOX<4F>'
2011-03-12 03:44:06 +01:00
}
2011-03-12 03:44:17 +01:00
dynamicquest_1()
{
perl -I bugs/lib ./imapsync \
2011-03-12 03:44:36 +01:00
--host1 69.38.48.81 \
--user1 testuser1@dq.com \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.dynamicquest \
2011-03-12 03:44:36 +01:00
--host2 69.38.48.81 \
--user2 testuser2@dq.com \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.dynamicquest \
2011-03-12 03:44:36 +01:00
--noauthmd5 --sep1 "/" --sep2 "/" \
--justconnect --dry
2011-03-12 03:44:17 +01:00
}
dynamicquest_2()
{
perl -I bugs/lib ./imapsync \
2011-03-12 03:44:36 +01:00
--host1 mail.dynamicquest.com \
--user1 gomez \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.dynamicquestgomez \
2011-03-12 03:44:36 +01:00
--host2 69.38.48.81 \
--user2 testuser2@dq.com \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.dynamicquest \
2011-03-12 03:44:36 +01:00
--noauthmd5 \
--justconnect --dry
2011-03-12 03:44:17 +01:00
}
dynamicquest_3()
{
perl -I bugs/lib ./imapsync \
2011-03-12 03:44:36 +01:00
--host1 loul \
--user1 tata \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.tata \
2011-03-12 03:44:36 +01:00
--host2 69.38.48.81 \
--user2 testuser2@dq.com \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.dynamicquest \
2011-03-12 03:44:36 +01:00
--noauthmd5 --sep2 "/" --debug --debugimap
2011-03-12 03:44:17 +01:00
}
2011-03-12 03:44:34 +01:00
mailenable() {
2011-03-12 03:44:36 +01:00
./imapsync \
--user1 imapsync@damashekconsulting.com \
--host1 imap.damashekconsulting.com \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.damashek \
2011-03-12 03:44:36 +01:00
--sep1 "." --prefix1 "" \
2011-03-12 03:44:47 +01:00
--host2 $HOST2 --user2 toto \
--passfile2 ../../var/pass/secret.toto \
2011-03-12 03:44:36 +01:00
--noauthmd5
2011-03-12 03:44:34 +01:00
}
ariasolutions() {
2011-03-12 03:44:36 +01:00
./imapsync \
--host1 209.17.174.20 \
--user1 chrisw@canadapack.com \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.ariasolutions \
2011-03-12 03:44:36 +01:00
--host2 209.17.174.20 \
--user2 chrisw@canadapack.com \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.ariasolutions \
2011-03-12 03:44:36 +01:00
--dry --noauthmd5 --justfoldersizes
./imapsync \
--host1 209.17.174.20 \
--user1 test@domain.local \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.ariasolutions \
2011-03-12 03:44:36 +01:00
--host2 209.17.174.20 \
--user2 test@domain.local \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.ariasolutions \
2011-03-12 03:44:36 +01:00
--dry --noauthmd5 --ssl1
2011-03-12 03:44:34 +01:00
# hang after auth failure
2011-03-12 03:44:36 +01:00
./imapsync \
--host1 209.17.174.20 \
--user1 test@domain.local \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.ariasolutions \
2011-03-12 03:44:36 +01:00
--host2 209.17.174.20 \
--user2 test@domain.local \
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.ariasolutions \
2011-03-12 03:44:36 +01:00
--dry --debug --debugimap
2011-03-12 03:44:34 +01:00
}
2011-03-12 03:44:35 +01:00
ariasolutions2() {
2011-03-12 03:44:36 +01:00
./imapsync \
--host1 209.17.174.12 \
--user1 chrisw@basebuilding.net \
2011-03-12 03:44:47 +01:00
--passfile1 ../../var/pass/secret.ariasolutions2 \
2011-03-12 03:44:36 +01:00
--host2 209.17.174.20 \
--user2 chrisw@basebuilding.net\
2011-03-12 03:44:47 +01:00
--passfile2 ../../var/pass/secret.ariasolutions2 \
2011-03-12 03:44:36 +01:00
--noauthmd5 --syncinternaldates
# --dry --debug --debugimap
2011-03-12 03:44:35 +01:00
2011-03-12 03:44:40 +01:00
}
genomics() {
# Blocked, timeout ignored
./imapsync \
2011-03-12 03:44:47 +01:00
--host1 mail.genomics.org.cn --user1 lamiral --passfile1 ../../var/pass/secret.genomics \
--host2 szmail.genomics.cn --user2 lamiral --passfile2 ../../var/pass/secret.genomics \
2011-03-12 03:44:40 +01:00
--sep1 . --prefix1 'INBOX.' --folder INBOX --useheader 'Message-Id' --expunge --skipsize \
--timeout 7 --debug --debugimap
2011-03-12 03:44:35 +01:00
}
2011-03-12 03:44:29 +01:00
##########################
##########################
2011-03-12 03:44:17 +01:00
2011-03-12 03:44:23 +01:00
2011-03-12 03:39:59 +01:00
# mandatory tests
2011-03-12 03:44:47 +01:00
run_tests perl_syntax
2011-03-12 03:39:59 +01:00
# All tests
test $# -eq 0 && run_tests \
2011-03-12 03:44:36 +01:00
no_args \
2011-03-12 03:44:35 +01:00
option_version \
2011-03-12 03:44:36 +01:00
option_tests \
2011-03-12 03:44:47 +01:00
option_bad_delete2 \
2011-03-12 03:44:48 +01:00
first_sync_dry \
2011-03-12 03:44:36 +01:00
first_sync \
locallocal \
2011-03-12 03:44:54 +01:00
ll_pidfile \
2011-03-12 03:44:49 +01:00
ll_ask_password \
ll_bug_folder_name_with_blank \
2011-03-12 03:44:40 +01:00
ll_timeout \
2011-03-12 03:44:36 +01:00
ll_folder \
ll_buffersize \
ll_justfolders \
ll_prefix12 \
ll_internaldate \
2011-03-12 03:44:39 +01:00
ll_idatefromheader \
2011-03-12 03:44:36 +01:00
ll_folder_rev \
ll_subscribed \
ll_subscribe \
ll_justfoldersizes \
ll_authmd5 \
ll_noauthmd5 \
ll_maxage \
ll_maxsize \
ll_skipsize \
ll_skipheader \
ll_include \
ll_exclude \
ll_regextrans2 \
ll_sep2 \
ll_bad_login \
ll_bad_host \
ll_bad_host_ssl \
ll_justfoldersizes \
ll_useheader \
ll_regexmess \
ll_regexmess_scwchu \
ll_flags \
ll_regex_flag \
2011-03-12 03:44:51 +01:00
ll_regex_flag_keep_only \
2011-03-12 03:44:51 +01:00
ll_justconnect \
ll_justlogin \
2011-03-12 03:44:36 +01:00
ll_ssl \
2011-03-12 03:44:51 +01:00
ll_ssl_justconnect \
ll_ssl_justlogin \
ll_tls_justconnect \
ll_tls_justlogin \
ll_tls \
2011-03-12 03:44:36 +01:00
ll_authmech_PLAIN \
ll_authmech_LOGIN \
ll_authmech_CRAMMD5 \
ll_authuser \
ll_delete2 \
2011-03-12 03:44:51 +01:00
ll_delete \
2011-03-12 03:44:36 +01:00
ll_folderrec \
ll_bigmail \
2011-03-12 03:44:40 +01:00
gmail \
2011-03-12 03:44:43 +01:00
gmail_gmail \
gmail_gmail2 \
2011-03-12 03:44:47 +01:00
archiveopteryx_1 \
2011-03-12 03:44:43 +01:00
allow3xx \
2011-03-12 03:44:48 +01:00
noallow3xx \
2011-03-12 03:44:47 +01:00
# msw
2011-03-12 03:44:51 +01:00
# ll_justlogin_backslash_char
2011-03-12 03:44:11 +01:00
2011-03-12 03:39:59 +01:00
# selective tests
2011-03-12 03:44:35 +01:00
test $# -gt 0 && run_tests "$@"
2011-03-12 03:39:59 +01:00
# If there, all is good
echo3 ALL $test_count TESTS SUCCESSFUL