diff options
| author | David Bremner <david@tethera.net> | 2021-03-17 22:20:35 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-03-18 07:57:38 -0300 |
| commit | dcd4df2cc01e0628ea6f407687ae6e9eb07bf8fd (patch) | |
| tree | ee898ad106423119c663047d45190107edb93904 /test | |
| parent | 6967dcbb025280d33c9cd08502de7a5cdb051ae7 (diff) | |
test: add known broken test for long directory bug
In [1] Gregor Zattler explained the results of his hard work
tracking down a bug in notmuch with long directories. This test
duplicates the bug.
[1]: id:20210317194728.GB5561@no.workgroup
Diffstat (limited to 'test')
| -rwxr-xr-x | test/T050-new.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/T050-new.sh b/test/T050-new.sh index 76bda959..2985e24c 100755 --- a/test/T050-new.sh +++ b/test/T050-new.sh @@ -339,6 +339,20 @@ test_expect_code 1 "NOTMUCH_NEW --debug 2>&1" notmuch config set new.tags $OLDCONFIG +test_begin_subtest "Long directory names don't cause rescan" +test_subtest_known_broken +printf -v name 'z%.0s' {1..234} +generate_message [dir]=$name +NOTMUCH_NEW > OUTPUT +notmuch new >> OUTPUT +rm -r ${MAIL_DIR}/${name} +notmuch new >> OUTPUT +cat <<EOF > EXPECTED +Added 1 new message to the database. +No new mail. +No new mail. Removed 1 message. +EOF +test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "Xapian exception: read only files" chmod u-w ${MAIL_DIR}/.notmuch/xapian/*.* |
