summaryrefslogtreecommitdiff
path: root/tests/io/vcard/test-vcard-email.vala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/io/vcard/test-vcard-email.vala')
-rw-r--r--tests/io/vcard/test-vcard-email.vala104
1 files changed, 104 insertions, 0 deletions
diff --git a/tests/io/vcard/test-vcard-email.vala b/tests/io/vcard/test-vcard-email.vala
new file mode 100644
index 0000000..5ebecc7
--- /dev/null
+++ b/tests/io/vcard/test-vcard-email.vala
@@ -0,0 +1,104 @@
+/*
+ * Copyright (C) 2021 Niels De Graef <nielsdegraef@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+using Folks;
+
+void main (string[] args) {
+ Test.init (ref args);
+ Test.add_func ("/io/test_vcard_single_email", test_vcard_single_email);
+ Test.add_func ("/io/test_vcard_multiple_email", test_vcard_multiple_email);
+ Test.run ();
+}
+
+const string VCARD_SINGLE_EMAIL =
+"""
+BEGIN:VCARD
+VERSION:3.0
+FN:Niels De Graef
+EMAIL;TYPE=HOME:nielsdegraef@gmail.com
+END:VCARD
+""";
+
+private void test_vcard_single_email () {
+ var input = new MemoryInputStream.from_data (VCARD_SINGLE_EMAIL.data);
+
+ var parser = new Contacts.Io.VCardParser ();
+ Contacts.Contact[]? contacts = null;
+ try {
+ contacts = parser.parse (input);
+ } catch (Error err) {
+ error ("Error while importing: %s", err.message);
+ }
+
+ assert_nonnull (contacts);
+ if (contacts.length != 1)
+ error ("VCardParser parsed %u elements instead of 1", contacts.length);
+
+ unowned var contact = contacts[0];
+ var chunk = contact.get_most_relevant_chunk ("email-addresses", true);
+ assert_nonnull (chunk);
+
+ unowned var emails_chunk = (Contacts.EmailAddressesChunk) chunk;
+ var email_addr = (Contacts.EmailAddress) emails_chunk.get_item (0);
+ if (email_addr.raw_address != "nielsdegraef@gmail.com")
+ error ("Expected nielsdegraef@gmail.com but got '%s'",
+ email_addr.raw_address);
+}
+
+const string VCARD_MULTIPLE_EMAIL =
+"""
+BEGIN:VCARD
+VERSION:3.0
+FN:Niels De Graef
+EMAIL;TYPE=HOME:nielsdegraef@gmail.com
+EMAIL;TYPE=WORK:ndegraef@redhat.com
+END:VCARD
+""";
+
+private void test_vcard_multiple_email () {
+ var input = new MemoryInputStream.from_data (VCARD_MULTIPLE_EMAIL.data);
+
+ var parser = new Contacts.Io.VCardParser ();
+ Contacts.Contact[]? contacts = null;
+ try {
+ contacts = parser.parse (input);
+ } catch (Error err) {
+ error ("Error while importing: %s", err.message);
+ }
+
+ assert_nonnull (contacts);
+ if (contacts.length != 1)
+ error ("VCardParser parsed %u elements instead of 1", contacts.length);
+
+ unowned var contact = contacts[0];
+ var chunk = contact.get_most_relevant_chunk ("email-addresses", true);
+ assert_nonnull (chunk);
+
+ unowned var emails_chunk = (Contacts.EmailAddressesChunk) chunk;
+
+ // First email address
+ var email_addr1 = (Contacts.EmailAddress) emails_chunk.get_item (0);
+ if (email_addr1.raw_address != "nielsdegraef@gmail.com")
+ error ("Expected nielsdegraef@gmail.com but got '%s'",
+ email_addr1.raw_address);
+
+ // Second email address
+ var email_addr2 = (Contacts.EmailAddress) emails_chunk.get_item (1);
+ if (email_addr2.raw_address != "ndegraef@redhat.com")
+ error ("Expected ndegraef@redhat.com but got '%s'",
+ email_addr2.raw_address);
+}