summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/import/test/unit/test_vcard_import.js
blob: 9ba0c5511a0179e093cf64f2c689ca61a97701bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
 * Tests importing an address book export in the LDAP data interchange (LDIF)
 * format and checks the accuracy of the imported address book's cards.
 * The current export contains only one card with most fields full.
 *
 * This test also checks for the following bugs:
 *   -Bug 439819: LDIF import does not include mozillahomestreet.
 *   -Bug 182128: Edit Card, Notes on several lines appear on one after
 *                export/import in text format *(only tests the import).
 */
function run_test() {
  // Due to the import code using nsIAbManager off the main thread, we need
  // to ensure that it is initialized before we start the main test.
  MailServices.ab;

  // test regular import (e.g. from file exported by another mail client)
  let file = do_get_file("resources/basic_vcard_addressbook.vcf");
  new AbImportHelper(
    file,
    "vcf",
    "basic_vcard_addressbook",
    "vcard_import"
  ).beginImport();

  // test import against file with extra newlines (e.g. as copy-pasted by
  // hand, a relatively unlikely but still reasonable use case to cover)
  file = do_get_file("resources/emptylines_vcard_addressbook.vcf");
  new AbImportHelper(
    file,
    "vcf",
    "emptylines_vcard_addressbook",
    "vcard_import"
  ).beginImport();
}