Skip to content

Commit

Permalink
t: add mseq and mflag tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncaen committed Mar 30, 2017
1 parent 617e494 commit 2287e89
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
35 changes: 35 additions & 0 deletions t/7000-mseq.t
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'

)
35 changes: 35 additions & 0 deletions t/8000-mflag.t
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'

)

0 comments on commit 2287e89

Please sign in to comment.