mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
85ae2bcf56
It exists since 2013, let's allow it to be used in Ruby. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
85 lines
2 KiB
Bash
Executable file
85 lines
2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
test_description="ruby bindings"
|
|
. $(dirname "$0")/test-lib.sh || exit 1
|
|
|
|
if [ "${NOTMUCH_HAVE_RUBY_DEV}" = "0" ]; then
|
|
test_subtest_missing_external_prereq_["ruby development files"]=t
|
|
fi
|
|
|
|
add_email_corpus
|
|
|
|
test_ruby() {
|
|
(
|
|
cat <<-EOF
|
|
require 'notmuch'
|
|
db = Notmuch::Database.new('$MAIL_DIR')
|
|
EOF
|
|
cat
|
|
) | $NOTMUCH_RUBY -I "$NOTMUCH_BUILDDIR/bindings/ruby"> OUTPUT
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
}
|
|
|
|
test_begin_subtest "compare thread ids"
|
|
notmuch search --sort=oldest-first --output=threads tag:inbox > EXPECTED
|
|
test_ruby <<"EOF"
|
|
q = db.query('tag:inbox')
|
|
q.sort = Notmuch::SORT_OLDEST_FIRST
|
|
q.search_threads.each do |t|
|
|
puts 'thread:%s' % t.thread_id
|
|
end
|
|
EOF
|
|
|
|
test_begin_subtest "compare message ids"
|
|
notmuch search --sort=oldest-first --output=messages tag:inbox > EXPECTED
|
|
test_ruby <<"EOF"
|
|
q = db.query('tag:inbox')
|
|
q.sort = Notmuch::SORT_OLDEST_FIRST
|
|
q.search_messages.each do |m|
|
|
puts 'id:%s' % m.message_id
|
|
end
|
|
EOF
|
|
|
|
test_begin_subtest "get non-existent file"
|
|
echo nil > EXPECTED
|
|
test_ruby <<"EOF"
|
|
p db.find_message_by_filename('i-dont-exist')
|
|
EOF
|
|
|
|
test_begin_subtest "count messages"
|
|
notmuch count --output=messages tag:inbox > EXPECTED
|
|
test_ruby <<"EOF"
|
|
puts db.query('tag:inbox').count_messages()
|
|
EOF
|
|
|
|
test_begin_subtest "count threads"
|
|
notmuch count --output=threads tag:inbox > EXPECTED
|
|
test_ruby <<"EOF"
|
|
puts db.query('tag:inbox').count_threads()
|
|
EOF
|
|
|
|
test_begin_subtest "get all tags"
|
|
notmuch search --output=tags '*' > EXPECTED
|
|
test_ruby <<"EOF"
|
|
db.all_tags.each do |tag|
|
|
puts tag
|
|
end
|
|
EOF
|
|
|
|
notmuch config set search.exclude_tags deleted
|
|
generate_message '[subject]="Good"'
|
|
generate_message '[subject]="Bad"' "[in-reply-to]=\<$gen_msg_id\>"
|
|
notmuch new > /dev/null
|
|
notmuch tag +deleted id:$gen_msg_id
|
|
|
|
test_begin_subtest "omit excluded all"
|
|
notmuch search --output=threads --exclude=all tag:inbox > EXPECTED
|
|
test_ruby <<"EOF"
|
|
q = db.query('tag:inbox')
|
|
q.add_tag_exclude('deleted')
|
|
q.omit_excluded = Notmuch::EXCLUDE_ALL
|
|
q.search_threads.each do |t|
|
|
puts 'thread:%s' % t.thread_id
|
|
end
|
|
EOF
|
|
|
|
test_done
|