diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-25 15:07:00 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:55:19 +0200 |
commit | eb70e6e3d0bff11c25f14b1196025791bf2308fb (patch) | |
tree | 5ef4ce17db83c74d7b05ec12c8f59e095a6dd5bd /toolkit/components/crashmonitor | |
parent | 32ead795290b3399d56b4708fc75b77d296f6a1a (diff) | |
download | UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.gz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.lz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.xz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.zip |
Issue #439 - Remove tests from toolkit/
Diffstat (limited to 'toolkit/components/crashmonitor')
10 files changed, 0 insertions, 156 deletions
diff --git a/toolkit/components/crashmonitor/moz.build b/toolkit/components/crashmonitor/moz.build index 4656f6ab8..51f7b0d8c 100644 --- a/toolkit/components/crashmonitor/moz.build +++ b/toolkit/components/crashmonitor/moz.build @@ -4,8 +4,6 @@ # 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/. -XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini'] - EXTRA_JS_MODULES += [ 'CrashMonitor.jsm', ] diff --git a/toolkit/components/crashmonitor/test/unit/.eslintrc.js b/toolkit/components/crashmonitor/test/unit/.eslintrc.js deleted file mode 100644 index d35787cd2..000000000 --- a/toolkit/components/crashmonitor/test/unit/.eslintrc.js +++ /dev/null @@ -1,7 +0,0 @@ -"use strict"; - -module.exports = { - "extends": [ - "../../../../../testing/xpcshell/xpcshell.eslintrc.js" - ] -}; diff --git a/toolkit/components/crashmonitor/test/unit/head.js b/toolkit/components/crashmonitor/test/unit/head.js deleted file mode 100644 index 6d7d50d0c..000000000 --- a/toolkit/components/crashmonitor/test/unit/head.js +++ /dev/null @@ -1,22 +0,0 @@ -/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ -/* 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/. */ - -Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); -XPCOMUtils.defineLazyModuleGetter(this, "OS", - "resource://gre/modules/osfile.jsm"); - -var sessionCheckpointsPath; - -/** - * Start the tasks of the different tests - */ -function run_test() -{ - do_get_profile(); - sessionCheckpointsPath = OS.Path.join(OS.Constants.Path.profileDir, - "sessionCheckpoints.json"); - Components.utils.import("resource://gre/modules/CrashMonitor.jsm"); - run_next_test(); -} diff --git a/toolkit/components/crashmonitor/test/unit/test_init.js b/toolkit/components/crashmonitor/test/unit/test_init.js deleted file mode 100644 index d72f46aca..000000000 --- a/toolkit/components/crashmonitor/test/unit/test_init.js +++ /dev/null @@ -1,17 +0,0 @@ -/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ -/* 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/. */ - -/** - * Test that calling |init| twice throws an error - */ -add_task(function test_init() { - CrashMonitor.init(); - try { - CrashMonitor.init(); - do_check_true(false); - } catch (ex) { - do_check_true(true); - } -}); diff --git a/toolkit/components/crashmonitor/test/unit/test_invalid_file.js b/toolkit/components/crashmonitor/test/unit/test_invalid_file.js deleted file mode 100644 index cc55a2755..000000000 --- a/toolkit/components/crashmonitor/test/unit/test_invalid_file.js +++ /dev/null @@ -1,22 +0,0 @@ -/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ -/* 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/. */ - -/** - * Test with sessionCheckpoints.json containing invalid data - */ -add_task(function* test_invalid_file() { - // Write bogus data to checkpoint file - let data = "1234"; - yield OS.File.writeAtomic(sessionCheckpointsPath, data, - {tmpPath: sessionCheckpointsPath + ".tmp"}); - - // An invalid file will cause |init| to return null - let status = yield CrashMonitor.init(); - do_check_true(status === null ? true : false); - - // and |previousCheckpoints| will be null - let checkpoints = yield CrashMonitor.previousCheckpoints; - do_check_true(checkpoints === null ? true : false); -}); diff --git a/toolkit/components/crashmonitor/test/unit/test_invalid_json.js b/toolkit/components/crashmonitor/test/unit/test_invalid_json.js deleted file mode 100644 index f3b05208a..000000000 --- a/toolkit/components/crashmonitor/test/unit/test_invalid_json.js +++ /dev/null @@ -1,18 +0,0 @@ -/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ -/* 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/. */ - -/** - * Test with sessionCheckpoints.json containing invalid JSON data - */ -add_task(function* test_invalid_file() { - // Write bogus data to checkpoint file - let data = "[}"; - yield OS.File.writeAtomic(sessionCheckpointsPath, data, - {tmpPath: sessionCheckpointsPath + ".tmp"}); - - CrashMonitor.init(); - let checkpoints = yield CrashMonitor.previousCheckpoints; - do_check_eq(checkpoints, null); -}); diff --git a/toolkit/components/crashmonitor/test/unit/test_missing_file.js b/toolkit/components/crashmonitor/test/unit/test_missing_file.js deleted file mode 100644 index 9ce31da95..000000000 --- a/toolkit/components/crashmonitor/test/unit/test_missing_file.js +++ /dev/null @@ -1,13 +0,0 @@ -/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ -/* 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/. */ - -/** - * Test with non-existing sessionCheckpoints.json - */ -add_task(function* test_missing_file() { - CrashMonitor.init(); - let checkpoints = yield CrashMonitor.previousCheckpoints; - do_check_eq(checkpoints, null); -}); diff --git a/toolkit/components/crashmonitor/test/unit/test_register.js b/toolkit/components/crashmonitor/test/unit/test_register.js deleted file mode 100644 index 33c73a5ae..000000000 --- a/toolkit/components/crashmonitor/test/unit/test_register.js +++ /dev/null @@ -1,24 +0,0 @@ -/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ -/* 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/. */ - -/** - * Test that CrashMonitor.jsm is correctly loaded from XPCOM component - */ -add_task(function test_register() { - let cm = Components.classes["@mozilla.org/toolkit/crashmonitor;1"] - .createInstance(Components.interfaces.nsIObserver); - - // Send "profile-after-change" to trigger the initialization - cm.observe(null, "profile-after-change", null); - - // If CrashMonitor was initialized properly a new call to |init| - // should fail - try { - CrashMonitor.init(); - do_check_true(false); - } catch (ex) { - do_check_true(true); - } -}); diff --git a/toolkit/components/crashmonitor/test/unit/test_valid_file.js b/toolkit/components/crashmonitor/test/unit/test_valid_file.js deleted file mode 100644 index d2f214cc0..000000000 --- a/toolkit/components/crashmonitor/test/unit/test_valid_file.js +++ /dev/null @@ -1,20 +0,0 @@ -/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ -/* 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/. */ - -/** - * Test with sessionCheckpoints.json containing valid data - */ -add_task(function* test_valid_file() { - // Write valid data to checkpoint file - let data = JSON.stringify({"final-ui-startup": true}); - yield OS.File.writeAtomic(sessionCheckpointsPath, data, - {tmpPath: sessionCheckpointsPath + ".tmp"}); - - CrashMonitor.init(); - let checkpoints = yield CrashMonitor.previousCheckpoints; - - do_check_true(checkpoints["final-ui-startup"]); - do_check_eq(Object.keys(checkpoints).length, 1); -}); diff --git a/toolkit/components/crashmonitor/test/unit/xpcshell.ini b/toolkit/components/crashmonitor/test/unit/xpcshell.ini deleted file mode 100644 index cd86b2535..000000000 --- a/toolkit/components/crashmonitor/test/unit/xpcshell.ini +++ /dev/null @@ -1,11 +0,0 @@ -[DEFAULT] -head = head.js -tail = -skip-if = toolkit == 'android' - -[test_init.js] -[test_valid_file.js] -[test_invalid_file.js] -[test_invalid_json.js] -[test_missing_file.js] -[test_register.js] |