summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/addrbook/test/unit/test_nsAbManager6.js
blob: 05beb37a9e97d0d5f1211afa4661d024485729e6 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, you can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

/**
 * Tests getMailListFromName() and mailListNameExists() which relies on it.
 */
add_task(function testGetMailListFromName() {
  loadABFile("../../../data/abLists1", kPABData.fileName);

  for (let listName of ["TestList1", "TestList2", "TestList3"]) {
    Assert.ok(
      MailServices.ab.mailListNameExists(listName),
      `AddrBookManager has ${listName}`
    );

    let list = MailServices.ab.getMailListFromName(listName);
    Assert.ok(list, `"${listName}" is not null`);
    Assert.equal(
      list.dirName,
      listName,
      `"${listName}" dirName is "${listName}"`
    );
  }
});