43 lines
1.5 KiB
Vala
43 lines
1.5 KiB
Vala
/*
|
|
* Copyright 2018 Michael Gratton <mike@vee.net>
|
|
*
|
|
* This software is licensed under the GNU Lesser General Public License
|
|
* (version 2.1 or later). See the COPYING file in this distribution.
|
|
*/
|
|
|
|
class Geary.AccountInformationTest : TestCase {
|
|
|
|
|
|
public AccountInformationTest() {
|
|
base("Geary.AccountInformationTest");
|
|
add_test("has_email_address", has_email_address);
|
|
}
|
|
|
|
public void has_email_address() throws GLib.Error {
|
|
AccountInformation test = new AccountInformation(
|
|
"test", new MockServiceInformation(), new MockServiceInformation()
|
|
);
|
|
|
|
test.primary_mailbox = (new RFC822.MailboxAddress(null, "test1@example.com"));
|
|
test.add_alternate_mailbox(new RFC822.MailboxAddress(null, "test2@example.com"));
|
|
test.add_alternate_mailbox(new RFC822.MailboxAddress(null, "test3@example.com"));
|
|
|
|
assert_true(
|
|
test.has_email_address(new RFC822.MailboxAddress(null, "test1@example.com")),
|
|
"Primary address not found"
|
|
);
|
|
assert_true(
|
|
test.has_email_address(new RFC822.MailboxAddress(null, "test2@example.com")),
|
|
"First alt address not found"
|
|
);
|
|
assert_true(
|
|
test.has_email_address(new RFC822.MailboxAddress(null, "test3@example.com")),
|
|
"Second alt address not found"
|
|
);
|
|
assert_false(
|
|
test.has_email_address(new RFC822.MailboxAddress(null, "unknowne@example.com")),
|
|
"Unknown address found"
|
|
);
|
|
}
|
|
|
|
}
|