summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/search/test/unit/test_searchLocalizationStrings.js
blob: 9de9b7eb0e45b02a3fbea44e45bb09a451bc003e (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* 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/. */

// tests that localization strings added in bug 484147 are defined in preferences

var gValidityManager = Cc[
  "@mozilla.org/mail/search/validityManager;1"
].getService(Ci.nsIMsgSearchValidityManager);

var gStringBundle = Services.strings.createBundle(
  "chrome://messenger/locale/search-attributes.properties"
);

// The following table of valid table scopes matches the allowable table
// scopes in nsMsgSearchValidityManager::GetTable
var kValidScopes = [
  Ci.nsMsgSearchScope.offlineMail,
  Ci.nsMsgSearchScope.offlineMailFilter,
  Ci.nsMsgSearchScope.onlineMail,
  Ci.nsMsgSearchScope.onlineMailFilter,
  Ci.nsMsgSearchScope.news,
  Ci.nsMsgSearchScope.newsFilter,
  Ci.nsMsgSearchScope.localNews,
  Ci.nsMsgSearchScope.LDAP,
  Ci.nsMsgSearchScope.LDAPAnd,
  Ci.nsMsgSearchScope.LocalAB,
  Ci.nsMsgSearchScope.LocalABAnd,
];

function run_test() {
  for (var index = 0; index < kValidScopes.length; ++index) {
    let scope = kValidScopes[index];
    let table = gValidityManager.getTable(scope);
    let attributes = table.getAvailableAttributes();
    let attribute;
    while ((attribute = attributes.pop()) && attribute) {
      let property = gValidityManager.getAttributeProperty(attribute);
      let valid = false;
      let localizedString;
      try {
        localizedString = gStringBundle.GetStringFromName(property);
        valid = true;
      } catch (e) {
        dump("\n" + e);
      }
      valid = valid && localizedString && localizedString.length > 0;
      if (!valid) {
        dump(
          "\nNo valid property for scope = " +
            scope +
            " attribute = " +
            attribute +
            " property = " +
            property
        );
      }
      Assert.ok(valid);
    }
  }
}