summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/xpcshell/test_targetPlatforms.js
blob: ef4f2aee562ea9e7d0aa262f7f09e8df1a7f0fcf (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

// This verifies that the targetPlatform entries are checked when deciding
// if an add-on is incompatible.

// No targetPlatforms so should be compatible
var addon1 = {
  id: "addon1@tests.mozilla.org",
  version: "1.0",
  name: "Test 1",
  targetApplications: [{
    id: "xpcshell@tests.mozilla.org",
    minVersion: "1",
    maxVersion: "1"
  }]
};

// Matches the OS
var addon2 = {
  id: "addon2@tests.mozilla.org",
  version: "1.0",
  name: "Test 2",
  targetPlatforms: [
    "XPCShell",
    "WINNT_x86",
    "XPCShell"
  ],
  targetApplications: [{
    id: "xpcshell@tests.mozilla.org",
    minVersion: "1",
    maxVersion: "1"
  }]
};

// Matches the OS and ABI
var addon3 = {
  id: "addon3@tests.mozilla.org",
  version: "1.0",
  name: "Test 3",
  targetPlatforms: [
    "WINNT",
    "XPCShell_noarch-spidermonkey"
  ],
  targetApplications: [{
    id: "xpcshell@tests.mozilla.org",
    minVersion: "1",
    maxVersion: "1"
  }]
};

// Doesn't match
var addon4 = {
  id: "addon4@tests.mozilla.org",
  version: "1.0",
  name: "Test 4",
  targetPlatforms: [
    "WINNT_noarch-spidermonkey",
    "Darwin",
    "WINNT_noarch-spidermonkey"
  ],
  targetApplications: [{
    id: "xpcshell@tests.mozilla.org",
    minVersion: "1",
    maxVersion: "1"
  }]
};

// Matches the OS but since a different entry specifies ABI this doesn't match.
var addon5 = {
  id: "addon5@tests.mozilla.org",
  version: "1.0",
  name: "Test 5",
  targetPlatforms: [
    "XPCShell",
    "XPCShell_foo"
  ],
  targetApplications: [{
    id: "xpcshell@tests.mozilla.org",
    minVersion: "1",
    maxVersion: "1"
  }]
};

createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9.2");

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

// Set up the profile
function run_test() {
  do_test_pending();

  writeInstallRDFForExtension(addon1, profileDir);
  writeInstallRDFForExtension(addon2, profileDir);
  writeInstallRDFForExtension(addon3, profileDir);
  writeInstallRDFForExtension(addon4, profileDir);
  writeInstallRDFForExtension(addon5, profileDir);

  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]) {

    do_check_neq(a1, null);
    do_check_false(a1.appDisabled);
    do_check_true(a1.isPlatformCompatible);
    do_check_true(a1.isActive);
    do_check_true(isExtensionInAddonsList(profileDir, a1.id));
    do_check_in_crash_annotation(addon1.id, addon1.version);

    do_check_neq(a2, null);
    do_check_false(a2.appDisabled);
    do_check_true(a2.isPlatformCompatible);
    do_check_true(a2.isActive);
    do_check_true(isExtensionInAddonsList(profileDir, a2.id));
    do_check_in_crash_annotation(addon2.id, addon2.version);

    do_check_neq(a3, null);
    do_check_false(a3.appDisabled);
    do_check_true(a3.isPlatformCompatible);
    do_check_true(a3.isActive);
    do_check_true(isExtensionInAddonsList(profileDir, a3.id));
    do_check_in_crash_annotation(addon3.id, addon3.version);

    do_check_neq(a4, null);
    do_check_true(a4.appDisabled);
    do_check_false(a4.isPlatformCompatible);
    do_check_false(a4.isActive);
    do_check_false(isExtensionInAddonsList(profileDir, a4.id));
    do_check_not_in_crash_annotation(addon4.id, addon4.version);

    do_check_neq(a5, null);
    do_check_true(a5.appDisabled);
    do_check_false(a5.isPlatformCompatible);
    do_check_false(a5.isActive);
    do_check_false(isExtensionInAddonsList(profileDir, a5.id));
    do_check_not_in_crash_annotation(addon5.id, addon5.version);

    do_execute_soon(do_test_finished);
  });
}