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.
t/1702-mshow-attachments.t: add tests for named part/attachment detec…
…tion
- Loading branch information
1 parent
e618e57
commit 75cb672
Showing
1 changed file
with
53 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,53 @@ | ||
#!/bin/sh -e | ||
cd ${0%/*} | ||
. ./lib.sh | ||
plan 2 | ||
|
||
# Different naming scenarios for named parts | ||
cat <<EOF >tmp | ||
Content-Type: multipart/mixed; boundary=----_NextPart_000_00DE_01D6A2E8.A7446C80 | ||
------_NextPart_000_00DE_01D6A2E8.A7446C80 | ||
no header, part is not attachment | ||
------_NextPart_000_00DE_01D6A2E8.A7446C80 | ||
Content-Type: text/plain; charset=UTF-8 | ||
CT w/o name, part is not attachment | ||
------_NextPart_000_00DE_01D6A2E8.A7446C80 | ||
Content-Type: text/plain; charset=UTF-8; name="ctn.txt" | ||
CT with name, part is attachment | ||
------_NextPart_000_00DE_01D6A2E8.A7446C80 | ||
Content-Disposition: attachment | ||
CD w/o filename, part is not attachment | ||
------_NextPart_000_00DE_01D6A2E8.A7446C80 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Disposition: attachment | ||
CD w/o filename, CT w/o name, part is not attachment | ||
------_NextPart_000_00DE_01D6A2E8.A7446C80 | ||
Content-Type: text/plain; charset=UTF-8; name="cd_ctn.txt" | ||
Content-Disposition: attachment | ||
CD w/o filename, CT with name, part is attachment | ||
------_NextPart_000_00DE_01D6A2E8.A7446C80 | ||
Content-Disposition: attachment; filename="cdf.txt" | ||
CD with filename, part is attachment | ||
------_NextPart_000_00DE_01D6A2E8.A7446C80 | ||
Content-Type: text/plain; charset=UTF-8; name="cdf_ct.txt" | ||
Content-Disposition: attachment | ||
CD with filename, CT w/o name, part is attachment | ||
------_NextPart_000_00DE_01D6A2E8.A7446C80 | ||
Content-Type: text/plain; charset=UTF-8; name="cdf_ctn.txt" | ||
Content-Disposition: attachment; filename="cdf_ctn.txt" | ||
CD with filename, CT with name, part is attachment | ||
------_NextPart_000_00DE_01D6A2E8.A7446C80-- | ||
EOF | ||
|
||
check 'mail has 10 parts' 'mshow -t ./tmp | wc -l | grep 11' | ||
check 'mail has 5 named parts/attachments' 'mshow -t ./tmp | grep .*name=\".*\" | wc -l | grep 5' |