unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 50012c558f5dba53ea3ab91fde6214ae3d50f33b 1299 bytes (raw)
name: test/T392-python-cffi-notmuch.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
 
#!/usr/bin/env bash
test_description="python bindings (notmuch test suite)"
. $(dirname "$0")/test-lib.sh || exit 1

if [ $NOTMUCH_HAVE_PYTHON3_CFFI -eq 0 -o $NOTMUCH_HAVE_PYTHON3_PYTEST -eq 0 ]; then
    test_done
fi

add_email_corpus

cat <<EOF > recurse.py
from notmuch2 import Database
def show_msgs(msgs, level):
    print('{:s} {:s}'.format(' ' * level*4, type(msgs).__name__))
    for msg in msgs:
        print('{:s} {:s}'.format(' ' * (level*4+2), type(msg).__name__))
        replies=msg.replies()
        show_msgs(replies, level+1)
db = Database(config=Database.CONFIG.SEARCH)
msg=db.find("87ocn0qh6d.fsf@yoom.home.cworth.org")
threads = db.threads(query="thread:"+msg.threadid)
thread = next (threads)
show_msgs(thread, 0)
EOF

test_begin_subtest "recursive traversal of replies (no crash)"
test_subtest_known_broken
test_python < recurse.py
error=$?
test_expect_equal "${error}" 0

test_begin_subtest "recursive traversal of replies (output)"
test_subtest_known_broken
test_python < recurse.py
tail -n 10 < OUTPUT > OUTPUT.sample
cat <<EOF > EXPECTED
   OwnedMessage
     MessageIter
   OwnedMessage
     MessageIter
       OwnedMessage
         MessageIter
   OwnedMessage
     MessageIter
   OwnedMessage
     MessageIter
EOF
test_expect_equal_file EXPECTED OUTPUT.sample

test_done

debug log:

solving 50012c55 ...
found 50012c55 in https://yhetil.org/notmuch.git/

(*) 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).