test: enable some more

This commit is contained in:
Dirk-Jan C. Binnema 2022-05-13 23:01:33 +03:00
parent 4edbe01aa0
commit 907751bc7b
3 changed files with 104 additions and 7 deletions

View File

@ -472,6 +472,93 @@ Content-Type: message/rfc822
}
static void
test_message_detect_attachment(void)
{
constexpr const char *msgtext =
R"(From: "DUCK, Donald" <donald@example.com>
Date: Tue, 3 May 2022 10:26:26 +0300
Message-ID: <SADKLAJCLKDJLAS-xheQjE__+hS-3tff=pTYpMUyGiJwNGF_DA@mail.gmail.com>
Subject: =?Windows-1252?Q?Purkuty=F6urakka?=
To: Hello <moika@example.com>
Content-Type: multipart/mixed; boundary="000000000000e687ed05de166d71"
--000000000000e687ed05de166d71
Content-Type: multipart/alternative; boundary="000000000000e687eb05de166d6f"
--000000000000e687eb05de166d6f
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
fyi
---------- Forwarded message ---------
From: Fooish Bar <foobar@example.com>
Date: Tue, 3 May 2022 at 08:59
Subject: Ty=C3=B6t
To: "DUCK, Donald" <donald@example.com>
Moi,
--
--000000000000e687eb05de166d6f
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
abc
--000000000000e687eb05de166d6f--
--000000000000e687ed05de166d71
Content-Type: application/pdf;
name="test1.pdf"
Content-Disposition: attachment;
filename="test2.pdf"
Content-Transfer-Encoding: base64
Content-ID: <18088cfd4bc5517c6321>
X-Attachment-Id: 18088cfd4bc5517c6321
JVBERi0xLjcKJeLjz9MKNyAwIG9iago8PCAvVHlwZSAvUGFnZSAvUGFyZW50IDEgMCBSIC9MYXN0
TW9kaWZpZWQgKEQ6MjAyMjA1MDMwODU3MzYrMDMnMDAnKSAvUmVzb3VyY2VzIDIgMCBSIC9NZWRp
cmVmCjM1NjE4CiUlRU9GCg==
--000000000000e687ed05de166d71--
)";
auto message{Message::make_from_text(msgtext)};
g_assert_true(!!message);
g_assert_true(message->path().empty());
g_assert_true(message->bcc().empty());
assert_equal(message->subject(), "Purkutyöurakka");
assert_equal(message->body_html().value_or(""), "abc\n");
assert_equal(message->body_text().value_or(""),
R"(fyi
---------- Forwarded message ---------
From: Fooish Bar <foobar@example.com>
Date: Tue, 3 May 2022 at 08:59
Subject: Työt
To: "DUCK, Donald" <donald@example.com>
Moi,
--
)");
g_assert_true(message->cc().empty());
g_assert_cmpuint(message->date(), ==, 1651562786);
g_assert_true(message->flags() == (Flags::HasAttachment));
g_assert_cmpuint(message->parts().size(), ==, 3);
for (auto&& part: message->parts())
g_info("%s %s",
part.is_attachment() ? "yes" : "no",
part.mime_type().value_or("boo").c_str());
}
int
main(int argc, char* argv[])
{
@ -487,6 +574,8 @@ main(int argc, char* argv[])
test_message_signed_encrypted);
g_test_add_func("/message/message/multipart-mixed-rfc822",
test_message_multipart_mixed_rfc822);
g_test_add_func("/message/message/detect-attachment",
test_message_detect_attachment);
return g_test_run();
}

View File

@ -19,11 +19,11 @@
#
# BROKEN on ubuntu CI, but works elsewhere. Investigate
# test('test-cmd',
# executable('test-cmd',
# 'test-mu-cmd.cc',
# install: false,
# dependencies: [glib_dep, lib_test_mu_common_dep, config_h_dep, lib_mu_dep]))
test('test-cmd',
executable('test-cmd',
'test-mu-cmd.cc',
install: false,
dependencies: [glib_dep, lib_test_mu_common_dep, config_h_dep, lib_mu_dep]))
test('test-cmd-cfind',
executable('test-cmd-cfind',

View File

@ -31,6 +31,7 @@
#include "test-mu-common.hh"
#include "mu-store.hh"
#include "mu-query.hh"
#include "utils/mu-result.hh"
#include "utils/mu-utils.hh"
using namespace Mu;
@ -120,8 +121,9 @@ search_func(const char* query, unsigned expected)
static void
test_mu_index(void)
{
Mu::Store store{DBPATH + "/xapian", true};
g_assert_cmpuint(store.size(), ==, 13);
auto store = Store::make(DBPATH + "/xapian");
assert_valid_result(store);
g_assert_cmpuint(store->size(), ==, 13);
}
static void
@ -822,6 +824,12 @@ main(int argc, char* argv[])
{
int rv;
/* currently, something is broken on Ubuntu CI (but not elsewhere);
* selectively turn this test off */
if (!g_getenv("RUN_TEST_MU_CMD"))
return 0;
g_test_init(&argc, &argv, NULL);
if (!set_en_us_utf8_locale())