From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- .../addrbook/test/unit/test_ldapOffline.js | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 comm/mailnews/addrbook/test/unit/test_ldapOffline.js (limited to 'comm/mailnews/addrbook/test/unit/test_ldapOffline.js') diff --git a/comm/mailnews/addrbook/test/unit/test_ldapOffline.js b/comm/mailnews/addrbook/test/unit/test_ldapOffline.js new file mode 100644 index 0000000000..ed81344d03 --- /dev/null +++ b/comm/mailnews/addrbook/test/unit/test_ldapOffline.js @@ -0,0 +1,47 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* + * Test suite to check that we correctly get child cards for LDAP directories + * when offline and that we don't crash. + */ + +var kLDAPUriPrefix = "moz-abldapdirectory://"; +var kLDAPTestSpec = "ldap://invalidhost//dc=intranet??sub?(objectclass=*)"; + +// Main function for the this test so we can check both personal and +// collected books work correctly in an easy manner. +function run_test() { + // If nsIAbLDAPDirectory doesn't exist in our build options, someone has + // specified --disable-ldap + if (!("nsIAbLDAPDirectory" in Ci)) { + return; + } + + // Test set-up + let abUri = MailServices.ab.newAddressBook( + "test", + kLDAPTestSpec, + Ci.nsIAbManager.LDAP_DIRECTORY_TYPE + ); + + let abDir = MailServices.ab + .getDirectory(kLDAPUriPrefix + abUri) + .QueryInterface(Ci.nsIAbLDAPDirectory); + + const kLDAPFileName = "ldap-1.sqlite"; + + // Test setup - copy the data file into place + loadABFile("data/cardForEmail", kLDAPFileName); + + // And tell the ldap directory we want this file. + abDir.replicationFileName = kLDAPFileName; + + // Now go offline + Services.io.offline = true; + + // Make sure we clear any memory that is now loose, so that the crash would + // be triggered. + gc(); + + // Now try and get the card that has been replicated for offline use. + Assert.equal(abDir.childCards.length, 5); +} -- cgit v1.2.3