summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/xpcshell/test_hasbinarycomponents.js
blob: 598e06ed09bfe4767b892a5e09b8d119f09bf7ef (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

// Tests detection of binary components via parsing of chrome manifests.

const profileDir = gProfD.clone();
profileDir.append("extensions");

function run_test() {
  do_test_pending();
  createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "2", "2");

  startupManager();
  
  installAllFiles([do_get_addon("test_chromemanifest_1"),
                   do_get_addon("test_chromemanifest_2"),
                   do_get_addon("test_chromemanifest_3"),
                   do_get_addon("test_chromemanifest_4"),
                   do_get_addon("test_chromemanifest_5")],
                  function() {

    restartManager();

    AddonManager.getAddonsByIDs(["addon1@tests.mozilla.org",
                                 "addon2@tests.mozilla.org",
                                 "addon3@tests.mozilla.org",
                                 "addon4@tests.mozilla.org",
                                 "addon5@tests.mozilla.org"],
                                function([a1, a2, a3, a4, a5]) {
      // addon1 has no binary components
      do_check_neq(a1, null);
      do_check_false(a1.userDisabled);
      do_check_false(a1.hasBinaryComponents);
      do_check_true(a1.isCompatible);
      do_check_false(a1.appDisabled);
      do_check_true(a1.isActive);
      do_check_true(isExtensionInAddonsList(profileDir, a1.id));

      // addon2 has a binary component, is compatible
      do_check_neq(a2, null);
      do_check_false(a2.userDisabled);
      do_check_true(a2.hasBinaryComponents);
      do_check_true(a2.isCompatible);
      do_check_false(a2.appDisabled);
      do_check_true(a2.isActive);
      do_check_true(isExtensionInAddonsList(profileDir, a2.id));

      // addon3 has a binary component, is incompatible
      do_check_neq(a3, null);
      do_check_false(a3.userDisabled);
      do_check_true(a2.hasBinaryComponents);
      do_check_false(a3.isCompatible);
      do_check_true(a3.appDisabled);
      do_check_false(a3.isActive);
      do_check_false(isExtensionInAddonsList(profileDir, a3.id));

      // addon4 has a binary component listed in a sub-manifest, is incompatible
      do_check_neq(a4, null);
      do_check_false(a4.userDisabled);
      do_check_true(a2.hasBinaryComponents);
      do_check_false(a4.isCompatible);
      do_check_true(a4.appDisabled);
      do_check_false(a4.isActive);
      do_check_false(isExtensionInAddonsList(profileDir, a4.id));

      // addon5 has a binary component, but is set to not unpack
      do_check_neq(a5, null);
      do_check_false(a5.userDisabled);
      if (TEST_UNPACKED)
        do_check_true(a5.hasBinaryComponents);
      else
        do_check_false(a5.hasBinaryComponents);
      do_check_true(a5.isCompatible);
      do_check_false(a5.appDisabled);
      do_check_true(a5.isActive);
      do_check_true(isExtensionInAddonsList(profileDir, a5.id));

      do_execute_soon(do_test_finished);
    });
  });
}