]> git.notmuchmail.org Git - notmuch/blob - test/T530-upgrade.sh
util: Fix two corner-cases in boolean term quoting function
[notmuch] / test / T530-upgrade.sh
1 #!/usr/bin/env bash
2 test_description="database upgrade"
3
4 . ./test-lib.sh
5
6 dbtarball=database-v1.tar.xz
7
8 # XXX: Accomplish the same with test lib helpers
9 if [ ! -e ${TEST_DIRECTORY}/test-databases/${dbtarball} ]; then
10     test_subtest_missing_external_prereq_["${dbtarball} - fetch with 'make download-test-databases'"]=t
11 fi
12
13 test_expect_success \
14     'database checksum' \
15     '( cd $TEST_DIRECTORY/test-databases &&
16        sha256sum --quiet --check --status ${dbtarball}.sha256 )'
17
18 tar xf $TEST_DIRECTORY/test-databases/${dbtarball} -C ${MAIL_DIR} --strip-components=1
19
20 test_begin_subtest "folder: search does not work with old database version"
21 output=$(notmuch search folder:foo)
22 test_expect_equal "$output" ""
23
24 test_begin_subtest "path: search does not work with old database version"
25 output=$(notmuch search path:foo)
26 test_expect_equal "$output" ""
27
28 test_begin_subtest "database upgrade from format version 1"
29 output=$(notmuch new)
30 test_expect_equal "$output" "\
31 Welcome to a new version of notmuch! Your database will now be upgraded.
32 Your notmuch database has now been upgraded to database format version 2.
33 No new mail."
34
35 test_begin_subtest "folder: no longer matches in the middle of path"
36 output=$(notmuch search folder:baz)
37 test_expect_equal "$output" ""
38
39 test_begin_subtest "folder: search"
40 output=$(notmuch search --output=files folder:foo | notmuch_search_files_sanitize | sort)
41 test_expect_equal "$output" "MAIL_DIR/foo/06:2,
42 MAIL_DIR/foo/cur/07:2,
43 MAIL_DIR/foo/cur/08:2,
44 MAIL_DIR/foo/new/03:2,
45 MAIL_DIR/foo/new/09:2,
46 MAIL_DIR/foo/new/10:2,"
47
48 test_begin_subtest "top level folder: search"
49 output=$(notmuch search --output=files folder:'""' | notmuch_search_files_sanitize | sort)
50 # bar/18:2, is a duplicate of cur/51:2,
51 test_expect_equal "$output" "MAIL_DIR/01:2,
52 MAIL_DIR/02:2,
53 MAIL_DIR/bar/18:2,
54 MAIL_DIR/cur/29:2,
55 MAIL_DIR/cur/30:2,
56 MAIL_DIR/cur/31:2,
57 MAIL_DIR/cur/32:2,
58 MAIL_DIR/cur/33:2,
59 MAIL_DIR/cur/34:2,
60 MAIL_DIR/cur/35:2,
61 MAIL_DIR/cur/36:2,
62 MAIL_DIR/cur/37:2,
63 MAIL_DIR/cur/38:2,
64 MAIL_DIR/cur/39:2,
65 MAIL_DIR/cur/40:2,
66 MAIL_DIR/cur/41:2,
67 MAIL_DIR/cur/42:2,
68 MAIL_DIR/cur/43:2,
69 MAIL_DIR/cur/44:2,
70 MAIL_DIR/cur/45:2,
71 MAIL_DIR/cur/46:2,
72 MAIL_DIR/cur/47:2,
73 MAIL_DIR/cur/48:2,
74 MAIL_DIR/cur/49:2,
75 MAIL_DIR/cur/50:2,
76 MAIL_DIR/cur/51:2,
77 MAIL_DIR/cur/52:2,
78 MAIL_DIR/cur/53:2,
79 MAIL_DIR/new/04:2,"
80
81 test_begin_subtest "path: search"
82 output=$(notmuch search --output=files path:"bar" | notmuch_search_files_sanitize | sort)
83 # cur/51:2, is a duplicate of bar/18:2,
84 test_expect_equal "$output" "MAIL_DIR/bar/17:2,
85 MAIL_DIR/bar/18:2,
86 MAIL_DIR/cur/51:2,"
87
88 test_begin_subtest "top level path: search"
89 output=$(notmuch search --output=files path:'""' | notmuch_search_files_sanitize | sort)
90 test_expect_equal "$output" "MAIL_DIR/01:2,
91 MAIL_DIR/02:2,"
92
93 test_begin_subtest "recursive path: search"
94 output=$(notmuch search --output=files path:"bar/**" | notmuch_search_files_sanitize | sort)
95 # cur/51:2, is a duplicate of bar/18:2,
96 test_expect_equal "$output" "MAIL_DIR/bar/17:2,
97 MAIL_DIR/bar/18:2,
98 MAIL_DIR/bar/baz/05:2,
99 MAIL_DIR/bar/baz/23:2,
100 MAIL_DIR/bar/baz/24:2,
101 MAIL_DIR/bar/baz/cur/25:2,
102 MAIL_DIR/bar/baz/cur/26:2,
103 MAIL_DIR/bar/baz/new/27:2,
104 MAIL_DIR/bar/baz/new/28:2,
105 MAIL_DIR/bar/cur/19:2,
106 MAIL_DIR/bar/cur/20:2,
107 MAIL_DIR/bar/new/21:2,
108 MAIL_DIR/bar/new/22:2,
109 MAIL_DIR/cur/51:2,"
110
111 test_done