summaryrefslogtreecommitdiffstats
path: root/toolkit/modules/tests/xpcshell/test_client_id.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-25 15:07:00 -0500
committerMatt A. Tobin <email@mattatobin.com>2020-02-25 15:07:00 -0500
commit0ddd00f1959c78ce37c14fef3c83401408fca3bf (patch)
treed408e02767c86cf8aac3acbb86722b03c77ede6f /toolkit/modules/tests/xpcshell/test_client_id.js
parent20f0905b33cbb18d1caa80c55e2f552c2e18957b (diff)
downloadUXP-0ddd00f1959c78ce37c14fef3c83401408fca3bf.tar
UXP-0ddd00f1959c78ce37c14fef3c83401408fca3bf.tar.gz
UXP-0ddd00f1959c78ce37c14fef3c83401408fca3bf.tar.lz
UXP-0ddd00f1959c78ce37c14fef3c83401408fca3bf.tar.xz
UXP-0ddd00f1959c78ce37c14fef3c83401408fca3bf.zip
Issue #439 - Remove tests from toolkit/
Diffstat (limited to 'toolkit/modules/tests/xpcshell/test_client_id.js')
-rw-r--r--toolkit/modules/tests/xpcshell/test_client_id.js95
1 files changed, 0 insertions, 95 deletions
diff --git a/toolkit/modules/tests/xpcshell/test_client_id.js b/toolkit/modules/tests/xpcshell/test_client_id.js
deleted file mode 100644
index 10ef2a3ea..000000000
--- a/toolkit/modules/tests/xpcshell/test_client_id.js
+++ /dev/null
@@ -1,95 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
- * http://creativecommons.org/publicdomain/zero/1.0/ */
-
-"use strict";
-
-var {classes: Cc, interfaces: Ci, utils: Cu} = Components;
-
-Cu.import("resource://gre/modules/ClientID.jsm");
-Cu.import("resource://gre/modules/Task.jsm");
-Cu.import("resource://services-common/utils.js");
-Cu.import("resource://gre/modules/osfile.jsm");
-Cu.import("resource://gre/modules/XPCOMUtils.jsm");
-Cu.import("resource://gre/modules/Preferences.jsm");
-
-function run_test() {
- do_get_profile();
- run_next_test();
-}
-
-add_task(function* () {
- const drsPath = OS.Path.join(OS.Constants.Path.profileDir, "datareporting", "state.json");
- const fhrDir = OS.Path.join(OS.Constants.Path.profileDir, "healthreport");
- const fhrPath = OS.Path.join(fhrDir, "state.json");
- const uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
- const invalidIDs = [-1, 0.5, "INVALID-UUID", true, "", "3d1e1560-682a-4043-8cf2-aaaaaaaaaaaZ"];
- const PREF_CACHED_CLIENTID = "toolkit.telemetry.cachedClientID";
-
- yield OS.File.makeDir(fhrDir);
-
- // Check that we are importing the FHR client ID.
- let clientID = CommonUtils.generateUUID();
- yield CommonUtils.writeJSON({clientID: clientID}, fhrPath);
- Assert.equal(clientID, yield ClientID.getClientID());
-
- // We should persist the ID in DRS now and not pick up a differing ID from FHR.
- yield ClientID._reset();
- yield CommonUtils.writeJSON({clientID: CommonUtils.generateUUID()}, fhrPath);
- Assert.equal(clientID, yield ClientID.getClientID());
-
- // We should be guarded against broken FHR data.
- for (let invalidID of invalidIDs) {
- yield ClientID._reset();
- yield OS.File.remove(drsPath);
- yield CommonUtils.writeJSON({clientID: invalidID}, fhrPath);
- clientID = yield ClientID.getClientID();
- Assert.equal(typeof(clientID), 'string');
- Assert.ok(uuidRegex.test(clientID));
- }
-
- // We should be guarded against invalid FHR json.
- yield ClientID._reset();
- yield OS.File.remove(drsPath);
- yield OS.File.writeAtomic(fhrPath, "abcd", {encoding: "utf-8", tmpPath: fhrPath + ".tmp"});
- clientID = yield ClientID.getClientID();
- Assert.equal(typeof(clientID), 'string');
- Assert.ok(uuidRegex.test(clientID));
-
- // We should be guarded against broken DRS data too and fall back to loading
- // the FHR ID.
- for (let invalidID of invalidIDs) {
- yield ClientID._reset();
- clientID = CommonUtils.generateUUID();
- yield CommonUtils.writeJSON({clientID: clientID}, fhrPath);
- yield CommonUtils.writeJSON({clientID: invalidID}, drsPath);
- Assert.equal(clientID, yield ClientID.getClientID());
- }
-
- // We should be guarded against invalid DRS json too.
- yield ClientID._reset();
- yield OS.File.remove(fhrPath);
- yield OS.File.writeAtomic(drsPath, "abcd", {encoding: "utf-8", tmpPath: drsPath + ".tmp"});
- clientID = yield ClientID.getClientID();
- Assert.equal(typeof(clientID), 'string');
- Assert.ok(uuidRegex.test(clientID));
-
- // If both the FHR and DSR data are broken, we should end up with a new client ID.
- for (let invalidID of invalidIDs) {
- yield ClientID._reset();
- yield CommonUtils.writeJSON({clientID: invalidID}, fhrPath);
- yield CommonUtils.writeJSON({clientID: invalidID}, drsPath);
- clientID = yield ClientID.getClientID();
- Assert.equal(typeof(clientID), 'string');
- Assert.ok(uuidRegex.test(clientID));
- }
-
- // Assure that cached IDs are being checked for validity.
- for (let invalidID of invalidIDs) {
- yield ClientID._reset();
- Preferences.set(PREF_CACHED_CLIENTID, invalidID);
- let cachedID = ClientID.getCachedClientID();
- Assert.strictEqual(cachedID, null, "ClientID should ignore invalid cached IDs");
- let prefID = Preferences.get(PREF_CACHED_CLIENTID, null);
- Assert.strictEqual(prefID, null, "ClientID should reset invalid cached IDs");
- }
-});