mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
f83cd2a05a
All operations and (Xapian) fields will eventually have an entry in the prefixes table. The flags field is just a placeholder for now, but will eventually distinguish between various kinds of prefixes.
93 lines
3.2 KiB
Bash
Executable file
93 lines
3.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
test_description='"notmuch search" in several variations'
|
|
. $(dirname "$0")/test-lib.sh || exit 1
|
|
|
|
if [ $NOTMUCH_HAVE_SFSEXP -ne 1 ]; then
|
|
printf "Skipping due to missing sfsexp library\n"
|
|
test_done
|
|
fi
|
|
|
|
add_email_corpus
|
|
|
|
for query in '()' '(not)' '(and)' '(or ())' '(or (not))' '(or (and))' \
|
|
'(or (and) (or) (not (and)))'; do
|
|
test_begin_subtest "all messages: $query"
|
|
notmuch search '*' > EXPECTED
|
|
notmuch search --query=sexp "$query" > OUTPUT
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
done
|
|
|
|
for query in '(or)' '(not ())' '(not (not))' '(not (and))' \
|
|
'(not (or (and) (or) (not (and))))'; do
|
|
test_begin_subtest "no messages: $query"
|
|
notmuch search --query=sexp "$query" > OUTPUT
|
|
test_expect_equal_file /dev/null OUTPUT
|
|
done
|
|
|
|
test_begin_subtest "and of exact terms"
|
|
notmuch search --query=sexp '(and "wonderful" "wizard")' | notmuch_search_sanitize > OUTPUT
|
|
cat <<EOF > EXPECTED
|
|
thread:XXX 2009-11-18 [1/3] Carl Worth| Jan Janak; [notmuch] What a great idea! (inbox unread)
|
|
EOF
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
test_begin_subtest "or of exact terms"
|
|
notmuch search --query=sexp '(or "php" "wizard")' | notmuch_search_sanitize > OUTPUT
|
|
cat <<EOF > EXPECTED
|
|
thread:XXX 2010-12-29 [1/1] François Boulogne; [aur-general] Guidelines: cp, mkdir vs install (inbox unread)
|
|
thread:XXX 2009-11-18 [1/3] Carl Worth| Jan Janak; [notmuch] What a great idea! (inbox unread)
|
|
EOF
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
test_begin_subtest "single term in body"
|
|
notmuch search --query=sexp 'wizard' | notmuch_search_sanitize>OUTPUT
|
|
cat <<EOF > EXPECTED
|
|
thread:XXX 2009-11-18 [1/3] Carl Worth| Jan Janak; [notmuch] What a great idea! (inbox unread)
|
|
EOF
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
test_begin_subtest "single term in body (case insensitive)"
|
|
notmuch search --query=sexp 'Wizard' | notmuch_search_sanitize>OUTPUT
|
|
cat <<EOF > EXPECTED
|
|
thread:XXX 2009-11-18 [1/3] Carl Worth| Jan Janak; [notmuch] What a great idea! (inbox unread)
|
|
EOF
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
test_begin_subtest "single term in body, stemmed version"
|
|
notmuch search arriv > EXPECTED
|
|
notmuch search --query=sexp arriv > OUTPUT
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
test_begin_subtest "single term in body, unstemmed version"
|
|
notmuch search --query=sexp '"arriv"' > OUTPUT
|
|
test_expect_equal_file /dev/null OUTPUT
|
|
|
|
test_begin_subtest "Unbalanced parens"
|
|
# A code 1 indicates the error was handled (a crash will return e.g. 139).
|
|
test_expect_code 1 "notmuch search --query=sexp '('"
|
|
|
|
test_begin_subtest "Unbalanced parens, error message"
|
|
notmuch search --query=sexp '(' >OUTPUT 2>&1
|
|
cat <<EOF > EXPECTED
|
|
notmuch search: Syntax error in query
|
|
invalid s-expression: '('
|
|
EOF
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
test_begin_subtest "unknown prefix"
|
|
notmuch search --query=sexp '(foo)' >OUTPUT 2>&1
|
|
cat <<EOF > EXPECTED
|
|
notmuch search: Syntax error in query
|
|
unknown prefix 'foo'
|
|
EOF
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
test_begin_subtest "list as prefix"
|
|
notmuch search --query=sexp '((foo))' >OUTPUT 2>&1
|
|
cat <<EOF > EXPECTED
|
|
notmuch search: Syntax error in query
|
|
unexpected list in field/operation position
|
|
EOF
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
test_done
|