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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
const { AMTelemetry, EnvironmentAddonBuilder } = ChromeUtils.importESModule(
"resource://gre/modules/AddonManager.sys.mjs"
);
const { sinon } = ChromeUtils.importESModule(
"resource://testing-common/Sinon.sys.mjs"
);
// The webserver hosting the addons.
var gHttpServer = null;
// The URL of the webserver root.
var gHttpRoot = null;
// The URL of the data directory, on the webserver.
var gDataRoot = null;
const PLATFORM_VERSION = "1.9.2";
const APP_VERSION = "1";
const APP_ID = "xpcshell@tests.mozilla.org";
const APP_NAME = "XPCShell";
const MILLISECONDS_PER_MINUTE = 60 * 1000;
const MILLISECONDS_PER_HOUR = 60 * MILLISECONDS_PER_MINUTE;
const MILLISECONDS_PER_DAY = 24 * MILLISECONDS_PER_HOUR;
AddonTestUtils.init(this);
AddonTestUtils.overrideCertDB();
createAppInfo(APP_ID, APP_NAME, APP_VERSION, PLATFORM_VERSION);
// As we're not running in application, we need to setup the built-in
// add-ons to resemble a setup similar to a Firefox Desktop instance.
//
// Enable SCOPE_APPLICATION for builtin testing. Default in tests is only SCOPE_PROFILE.
let scopes = AddonManager.SCOPE_PROFILE | AddonManager.SCOPE_APPLICATION;
Services.prefs.setIntPref("extensions.enabledScopes", scopes);
// Disable XPIProvider auto-installed default theme logic
// for the unit tests using this helper.
Services.prefs.setBoolPref("extensions.skipInstallDefaultThemeForTests", true);
function truncateToDays(aMsec) {
return Math.floor(aMsec / MILLISECONDS_PER_DAY);
}
async function promiseStartupManagerWithOverrideBuiltIn() {
const addon_id = "tel-system-xpi@tests.mozilla.org";
const addon_version = "1.0";
const addon_res_url_path = "telemetry-test-builtin-addon";
await setupBuiltinExtension(
{
manifest: {
name: "XPI Telemetry System Add-on Test",
description: "A system addon which is shipped with Firefox.",
version: addon_version,
browser_specific_settings: {
gecko: { id: addon_id },
},
},
},
addon_res_url_path
);
let builtins = [
{
addon_id,
addon_version,
res_url: `resource://${addon_res_url_path}/`,
},
];
await AddonTestUtils.overrideBuiltIns({ builtins });
await AddonTestUtils.promiseStartupManager();
return { builtins };
}
function finishAddonManagerStartup() {
Services.obs.notifyObservers(null, "test-load-xpi-database");
}
function MockAddonWrapper(aAddon) {
this.addon = aAddon;
}
MockAddonWrapper.prototype = {
get id() {
return this.addon.id;
},
get type() {
return this.addon.type;
},
get appDisabled() {
return false;
},
get isCompatible() {
return true;
},
get isPlatformCompatible() {
return true;
},
get scope() {
return AddonManager.SCOPE_PROFILE;
},
get foreignInstall() {
return false;
},
get providesUpdatesSecurely() {
return true;
},
get blocklistState() {
return 0; // Not blocked.
},
get pendingOperations() {
return AddonManager.PENDING_NONE;
},
get permissions() {
return AddonManager.PERM_CAN_UNINSTALL | AddonManager.PERM_CAN_DISABLE;
},
get isActive() {
return true;
},
get name() {
return this.addon.name;
},
get version() {
return this.addon.version;
},
get creator() {
return new AddonManagerPrivate.AddonAuthor(this.addon.author);
},
get userDisabled() {
return this.appDisabled;
},
};
function createMockAddonProvider(aName) {
let mockProvider = {
_addons: [],
get name() {
return aName;
},
addAddon(aAddon) {
this._addons.push(aAddon);
AddonManagerPrivate.callAddonListeners(
"onInstalled",
new MockAddonWrapper(aAddon)
);
},
async getAddonsByTypes(aTypes) {
return this._addons
.filter(a => !aTypes || aTypes.includes(a.type))
.map(a => new MockAddonWrapper(a));
},
shutdown() {
return Promise.resolve();
},
};
return mockProvider;
}
async function installXPIFromURL(url) {
let install = await AddonManager.getInstallForURL(url);
return install.install();
}
// This method runs the same kind of assertions as TestEnvironmentUtils.checkAddonsSection.
function checkEnvironmentAddonBuilderData(
data,
{ partialAddonsRecords, expectBrokenAddons } = {}
) {
const EXPECTED_FIELDS = ["activeAddons", "theme", "activeGMPlugins"];
Assert.ok(
"addons" in data,
"There must be an addons section in EnvironmentAddonBuilder instance."
);
for (let f of EXPECTED_FIELDS) {
Assert.ok(f in data.addons, f + " must be available.");
}
// Check the active addons, if available.
if (!expectBrokenAddons) {
let activeAddons = data.addons.activeAddons;
for (let addon in activeAddons) {
checkActiveAddon(addon, activeAddons[addon], partialAddonsRecords);
}
}
// Check "theme" structure.
//
// NOTE: theme is expected to be set to an empty object while the theme is
// not installed or enabled yet by the time the telemetry environment is
// capturing the active addons and themes early during the first at startup,
// see Bug 1994389.
if (data.addons.theme?.id) {
checkTheme(data.addons.theme);
}
// Check active GMPlugins
let activeGMPlugins = data.addons.activeGMPlugins;
for (let gmPlugin in activeGMPlugins) {
checkActiveGMPlugin(activeGMPlugins[gmPlugin]);
}
function checkActiveAddon(id, addonData, partialRecord) {
let signedState = "number";
// system add-ons have an undefined signState
if (addonData.isSystem) {
signedState = "undefined";
}
const EXPECTED_ADDON_FIELDS_TYPES = {
version: "string",
scope: "number",
type: "string",
updateDay: "number",
isSystem: "boolean",
isWebExtension: "boolean",
multiprocessCompatible: "boolean",
};
const FULL_ADDON_FIELD_TYPES = {
blocklisted: "boolean",
name: "string",
userDisabled: "boolean",
appDisabled: "boolean",
foreignInstall: "boolean",
hasBinaryComponents: "boolean",
installDay: "number",
signedState,
};
let fields = EXPECTED_ADDON_FIELDS_TYPES;
if (!partialRecord) {
fields = Object.assign({}, fields, FULL_ADDON_FIELD_TYPES);
}
for (let [name, type] of Object.entries(fields)) {
Assert.ok(name in addonData, name + " must be available.");
Assert.equal(
typeof addonData[name],
type,
name + " must have the correct type."
);
}
// Retrieve the Glean `addons.activeAddons` from the test API
let gleanData = Glean.addons.activeAddons.testGetValue();
// gleanData has all of the addons in it so we need to find the right one
let gleanObject = gleanData.find(entry => entry.id == id);
// Check the Glean properties of `addons.activeAddons`
for (let [field] of Object.entries(fields)) {
// Glean cannot use "type" as a field name so it is named "addonType"
// We account for that difference here in order to test the data
let gleanField = field;
if (field == "type") {
gleanField = "addonType";
}
Assert.equal(
addonData[field],
gleanObject[gleanField],
field + " must match what is recorded in Glean."
);
}
if (!partialRecord) {
// We check "description" separately, as it can be null.
Assert.ok(checkNullOrString(addonData.description));
}
}
function checkTheme(themeData) {
const EXPECTED_THEME_FIELDS_TYPES = {
id: "string",
blocklisted: "boolean",
name: "string",
userDisabled: "boolean",
appDisabled: "boolean",
version: "string",
scope: "number",
foreignInstall: "boolean",
installDay: "number",
updateDay: "number",
};
for (let f in EXPECTED_THEME_FIELDS_TYPES) {
Assert.ok(f in themeData, f + " must be available.");
Assert.equal(
typeof themeData[f],
EXPECTED_THEME_FIELDS_TYPES[f],
f + " must have the correct type."
);
}
// Retrieve the Glean `addons.theme` from the test API
let gleanData = Glean.addons.theme.testGetValue();
// Check the Glean properties of `addons.theme`
for (let field in EXPECTED_THEME_FIELDS_TYPES) {
Assert.equal(
themeData[field],
gleanData[field],
field + " must match what is recorded in Glean."
);
}
// We check "description" separately, as it can be null.
Assert.ok(checkNullOrString(themeData.description));
}
function checkActiveGMPlugin(gmpData) {
// GMP plugin version defaults to null until GMPDownloader runs to update it.
if (gmpData.version) {
Assert.equal(typeof gmpData.version, "string");
}
Assert.equal(typeof gmpData.userDisabled, "boolean");
Assert.equal(typeof gmpData.applyBackgroundUpdates, "number");
// Retrieve the Glean `addons.activeGMPlugins` from the test API
let gleanData = Glean.addons.activeGMPlugins.testGetValue()[0];
Assert.equal(gmpData.version, gleanData.version);
Assert.equal(gmpData.userDisabled, gleanData.userDisabled);
Assert.equal(
gmpData.applyBackgroundUpdates,
gleanData.applyBackgroundUpdates
);
}
function checkString(aValue) {
return typeof aValue == "string" && aValue != "";
}
function checkNullOrString(aValue) {
if (aValue) {
return checkString(aValue);
} else if (aValue === null) {
return true;
}
return false;
}
}
add_setup(async function setup() {
// We need to ensure FOG is initialized, otherwise we will panic trying to get test values.
Services.fog.initializeFOG();
do_get_profile();
await promiseStartupManagerWithOverrideBuiltIn();
// The test runs in a fresh profile so starting the AddonManager causes
// the addons database to be created (as does setting new theme).
// For test_addonsStartup below, we want to test a "warm" startup where
// there is already a database on disk. Simulate that here by just
// restarting the AddonManager.
await AddonTestUtils.promiseShutdownManager();
await AddonTestUtils.overrideBuiltIns({ builtins: [] });
AddonTestUtils.addonStartup.remove(true);
await promiseStartupManagerWithOverrideBuiltIn();
// Make sure the AddonManager isn't stuck waiting
// for the addon DB to be fully loaded when the test
// tasks that follows may be executed on their own (and
// the other tasks skipped).
finishAddonManagerStartup();
await AMTelemetry.telemetryAddonBuilder._pendingTask;
// Setup a webserver to serve Addons, etc.
gHttpServer = new HttpServer();
gHttpServer.start(-1);
let port = gHttpServer.identity.primaryPort;
gHttpRoot = "http://localhost:" + port + "/";
gDataRoot = gHttpRoot + "data/";
gHttpServer.registerDirectory("/data/", do_get_cwd());
registerCleanupFunction(() => gHttpServer.stop(() => {}));
});
add_task(async function test_addons_initialData_and_fullData() {
await AddonTestUtils.promiseShutdownManager();
await promiseStartupManagerWithOverrideBuiltIn();
// During startup we have partial addon records.
// First make sure we haven't yet read the addons DB, then test that
// we have some partial addons data.
Assert.equal(
AddonManagerPrivate.isDBLoaded(),
false,
"addons database is not loaded"
);
// Create a new instance to verify the initialData expected
// to be collected early on startup vs. full data expected to
// be collected later on once the XPIProvider addons db has been
// fully loaded.
const telemetryAddonBuilder = new EnvironmentAddonBuilder();
const pendingTaskPromise = telemetryAddonBuilder.init();
Assert.equal(
telemetryAddonBuilder._addonsAreFull,
false,
"Expect full addons details to not have been collected yet"
);
await TestUtils.waitForCondition(
() => "addons" in telemetryAddonBuilder._currentData,
"Wait for initial addons data to be collected"
);
checkEnvironmentAddonBuilderData(telemetryAddonBuilder._currentData, {
expectBrokenAddons: false,
partialAddonsRecords: true,
});
finishAddonManagerStartup();
await pendingTaskPromise;
Assert.equal(
telemetryAddonBuilder._addonsAreFull,
true,
"Expect full addons details to have been collected after addon DB is loaded"
);
checkEnvironmentAddonBuilderData(telemetryAddonBuilder._currentData, {
expectBrokenAddons: false,
partialAddonsRecords: false,
});
// Sanity check.
Assert.equal(
AddonManagerPrivate.isDBLoaded(),
true,
"addons database is loaded"
);
Assert.equal(
telemetryAddonBuilder._shutdownCompleted,
false,
"Expect telemetryAddonBuilder instance to not have been shutdown yet"
);
await AddonTestUtils.promiseShutdownManager();
Assert.equal(
telemetryAddonBuilder._shutdownCompleted,
true,
"Expect telemetryAddonBuilder shutdown to be completed"
);
await promiseStartupManagerWithOverrideBuiltIn();
});
add_task(async function test_addonsWatch_InterestingChange() {
const ADDON_ID = "tel-restartless-webext@tests.mozilla.org";
// Sanity checks.
ok(AMTelemetry.telemetryAddonBuilder, "Got EnvironmentAddonBuilder instance");
Assert.equal(
!!Glean.addons.activeAddons.testGetValue()?.find(it => it.id === ADDON_ID),
false,
"Expect the test extension to NOT be found in the activeAddons data yet"
);
// We only expect a single notification for each install, uninstall, enable, disable.
const EXPECTED_NOTIFICATIONS = 4;
let receivedNotifications = 0;
let sandbox = sinon.createSandbox();
sandbox
.stub(AMTelemetry.telemetryAddonBuilder, "_onEnvironmentChange")
.callsFake(async (changeReason, _oldEnvironment) => {
Assert.equal(changeReason, "addons-changed");
receivedNotifications++;
Services.obs.notifyObservers(
null,
"test-environmentAddonBuilder-checkpoint"
);
});
let registerCheckpointPromise = () =>
TestUtils.topicObserved("test-environmentAddonBuilder-checkpoint");
let assertCheckpoint = aExpected => {
Assert.equal(receivedNotifications, aExpected);
};
info("Verify new activeAddons entry added when test extension is installed");
let checkpointPromise = registerCheckpointPromise();
let testExtension = ExtensionTestUtils.loadExtension({
useAddonManager: "permanent",
manifest: {
browser_specific_settings: { gecko: { id: ADDON_ID } },
},
});
await testExtension.startup();
await checkpointPromise;
assertCheckpoint(1);
Assert.equal(
!!Glean.addons.activeAddons.testGetValue()?.find(it => it.id === ADDON_ID),
true,
"Expect the test extension to be found in the activeAddons data"
);
info("Verify activeAddons entry remove when test extension is disabled");
checkpointPromise = registerCheckpointPromise();
let addon = await AddonManager.getAddonByID(ADDON_ID);
await addon.disable();
await checkpointPromise;
assertCheckpoint(2);
Assert.equal(
!!Glean.addons.activeAddons.testGetValue()?.find(it => it.id === ADDON_ID),
false,
"Expect the test extension to NOT be found in the activeAddons data"
);
info(
"Verify activeAddons entry added back when test extension is re-enabled"
);
checkpointPromise = registerCheckpointPromise();
addon = await AddonManager.getAddonByID(ADDON_ID);
await addon.enable();
await checkpointPromise;
assertCheckpoint(3);
Assert.equal(
!!Glean.addons.activeAddons.testGetValue()?.find(it => it.id === ADDON_ID),
true,
"Expect the test extension to be found in the activeAddons data"
);
info("Verify activeAddons entry removed when test extension is uninstalled");
checkpointPromise = registerCheckpointPromise();
await testExtension.unload();
await checkpointPromise;
assertCheckpoint(4);
Assert.equal(
!!Glean.addons.activeAddons.testGetValue()?.find(it => it.id === ADDON_ID),
false,
"Expect the test extension to NOT be found in the activeAddons data"
);
Assert.equal(
receivedNotifications,
EXPECTED_NOTIFICATIONS,
"We must only receive the notifications we expect."
);
sandbox.restore();
});
add_task(async function test_addonsWatch_NotInterestingChange() {
// Plugins from GMPProvider are listed separately in addons.activeGMPlugins.
// We simulate the "plugin" type in this test and verify that it is excluded.
const PLUGIN_ID = "tel-fake-gmp-plugin@tests.mozilla.org";
// "theme" type is already covered by addons.theme, so we aren't interested.
const THEME_ID = "tel-theme@tests.mozilla.org";
// "dictionary" type should be in addon.activeAddons.
const DICT_ID = "tel-dict@tests.mozilla.org";
// "locale" type should be in addon.activeAddons.
const LOCALE_ID = "tel-langpack@tests.mozilla.org";
let receivedNotification = false;
let deferred = Promise.withResolvers();
let sandbox = sinon.createSandbox();
sandbox
.stub(AMTelemetry.telemetryAddonBuilder, "_onEnvironmentChange")
.callsFake(async (changeReason, _oldEnvironment) => {
Assert.equal(changeReason, "addons-changed");
Assert.ok(
!receivedNotification,
"Should not receive multiple notifications"
);
receivedNotification = true;
deferred.resolve();
});
// "plugin" type, to verify that non-XPIProvider types such as the "plugin"
// type from GMPProvider are not included in activeAddons.
let fakeProvider = createMockAddonProvider("Fake GMPProvider");
AddonManagerPrivate.registerProvider(fakeProvider);
fakeProvider.addAddon({
id: PLUGIN_ID,
name: "Fake plugin",
version: "1",
type: "plugin",
});
// "dictionary" type.
fakeProvider.addAddon({
id: DICT_ID,
name: "Fake dictionary",
version: "1",
type: "dictionary",
});
// "theme" type.
fakeProvider.addAddon({
id: THEME_ID,
name: "Fake theme",
version: "1",
type: "theme",
});
// "langpack" type.
fakeProvider.addAddon({
id: LOCALE_ID,
name: "Fake langpack",
version: "1",
type: "locale",
});
await deferred.promise;
Assert.equal(
!!Glean.addons.activeAddons.testGetValue()?.find(it => it.id === PLUGIN_ID),
false,
"GMP plugins should NOT appear in active addons."
);
Assert.equal(
!!Glean.addons.activeAddons.testGetValue()?.find(it => it.id === THEME_ID),
false,
"Themes should NOT appear in active addons."
);
Assert.equal(
!!Glean.addons.activeAddons.testGetValue()?.find(it => it.id === DICT_ID),
true,
"Dictionaries should appear in active addons."
);
Assert.equal(
!!Glean.addons.activeAddons.testGetValue()?.find(it => it.id === LOCALE_ID),
true,
"Langpacks should appear in active addons."
);
AddonManagerPrivate.unregisterProvider(fakeProvider);
sandbox.restore();
});
add_task(async function test_addons() {
const SYSTEM_ADDON_ID = "tel-system-xpi@tests.mozilla.org";
const EXPECTED_SYSTEM_ADDON_DATA = {
blocklisted: false,
description: "A system addon which is shipped with Firefox.",
name: "XPI Telemetry System Add-on Test",
userDisabled: false,
appDisabled: false,
version: "1.0",
scope: AddonManager.SCOPE_APPLICATION,
type: "extension",
foreignInstall: false,
hasBinaryComponents: false,
installDay: 0,
updateDay: 0,
signedState: undefined,
isSystem: true,
isWebExtension: true,
multiprocessCompatible: true,
quarantineIgnoredByUser: false,
// quarantineIgnoredByApp expected to be true because
// the test addon is a system addon (see isSystem).
quarantineIgnoredByApp: true,
};
const WEBEXTENSION_ADDON_ID = "tel-webextension-xpi@tests.mozilla.org";
const WEBEXTENSION_ADDON_INSTALL_DATE = truncateToDays(Date.now());
const EXPECTED_WEBEXTENSION_ADDON_DATA = {
blocklisted: false,
description: "A webextension addon.",
name: "XPI Telemetry WebExtension Add-on Test",
userDisabled: false,
appDisabled: false,
version: "1.0",
scope: AddonManager.SCOPE_PROFILE,
type: "extension",
foreignInstall: false,
hasBinaryComponents: false,
installDay: WEBEXTENSION_ADDON_INSTALL_DATE,
updateDay: WEBEXTENSION_ADDON_INSTALL_DATE,
signedState: AddonManager.SIGNEDSTATE_PRIVILEGED,
isSystem: false,
isWebExtension: true,
multiprocessCompatible: true,
quarantineIgnoredByUser: false,
// quarantineIgnoredByApp expected to be true because
// the test addon is signed as privileged (see signedState).
quarantineIgnoredByApp: true,
};
let deferred = Promise.withResolvers();
let sandbox = sinon.createSandbox();
sandbox
.stub(AMTelemetry.telemetryAddonBuilder, "_onEnvironmentChange")
.callsFake(async (changeReason, _oldEnvironment) => {
Assert.equal(changeReason, "addons-changed");
deferred.resolve();
});
// Install an add-on so we have some data.
let webextension = ExtensionTestUtils.loadExtension({
useAddonManager: "permanent",
manifest: {
name: "XPI Telemetry WebExtension Add-on Test",
description: "A webextension addon.",
version: "1.0",
browser_specific_settings: {
gecko: {
id: WEBEXTENSION_ADDON_ID,
},
},
},
});
await webextension.startup();
await deferred.promise;
sandbox.restore();
let data = AMTelemetry.telemetryAddonBuilder._currentEnvironment;
checkEnvironmentAddonBuilderData(data, {
expectBrokenAddons: false,
partialAddonsRecords: false,
});
// Check system add-on data.
Assert.ok(
SYSTEM_ADDON_ID in data.addons.activeAddons,
"We must have one active system addon."
);
let targetSystemAddon = data.addons.activeAddons[SYSTEM_ADDON_ID];
for (let f in EXPECTED_SYSTEM_ADDON_DATA) {
Assert.equal(
targetSystemAddon[f],
EXPECTED_SYSTEM_ADDON_DATA[f],
f + " must have the correct value."
);
}
// Check webextension add-on data.
Assert.ok(
WEBEXTENSION_ADDON_ID in data.addons.activeAddons,
"We must have one active webextension addon."
);
let targetWebExtensionAddon = data.addons.activeAddons[WEBEXTENSION_ADDON_ID];
for (let f in EXPECTED_WEBEXTENSION_ADDON_DATA) {
Assert.equal(
targetWebExtensionAddon[f],
EXPECTED_WEBEXTENSION_ADDON_DATA[f],
f + " must have the correct value."
);
}
await webextension.unload();
});
add_task(async function test_signedAddon() {
AddonTestUtils.useRealCertChecks = true;
const { PKCS7_WITH_SHA1, COSE_WITH_SHA256 } = Ci.nsIAppSignatureInfo;
const ADDON_INSTALL_URL = gDataRoot + "amosigned.xpi";
const ADDON_ID = "amosigned-xpi@tests.mozilla.org";
const ADDON_INSTALL_DATE = truncateToDays(Date.now());
const EXPECTED_ADDON_DATA = {
blocklisted: false,
description: null,
name: "XPI Test",
userDisabled: false,
appDisabled: false,
version: "2.2",
scope: AddonManager.SCOPE_PROFILE,
type: "extension",
foreignInstall: false,
hasBinaryComponents: false,
installDay: ADDON_INSTALL_DATE,
updateDay: ADDON_INSTALL_DATE,
signedState: AddonManager.SIGNEDSTATE_SIGNED,
signedTypes: JSON.stringify([COSE_WITH_SHA256, PKCS7_WITH_SHA1]),
quarantineIgnoredByUser: false,
// quarantineIgnoredByApp expected to be false because
// the test addon is signed as a non-privileged (see signedState),
// and it doesn't include any recommendations.
quarantineIgnoredByApp: false,
};
let deferred = Promise.withResolvers();
let sandbox = sinon.createSandbox();
sandbox
.stub(AMTelemetry.telemetryAddonBuilder, "_onEnvironmentChange")
.callsFake(async (changeReason, _oldEnvironment) => {
Assert.equal(changeReason, "addons-changed");
deferred.resolve();
});
// Install the addon.
let addon = await installXPIFromURL(ADDON_INSTALL_URL);
await deferred.promise;
sandbox.restore();
let data = AMTelemetry.telemetryAddonBuilder._currentEnvironment;
checkEnvironmentAddonBuilderData(data, {
expectBrokenAddons: false,
partialAddonsRecords: false,
});
// Check addon data.
Assert.ok(
ADDON_ID in data.addons.activeAddons,
"Add-on should be in the environment."
);
let targetAddon = data.addons.activeAddons[ADDON_ID];
for (let f in EXPECTED_ADDON_DATA) {
Assert.equal(
targetAddon[f],
EXPECTED_ADDON_DATA[f],
f + " must have the correct value."
);
}
// Make sure quarantineIgnoredByUser property is updated also in the
// telemetry environment in response to the user changing it.
deferred = Promise.withResolvers();
sandbox
.stub(AMTelemetry.telemetryAddonBuilder, "_onEnvironmentChange")
.callsFake(async (changeReason, _oldEnvironment) => {
Assert.equal(changeReason, "addons-changed");
deferred.resolve();
});
addon.quarantineIgnoredByUser = true;
await deferred.promise;
sandbox.restore();
Assert.equal(
data.addons.activeAddons[ADDON_ID].quarantineIgnoredByUser,
true,
"Expect quarantineIgnoredByUser to be set to true"
);
AddonTestUtils.useRealCertChecks = false;
await addon.startupPromise;
await addon.uninstall();
});
add_task(async function test_addonsFieldsLimit() {
const ADDON_ID = "tel-longfields-webext@tests.mozilla.org";
// Install the addon and wait for the TelemetryEnvironment to pick it up.
let deferred = Promise.withResolvers();
let sandbox = sinon.createSandbox();
sandbox
.stub(AMTelemetry.telemetryAddonBuilder, "_onEnvironmentChange")
.callsFake(async (changeReason, _oldEnvironment) => {
Assert.equal(changeReason, "addons-changed");
deferred.resolve();
});
ExtensionTestUtils.failOnSchemaWarnings(false);
let testExtension = ExtensionTestUtils.loadExtension({
useAddonManager: "permanent",
manifest: {
name: "This is a really long addon name, that will get limited to 100 characters. We're much longer, we're at about 219. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus nullam sodales. Yeah, Latin placeholder.",
description:
"This is a really long addon description, that will get limited to 100 characters. We're much longer, we're at about 200. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus nullam sodales.",
version: "1.0",
browser_specific_settings: { gecko: { id: ADDON_ID } },
},
});
await testExtension.startup();
ExtensionTestUtils.failOnSchemaWarnings(true);
await deferred.promise;
sandbox.restore();
let data = AMTelemetry.telemetryAddonBuilder._currentEnvironment;
checkEnvironmentAddonBuilderData(data, {
expectBrokenAddons: false,
partialAddonsRecords: false,
});
// Check that the addon is available and that the string fields are limited.
Assert.ok(
ADDON_ID in data.addons.activeAddons,
"Add-on should be in the environment."
);
let targetAddon = data.addons.activeAddons[ADDON_ID];
// TelemetryEnvironment limits the length of string fields for activeAddons to 100 chars,
// to mitigate misbehaving addons.
Assert.lessOrEqual(
targetAddon.version.length,
100,
"The version string must have been limited"
);
Assert.lessOrEqual(
targetAddon.name.length,
100,
"The name string must have been limited"
);
Assert.lessOrEqual(
targetAddon.description.length,
100,
"The description string must have been limited"
);
await testExtension.unload();
});
add_task(async function test_collectionWithbrokenAddonData() {
const BROKEN_ADDON_ID = "telemetry-test2.example.com@services.mozilla.org";
const BROKEN_MANIFEST = {
id: "telemetry-test2.example.com@services.mozilla.org",
name: "telemetry broken addon",
origin: "https://telemetry-test2.example.com",
version: 1, // This is intentionally not a string.
signedState: AddonManager.SIGNEDSTATE_SIGNED,
type: "extension",
};
const ADDON_ID = "tel-restartless-webext@tests.mozilla.org";
const ADDON_INSTALL_DATE = truncateToDays(Date.now());
const EXPECTED_ADDON_DATA = {
blocklisted: false,
description: "A restartless addon which gets enabled without a reboot.",
name: "XPI Telemetry Restartless Test",
userDisabled: false,
appDisabled: false,
version: "1.0",
scope: AddonManager.SCOPE_PROFILE,
type: "extension",
foreignInstall: false,
hasBinaryComponents: false,
installDay: ADDON_INSTALL_DATE,
updateDay: ADDON_INSTALL_DATE,
signedState: AddonManager.SIGNEDSTATE_MISSING,
};
let receivedNotifications = 0;
let sandbox = sinon.createSandbox();
sandbox
.stub(AMTelemetry.telemetryAddonBuilder, "_onEnvironmentChange")
.callsFake(async (changeReason, _oldEnvironment) => {
Assert.equal(changeReason, "addons-changed");
receivedNotifications++;
Services.obs.notifyObservers(
null,
"test-environmentAddonBuilder-checkpoint"
);
});
let registerCheckpointPromise = () =>
TestUtils.topicObserved("test-environmentAddonBuilder-checkpoint");
let assertCheckpoint = aExpected => {
Assert.equal(receivedNotifications, aExpected);
};
// Register the broken provider and install the broken addon.
let checkpointPromise = registerCheckpointPromise();
let brokenAddonProvider = createMockAddonProvider(
"Broken Extensions Provider"
);
AddonManagerPrivate.registerProvider(brokenAddonProvider);
brokenAddonProvider.addAddon(BROKEN_MANIFEST);
await checkpointPromise;
assertCheckpoint(1);
// Now install an addon which returns the correct information.
checkpointPromise = registerCheckpointPromise();
let testExtension = ExtensionTestUtils.loadExtension({
useAddonManager: "permanent",
manifest: {
name: EXPECTED_ADDON_DATA.name,
description: EXPECTED_ADDON_DATA.description,
version: EXPECTED_ADDON_DATA.version,
browser_specific_settings: { gecko: { id: ADDON_ID } },
},
});
await testExtension.startup();
await checkpointPromise;
assertCheckpoint(2);
// Check that the new environment contains the info from the broken provider,
// despite the addon missing some details.
let data = AMTelemetry.telemetryAddonBuilder._currentEnvironment;
checkEnvironmentAddonBuilderData(data, {
expectBrokenAddons: true,
partialAddonsRecords: false,
});
let activeAddons = data.addons.activeAddons;
Assert.ok(
BROKEN_ADDON_ID in activeAddons,
"The addon with the broken manifest must be reported."
);
Assert.equal(
activeAddons[BROKEN_ADDON_ID].version,
null,
"null should be reported for invalid data."
);
Assert.ok(ADDON_ID in activeAddons, "The valid addon must be reported.");
Assert.equal(
activeAddons[ADDON_ID].description,
EXPECTED_ADDON_DATA.description,
"The description for the valid addon should be correct."
);
// Unregister the broken provider so we don't mess with other tests.
AddonManagerPrivate.unregisterProvider(brokenAddonProvider);
// Uninstall the valid addon.
await testExtension.unload();
sandbox.restore();
});
add_task(async function nonSystemBuiltinAddon() {
const addon_id = "tel-nonsystem-builtin-addon@tests.mozilla.org";
const addon_version = "1.0";
const addon_res_url_path = "telemetry-test-nonsystem-builtin-addon";
await setupBuiltinExtension(
{
manifest: {
name: "XPI Telemetry non-System Built-in Add-on Test",
description: "A system addon which is shipped with Firefox.",
version: addon_version,
browser_specific_settings: {
gecko: { id: addon_id },
},
},
},
addon_res_url_path
);
let deferred = Promise.withResolvers();
let sandbox = sinon.createSandbox();
sandbox
.stub(AMTelemetry.telemetryAddonBuilder, "_onEnvironmentChange")
.callsFake(async (changeReason, _oldEnvironment) => {
Assert.equal(changeReason, "addons-changed");
deferred.resolve();
});
let data = AMTelemetry.telemetryAddonBuilder._currentEnvironment;
Assert.ok(
!(addon_id in data.addons.activeAddons),
"non-system built-in addon expected to not be found yet."
);
// Install a non-system add-on similarly to how built-in add-ons
// built into Fenix through android components (e.g. like being done
// by mobile/android/android-components/components/feature/readerview,
// mobile/android/android-components/components/feature/webcompat etc.).
const builtinAddon = await AddonManager.maybeInstallBuiltinAddon(
addon_id,
addon_version,
`resource://${addon_res_url_path}/`
);
await deferred.promise;
sandbox.restore();
Assert.ok(
addon_id in data.addons.activeAddons,
"non-system built-in addon must be reported."
);
Assert.equal(
data.addons.activeAddons[addon_id].version,
addon_version,
"Got the expected version."
);
Assert.equal(
data.addons.activeAddons[addon_id].scope,
AddonManager.SCOPE_APPLICATION,
"Got the expected scope."
);
Assert.equal(
data.addons.activeAddons[addon_id].isSystem,
false,
"Expect isSystem to be false."
);
await builtinAddon.uninstall();
});
|