2015-06-01 09:09:02 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
test_description="ruby bindings"
|
2017-09-25 22:38:19 +02:00
|
|
|
. $(dirname "$0")/test-lib.sh || exit 1
|
2015-06-01 09:09:02 +02:00
|
|
|
|
|
|
|
if [ "${NOTMUCH_HAVE_RUBY_DEV}" = "0" ]; then
|
|
|
|
test_subtest_missing_external_prereq_["ruby development files"]=t
|
|
|
|
fi
|
|
|
|
|
|
|
|
add_email_corpus
|
|
|
|
|
|
|
|
test_begin_subtest "compare thread ids"
|
|
|
|
test_ruby <<"EOF"
|
|
|
|
require 'notmuch'
|
|
|
|
$maildir = ENV['MAIL_DIR']
|
|
|
|
if not $maildir then
|
|
|
|
abort('environment variable MAIL_DIR must be set')
|
|
|
|
end
|
|
|
|
@db = Notmuch::Database.new($maildir)
|
|
|
|
@q = @db.query('tag:inbox')
|
|
|
|
@q.sort = Notmuch::SORT_OLDEST_FIRST
|
|
|
|
for t in @q.search_threads do
|
|
|
|
print t.thread_id, "\n"
|
|
|
|
end
|
|
|
|
EOF
|
|
|
|
notmuch search --sort=oldest-first --output=threads tag:inbox | sed s/^thread:// > EXPECTED
|
2017-04-05 02:36:29 +02:00
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
2015-06-01 09:09:02 +02:00
|
|
|
|
|
|
|
test_begin_subtest "compare message ids"
|
|
|
|
test_ruby <<"EOF"
|
|
|
|
require 'notmuch'
|
|
|
|
$maildir = ENV['MAIL_DIR']
|
|
|
|
if not $maildir then
|
|
|
|
abort('environment variable MAIL_DIR must be set')
|
|
|
|
end
|
|
|
|
@db = Notmuch::Database.new($maildir)
|
|
|
|
@q = @db.query('tag:inbox')
|
|
|
|
@q.sort = Notmuch::SORT_OLDEST_FIRST
|
|
|
|
for m in @q.search_messages do
|
|
|
|
print m.message_id, "\n"
|
|
|
|
end
|
|
|
|
EOF
|
|
|
|
notmuch search --sort=oldest-first --output=messages tag:inbox | sed s/^id:// > EXPECTED
|
2017-04-05 02:36:29 +02:00
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
2015-06-01 09:09:02 +02:00
|
|
|
|
|
|
|
test_begin_subtest "get non-existent file"
|
|
|
|
test_ruby <<"EOF"
|
|
|
|
require 'notmuch'
|
|
|
|
$maildir = ENV['MAIL_DIR']
|
|
|
|
if not $maildir then
|
|
|
|
abort('environment variable MAIL_DIR must be set')
|
|
|
|
end
|
|
|
|
@db = Notmuch::Database.new($maildir)
|
|
|
|
result = @db.find_message_by_filename('i-dont-exist')
|
|
|
|
print (result == nil)
|
|
|
|
EOF
|
|
|
|
test_expect_equal "$(cat OUTPUT)" "true"
|
|
|
|
|
|
|
|
test_begin_subtest "count messages"
|
|
|
|
test_ruby <<"EOF"
|
|
|
|
require 'notmuch'
|
|
|
|
$maildir = ENV['MAIL_DIR']
|
|
|
|
if not $maildir then
|
|
|
|
abort('environment variable MAIL_DIR must be set')
|
|
|
|
end
|
|
|
|
@db = Notmuch::Database.new($maildir)
|
|
|
|
@q = @db.query('tag:inbox')
|
|
|
|
print @q.count_messages(),"\n"
|
|
|
|
EOF
|
|
|
|
notmuch count --output=messages tag:inbox > EXPECTED
|
2017-04-05 02:36:29 +02:00
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
2015-06-01 09:09:02 +02:00
|
|
|
|
|
|
|
test_begin_subtest "count threads"
|
|
|
|
test_ruby <<"EOF"
|
|
|
|
require 'notmuch'
|
|
|
|
$maildir = ENV['MAIL_DIR']
|
|
|
|
if not $maildir then
|
|
|
|
abort('environment variable MAIL_DIR must be set')
|
|
|
|
end
|
|
|
|
@db = Notmuch::Database.new($maildir)
|
|
|
|
@q = @db.query('tag:inbox')
|
|
|
|
print @q.count_threads(),"\n"
|
|
|
|
EOF
|
|
|
|
notmuch count --output=threads tag:inbox > EXPECTED
|
2017-04-05 02:36:29 +02:00
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
2015-06-01 09:09:02 +02:00
|
|
|
|
2016-03-06 12:56:28 +01:00
|
|
|
test_begin_subtest "get all tags"
|
|
|
|
test_ruby <<"EOF"
|
|
|
|
require 'notmuch'
|
|
|
|
$maildir = ENV['MAIL_DIR']
|
|
|
|
if not $maildir then
|
|
|
|
abort('environment variable MAIL_DIR must be set')
|
|
|
|
end
|
|
|
|
@db = Notmuch::Database.new($maildir)
|
|
|
|
@t = @db.all_tags()
|
|
|
|
for tag in @t do
|
|
|
|
print tag,"\n"
|
|
|
|
end
|
|
|
|
EOF
|
|
|
|
notmuch search --output=tags '*' > EXPECTED
|
2017-04-05 02:36:29 +02:00
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
2016-03-06 12:56:28 +01:00
|
|
|
|
2015-06-01 09:09:02 +02:00
|
|
|
test_done
|