]> git.notmuchmail.org Git - notmuch/blob - test/emacs-large-search-buffer
emacs: Display any unexpected output from notmuch search
[notmuch] / test / emacs-large-search-buffer
1 #!/bin/bash
2 test_description="Emacs with large search results buffer"
3 . test-lib.sh
4
5 x=xxxxxxxxxx # 10
6 x=$x$x$x$x$x$x$x$x$x$x # 100
7 x=$x$x$x$x$x$x$x$x$x # 900
8
9 # We generate a long subject here (over 900 bytes) so that the emacs
10 # search results get large quickly. With 30 such messages we should
11 # cross several 4kB page boundaries and see the bug.
12 n=30
13 for i in $(seq 1 $n); do
14   # Roughly 100B2 KiB per message.  That is, we need two messages in order to
15   # exceed the typical size of the pipe buffer (4 KiB on commodity systems).
16   generate_message '[subject]="$x $i of $n"'
17 done
18
19 notmuch new > /dev/null
20
21 test_begin_subtest 'Comparing emacs result to "notmuch search"'
22 expected="$(notmuch search '*' | sed -e 's/^thread:[0-9a-f]*  //' -e 's/;//' -e  's/xx*/[BLOB]/')
23 End of search results."
24 output=$(test_emacs '(notmuch-search "*") (notmuch-test-wait) (message (buffer-string))' 2>&1 | sed -e s',  *, ,g' -e 's/xxx*/[BLOB]/g')
25 test_expect_equal "$output" "$expected"
26
27 test_done