t / t5100-mailinfo.shon commit Merge branch 'jk/maint-soliconv' into maint (027b5a4)
   1#!/bin/sh
   2#
   3# Copyright (c) 2005 Junio C Hamano
   4#
   5
   6test_description='git mailinfo and git mailsplit test'
   7
   8. ./test-lib.sh
   9
  10test_expect_success 'split sample box' \
  11        'git mailsplit -o. ../t5100/sample.mbox >last &&
  12        last=`cat last` &&
  13        echo total is $last &&
  14        test `cat last` = 11'
  15
  16for mail in `echo 00*`
  17do
  18        test_expect_success "mailinfo $mail" \
  19                "git mailinfo -u msg$mail patch$mail <$mail >info$mail &&
  20                echo msg &&
  21                diff ../t5100/msg$mail msg$mail &&
  22                echo patch &&
  23                diff ../t5100/patch$mail patch$mail &&
  24                echo info &&
  25                diff ../t5100/info$mail info$mail"
  26done
  27
  28test_expect_success 'respect NULs' '
  29
  30        git mailsplit -d3 -o. ../t5100/nul-plain &&
  31        cmp ../t5100/nul-plain 001 &&
  32        (cat 001 | git mailinfo msg patch) &&
  33        test 4 = $(wc -l < patch)
  34
  35'
  36
  37test_expect_success 'Preserve NULs out of MIME encoded message' '
  38
  39        git mailsplit -d5 -o. ../t5100/nul-b64.in &&
  40        cmp ../t5100/nul-b64.in 00001 &&
  41        git mailinfo msg patch <00001 &&
  42        cmp ../t5100/nul-b64.expect patch
  43
  44'
  45
  46test_expect_success 'mailinfo on from header without name works' '
  47
  48        mkdir info-from &&
  49        git mailsplit -oinfo-from "$TEST_DIRECTORY"/t5100/info-from.in &&
  50        test_cmp "$TEST_DIRECTORY"/t5100/info-from.in info-from/0001 &&
  51        git mailinfo info-from/msg info-from/patch \
  52          <info-from/0001 >info-from/out &&
  53        test_cmp "$TEST_DIRECTORY"/t5100/info-from.expect info-from/out
  54
  55'
  56
  57test_done