forked from leahneukirchen/mblaze
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/sh -e | ||
cd ${0%/*} | ||
. ./lib.sh | ||
plan 8 | ||
|
||
rm -rf test.dir | ||
mkdir test.dir | ||
( | ||
cd test.dir | ||
|
||
cat <<! >seq | ||
inbox/cur/1:2, | ||
inbox/cur/2:2, | ||
inbox/cur/3:2, | ||
inbox/cur/4:2, | ||
inbox/cur/5_1:2, | ||
inbox/cur/6_2:2, | ||
inbox/cur/7_3:2, | ||
inbox/cur/8_4:2, | ||
inbox/cur/9:2, | ||
inbox/cur/10:2, | ||
! | ||
|
||
export MAILCUR=cur MAILSEQ=seq | ||
|
||
check 'set current' 'mseq -C 1 && mseq . | grep "inbox/cur/1:2,"' | ||
check 'set next' 'mseq -C + && mseq . | grep "inbox/cur/2:2,"' | ||
check 'set prev' 'mseq -C - && mseq . | grep "inbox/cur/1:2,"' | ||
check 'last' 'mseq "$" | grep "inbox/cur/10:2,"' | ||
check 'whole thread' 'mseq 6= | wc -l | grep -qx 4' | ||
check 'subthread' 'mseq 7_ | wc -l | grep -qx 2' | ||
check 'parent' 'mseq 6^ | grep "inbox/cur/5_1:2,"' | ||
check 'range' 'mseq 1:3 | wc -l | grep -qx 3' | ||
|
||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/sh -e | ||
cd ${0%/*} | ||
. ./lib.sh | ||
plan 12 | ||
|
||
rm -rf test.dir | ||
mkdir test.dir | ||
( | ||
cd test.dir | ||
|
||
cat <<! >seq | ||
inbox/cur/1:2, | ||
inbox/cur/2:2, | ||
! | ||
|
||
mkdir -p inbox/cur | ||
while read f; do touch "$f"; done <seq | ||
ln -sf inbox/cur/1:2, cur | ||
|
||
export MAILSEQ=seq MAILCUR=cur | ||
|
||
check 'mark seen' 'mflag -S 1 && [ -e "inbox/cur/1:2,S" ]' | ||
check 'fix seq' 'mseq -f | mseq -S | wc -l | grep -qx 2' | ||
check 'mark replied' 'mflag -R 1 && [ -e "inbox/cur/1:2,RS" ]' | ||
check 'fix seq' 'mseq -f | mseq -S | wc -l | grep -qx 2' | ||
check 'unmark replied' 'mflag -r 1 && [ -e "inbox/cur/1:2,S" ]' | ||
check 'fix seq' 'mseq -f | mseq -S | wc -l | grep -qx 2' | ||
check 'mark flagged' 'mflag -F 1 && [ -e "inbox/cur/1:2,FS" ]' | ||
check 'fix seq' 'mseq -f | mseq -S | wc -l | grep -qx 2' | ||
check 'unmark flagged' 'mflag -f 1 && [ -e "inbox/cur/1:2,S" ]' | ||
check 'fix seq' 'mseq -f | mseq -S | wc -l | grep -qx 2' | ||
check 'unmark seen' 'mflag -s 1 && [ -e "inbox/cur/1:2," ]' | ||
check 'fix seq' 'mseq -f | mseq -S | wc -l | grep -qx 2' | ||
|
||
) |