]> git.notmuchmail.org Git - notmuch/commit
Convert the actual tests to the new framework
authorMichal Sojka <sojkam1@fel.cvut.cz>
Thu, 10 Jun 2010 06:48:03 +0000 (08:48 +0200)
committerCarl Worth <cworth@cworth.org>
Thu, 16 Sep 2010 22:56:44 +0000 (15:56 -0700)
commit5398e6966a80e1aaad111e1fc0c61d0aa199a229
treef25e4da135e0035a188c4fb66038357841577c19
parent04d454f582ca3ba658d113403e2d849bed79ae30
Convert the actual tests to the new framework

The changes are:
- The notmuch-test was split into several files (t000?-*.sh).
- Removed helper functions which were moved to test-lib.sh
- Replaced every printf with test_expect_success.
- Test commands chained with && (test-lib.sh doesn't use "set -e" in
  order to complete the test suite even if something fails)
- Many variables such as ${MAIL_DIR} were properly quoted as they
  contain spaces.
- Changed quoting patterns in add_message and generate_message (single
  quotes are already used by the test framework).
- ${TEST_DIR} replaced by ${PWD}

QUICK HOWTO:

To run the whole test suite
    make

To run only a single test
   ./t0001-new.sh

To stop on the first error
   ./t0001-new.sh -i
then mail store and database can be inspected in
"trash directory.t0001-new"

To see the output of tests
   ./t0001-new.sh -v

To not remove trash directory at the end:
   ./t0001-new.sh -d

To run all tests verbosely:
   make GIT_TEST_OPTS="-v"

Signed-off-by: Michal Sojka <sojkam1@fel.cvut.cz>
14 files changed:
test/notmuch-test
test/t0000-basic.sh
test/t0001-new.sh [new file with mode: 0755]
test/t0002-search.sh [new file with mode: 0755]
test/t0003-json.sh [new file with mode: 0755]
test/t0004-thread-naming.sh [new file with mode: 0755]
test/t0005-reply.sh [new file with mode: 0755]
test/t0006-dump-restore.sh [new file with mode: 0755]
test/t0007-uuencode.sh [new file with mode: 0755]
test/t0008-threading-out-of-order.sh [new file with mode: 0755]
test/t0009-author-reordering.sh [new file with mode: 0755]
test/t0010-from-line-heuristics.sh [new file with mode: 0755]
test/t0011-long-msgid.sh [new file with mode: 0755]
test/t0012-encoding-issues.sh [new file with mode: 0755]