mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 11:58:10 +01:00
test: ruby: refactor test_ruby()
There's no point in repeating the same initialization in all the tests. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
parent
8cbd8e71d0
commit
a75a9a5aed
1 changed files with 11 additions and 37 deletions
|
@ -9,17 +9,21 @@ fi
|
||||||
add_email_corpus
|
add_email_corpus
|
||||||
|
|
||||||
test_ruby() {
|
test_ruby() {
|
||||||
MAIL_DIR=$MAIL_DIR $NOTMUCH_RUBY -I "$NOTMUCH_BUILDDIR/bindings/ruby"> OUTPUT
|
(
|
||||||
}
|
cat <<-\EOF
|
||||||
|
|
||||||
test_begin_subtest "compare thread ids"
|
|
||||||
test_ruby <<"EOF"
|
|
||||||
require 'notmuch'
|
require 'notmuch'
|
||||||
$maildir = ENV['MAIL_DIR']
|
$maildir = ENV['MAIL_DIR']
|
||||||
if not $maildir then
|
if not $maildir then
|
||||||
abort('environment variable MAIL_DIR must be set')
|
abort('environment variable MAIL_DIR must be set')
|
||||||
end
|
end
|
||||||
@db = Notmuch::Database.new($maildir)
|
@db = Notmuch::Database.new($maildir)
|
||||||
|
EOF
|
||||||
|
cat
|
||||||
|
) | MAIL_DIR=$MAIL_DIR $NOTMUCH_RUBY -I "$NOTMUCH_BUILDDIR/bindings/ruby"> OUTPUT
|
||||||
|
}
|
||||||
|
|
||||||
|
test_begin_subtest "compare thread ids"
|
||||||
|
test_ruby <<"EOF"
|
||||||
@q = @db.query('tag:inbox')
|
@q = @db.query('tag:inbox')
|
||||||
@q.sort = Notmuch::SORT_OLDEST_FIRST
|
@q.sort = Notmuch::SORT_OLDEST_FIRST
|
||||||
for t in @q.search_threads do
|
for t in @q.search_threads do
|
||||||
|
@ -31,12 +35,6 @@ test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
test_begin_subtest "compare message ids"
|
test_begin_subtest "compare message ids"
|
||||||
test_ruby <<"EOF"
|
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 = @db.query('tag:inbox')
|
||||||
@q.sort = Notmuch::SORT_OLDEST_FIRST
|
@q.sort = Notmuch::SORT_OLDEST_FIRST
|
||||||
for m in @q.search_messages do
|
for m in @q.search_messages do
|
||||||
|
@ -48,12 +46,6 @@ test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
test_begin_subtest "get non-existent file"
|
test_begin_subtest "get non-existent file"
|
||||||
test_ruby <<"EOF"
|
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')
|
result = @db.find_message_by_filename('i-dont-exist')
|
||||||
print (result == nil)
|
print (result == nil)
|
||||||
EOF
|
EOF
|
||||||
|
@ -61,12 +53,6 @@ test_expect_equal "$(cat OUTPUT)" "true"
|
||||||
|
|
||||||
test_begin_subtest "count messages"
|
test_begin_subtest "count messages"
|
||||||
test_ruby <<"EOF"
|
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 = @db.query('tag:inbox')
|
||||||
print @q.count_messages(),"\n"
|
print @q.count_messages(),"\n"
|
||||||
EOF
|
EOF
|
||||||
|
@ -75,12 +61,6 @@ test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
test_begin_subtest "count threads"
|
test_begin_subtest "count threads"
|
||||||
test_ruby <<"EOF"
|
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 = @db.query('tag:inbox')
|
||||||
print @q.count_threads(),"\n"
|
print @q.count_threads(),"\n"
|
||||||
EOF
|
EOF
|
||||||
|
@ -89,12 +69,6 @@ test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
test_begin_subtest "get all tags"
|
test_begin_subtest "get all tags"
|
||||||
test_ruby <<"EOF"
|
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()
|
@t = @db.all_tags()
|
||||||
for tag in @t do
|
for tag in @t do
|
||||||
print tag,"\n"
|
print tag,"\n"
|
||||||
|
|
Loading…
Reference in a new issue