X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=test%2FREADME;h=ce403cef298dd8aaeac60ab94b49a029d7839ed4;hp=44ff653aa2bd5b56c73b795ee06341b7d87f7bba;hb=02a2eeb427d6b424029f6e5e5ddad4c6ec987741;hpb=8ae753f30fb90419c50b9bb1fc87618dd1663bc9 diff --git a/test/README b/test/README index 44ff653a..ce403cef 100644 --- a/test/README +++ b/test/README @@ -56,7 +56,7 @@ The following command-line options are available when running tests: run the tests with this option in parallel. --root=:: - This runs the testsuites specified under a seperate directory. + This runs the testsuites specified under a separate directory. However, caution is advised, as not all tests are maintained with this relocation in mind, so some tests may behave differently. @@ -64,17 +64,38 @@ The following command-line options are available when running tests: Pointing this argument at a tmpfs filesystem can improve the speed of the test suite for some users. +Certain tests require precomputed databases to complete. You can fetch these +databases with + + make download-test-databases + +If you do not download the test databases, the relevant tests will be +skipped. + When invoking the test suite via "make test" any of the above options can be specified as follows: make test OPTIONS="--verbose" -You can choose an emacs binary to run the tests in one of the -following ways. +You can choose an emacs binary (and corresponding emacsclient) to run +the tests in one of the following ways. + + TEST_EMACS=my-special-emacs TEST_EMACSCLIENT=my-emacsclient make test + TEST_EMACS=my-special-emacs TEST_EMACSCLIENT=my-emacsclient ./emacs + make test TEST_EMACS=my-special-emacs TEST_EMACSCLIENT=my-emacsclient + +Some tests may require a c compiler. You can choose the name and flags similarly +to with emacs, e.g. + + make test TEST_CC=gcc TEST_CFLAGS="-g -O2" + +Quiet Execution +--------------- - TEST_EMACS=my-special-emacs make test - TEST_EMACS=my-special-emacs ./emacs - make test TEST_EMACS=my-special-emacs +Normally, when new script starts and when test PASSes you get a message +printed on screen. This printing can be disabled by setting the +NOTMUCH_TEST_QUIET variable to a non-null value. Message on test +failures and skips are still printed. Skipping Tests -------------- @@ -117,7 +138,7 @@ Source 'test-lib.sh' After assigning test_description, the test script should source test-lib.sh like this: - . ./test-lib.sh + . ./test-lib.sh || exit 1 This test harness library does the following things: @@ -176,12 +197,19 @@ library for your script to use. will generate a failure and print the difference of the two strings. - test_expect_equal_file + test_expect_equal_file - Identical to test_exepect_equal, except that and - are files instead of strings. This is a much more - robust method to compare formatted textual information, since it - also notices whitespace and closing newline differences. + Identical to test_expect_equal, except that and + are files instead of strings. This is a much more robust method to + compare formatted textual information, since it also notices + whitespace and closing newline differences. + + test_expect_equal_json + + Identical to test_expect_equal, except that the two strings are + treated as JSON and canonicalized before equality testing. This is + useful to abstract away from whitespace differences in the expected + output and that generated by running a notmuch command. test_debug