store: add mu_move_message dup flag test

Test the new functionality
This commit is contained in:
Dirk-Jan C. Binnema 2022-12-07 12:31:02 +02:00
parent 87c3ceb7b1
commit 0b516c18c2
1 changed files with 78 additions and 1 deletions

View File

@ -22,6 +22,7 @@
#include <glib.h>
#include <stdlib.h>
#include <thread>
#include <array>
#include <unistd.h>
#include <time.h>
#include <fstream>
@ -384,6 +385,81 @@ Yes, that would be excellent.
}
static void
test_store_move_dups()
{
const std::string msg_text =
R"(From: Valentine Michael Smith <mike@example.com>
To: Raul Endymion <raul@example.com>
Subject: Re: multi-eq hash tables
Date: Tue, 03 May 2022 20:58:02 +0200
Message-ID: <87h766tzzz.fsf@gnus.org>
Yes, that would be excellent.
)";
TempDir tempdir2;
// create a message file + dups
const auto res1 = maildir_mkdir(tempdir2.path() + "/Maildir/a");
assert_valid_result(res1);
const auto res2 = maildir_mkdir(tempdir2.path() + "/Maildir/b");
assert_valid_result(res2);
auto msg1_path = tempdir2.path() + "/Maildir/a/new/msg123";
auto msg2_path = tempdir2.path() + "/Maildir/a/cur/msgabc:2,S";
auto msg3_path = tempdir2.path() + "/Maildir/b/cur/msgdef:2,RS";
TempDir tempdir;
auto store{Store::make_new(tempdir.path(), tempdir2.path() + "/Maildir", {}, {})};
assert_valid_result(store);
std::vector<Store::Id> ids;
for (auto&& p: {msg1_path, msg2_path, msg3_path}) {
std::ofstream output{p};
output.write(msg_text.c_str(), msg_text.size());
output.close();
auto res = store->add_message(p);
assert_valid_result(res);
ids.emplace_back(*res);
}
g_assert_cmpuint(store->size(), ==, 3);
// mark main message (+ dups) as seen
auto mres = store->move_message(ids.at(0), {},
Flags::Seen | Flags::Flagged | Flags::Passed,
Store::MoveOptions::DupFlags);
assert_valid_result(mres);
// al three dups should have been updated
g_assert_cmpuint(mres->size(), ==, 3);
// first should be the original
g_assert_cmpuint(mres->at(0).first, ==, ids.at(0));
{ // Message 1
const Message& msg = mres->at(0).second;
assert_equal(msg.path(), tempdir2.path() + "/Maildir/a/cur/msg123:2,FPS");
g_assert_true(msg.flags() == (Flags::Seen|Flags::Flagged|Flags::Passed));
}
// note: Seen and Passed should be added to msg2/3, but Flagged shouldn't
// msg3 should loose its R flag.
auto check_msg2 = [&](const Message& msg) {
assert_equal(msg.path(), tempdir2.path() + "/Maildir/a/cur/msgabc:2,PS");
};
auto check_msg3 = [&](const Message& msg) {
assert_equal(msg.path(), tempdir2.path() + "/Maildir/b/cur/msgdef:2,PS");
};
if (mres->at(1).first == ids.at(1)) {
check_msg2(mres->at(1).second);
check_msg3(mres->at(2).second);
} else {
check_msg2(mres->at(2).second);
check_msg3(mres->at(1).second);
}
}
static void
test_store_fail()
{
@ -412,7 +488,8 @@ main(int argc, char* argv[])
test_message_mailing_list);
g_test_add_func("/store/message/attachments",
test_message_attachments);
g_test_add_func("/store/index/move", test_index_move);
g_test_add_func("/store/index/index-move", test_index_move);
g_test_add_func("/store/index/move-dups", test_store_move_dups);
g_test_add_func("/store/index/fail", test_store_fail);
return g_test_run();