]> git.notmuchmail.org Git - notmuch/commitdiff
clean up "compare thread ids" python test
authorPatrick Totzke <patricktotzke@googlemail.com>
Mon, 2 Jan 2012 14:51:26 +0000 (14:51 +0000)
committerSebastian Spaeth <Sebastian@SSpaeth.de>
Sun, 8 Jan 2012 12:46:25 +0000 (13:46 +0100)
This makes the test script open the database in READ_ONLY mode
and use the libraries own sorting methods instead of "sort".

test/python

index c3aa7266e285f0e6b6f4b2671ffed07663eab805..c318cc10ceea69f6c4c4f42e6a47afb9a62c0701 100755 (executable)
@@ -7,11 +7,12 @@ add_email_corpus
 test_begin_subtest "compare thread ids"
 test_python <<EOF
 import notmuch
 test_begin_subtest "compare thread ids"
 test_python <<EOF
 import notmuch
-db = notmuch.Database(mode=notmuch.Database.MODE.READ_WRITE)
+db = notmuch.Database(mode=notmuch.Database.MODE.READ_ONLY)
 q_new = notmuch.Query(db, 'tag:inbox')
 q_new = notmuch.Query(db, 'tag:inbox')
+q_new.set_sort(notmuch.Query.SORT.OLDEST_FIRST)
 for t in q_new.search_threads():
     print t.get_thread_id()
 EOF
 for t in q_new.search_threads():
     print t.get_thread_id()
 EOF
-notmuch search --output=threads tag:inbox | sed s/^thread:// | sort > EXPECTED
-test_expect_equal_file <(sort OUTPUT) EXPECTED
+notmuch search --sort=oldest-first --output=threads tag:inbox | sed s/^thread:// > EXPECTED
+test_expect_equal_file OUTPUT EXPECTED
 test_done
 test_done