unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob e902cdb3041c57be3f9b88a50d3eb0bb574b2dbc 2720 bytes (raw)
name: test/T395-ruby.sh 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
 
#!/usr/bin/env bash
test_description="ruby bindings"
. $(dirname "$0")/test-lib.sh || exit 1

if [[ -z "${NOTMUCH_TEST_INSTALLED}" && "${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()
	EOF
	cat
    ) | if [[ -n "${NOTMUCH_TEST_INSTALLED}" ]]; then
	ruby
    else
	$NOTMUCH_RUBY -I "$NOTMUCH_BUILDDIR/bindings/ruby"
    fi> 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_begin_subtest "check sort argument"
notmuch search --sort=oldest-first --output=threads tag:inbox > EXPECTED
test_ruby <<"EOF"
q = db.query('tag:inbox', sort: Notmuch::SORT_OLDEST_FIRST)
q.search_threads.each do |t|
  puts 'thread:%s' % t.thread_id
end
EOF

test_begin_subtest "check exclude_tags argument"
notmuch search --output=threads --exclude=all tag:inbox > EXPECTED
test_ruby <<"EOF"
q = db.query('tag:inbox', exclude_tags: %w[deleted], omit_excluded: Notmuch::EXCLUDE_ALL)
q.search_threads.each do |t|
  puts 'thread:%s' % t.thread_id
end
EOF

test_done

debug log:

solving e902cdb3 ...
found e902cdb3 in https://yhetil.org/notmuch/20230409142627.2216080-5-david@tethera.net/
found c066c842 in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100755 c066c84268f3bc07be067f498c0f55949db7b640	test/T395-ruby.sh

applying [1/1] https://yhetil.org/notmuch/20230409142627.2216080-5-david@tethera.net/
diff --git a/test/T395-ruby.sh b/test/T395-ruby.sh
index c066c842..e902cdb3 100755

Checking patch test/T395-ruby.sh...
Applied patch test/T395-ruby.sh cleanly.

index at:
100755 e902cdb3041c57be3f9b88a50d3eb0bb574b2dbc	test/T395-ruby.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).