X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2FT395-ruby.sh;h=94fab10661630ef12af274063964a6bbfc83b9bc;hb=c1b99d6f949bbbd0eef1f70baa2a02c1857093b2;hp=52f9fe0f8bfd7e8ee224f50b4b3785c6888a1c69;hpb=0aba694c11846f76cfa64470d10a50cec8e43bd5;p=notmuch diff --git a/test/T395-ruby.sh b/test/T395-ruby.sh index 52f9fe0f..94fab106 100755 --- a/test/T395-ruby.sh +++ b/test/T395-ruby.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash test_description="ruby bindings" -. ./test-lib.sh || exit 1 +. $(dirname "$0")/test-lib.sh || exit 1 if [ "${NOTMUCH_HAVE_RUBY_DEV}" = "0" ]; then test_subtest_missing_external_prereq_["ruby development files"]=t @@ -8,14 +8,19 @@ fi add_email_corpus +test_ruby() { + ( + cat <<-\EOF + require 'notmuch' + $maildir = ENV['MAIL_DIR'] || abort('MAIL_DIR not set') + @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" -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 @@ -27,12 +32,6 @@ test_expect_equal_file EXPECTED OUTPUT 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 @@ -44,12 +43,6 @@ test_expect_equal_file EXPECTED OUTPUT 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 @@ -57,12 +50,6 @@ 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 @@ -71,12 +58,6 @@ test_expect_equal_file EXPECTED OUTPUT 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 @@ -85,12 +66,6 @@ test_expect_equal_file EXPECTED OUTPUT 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"