diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 21:49:04 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 21:49:04 +0200 |
commit | 39dac57259cff8b61db0b22cb2ad0a8adb02692e (patch) | |
tree | 52a026cc8c22793eb17fd0f5e22adce1ae08a1dd /toolkit/content/tests/browser/common/mockTransfer.js | |
parent | a1cce3b2b00bbd9f4983013ddd8934a7bccb9e99 (diff) | |
parent | c2d9ab62f3d097c9e0e00184cab1f546554f5eaa (diff) | |
download | UXP-39dac57259cff8b61db0b22cb2ad0a8adb02692e.tar UXP-39dac57259cff8b61db0b22cb2ad0a8adb02692e.tar.gz UXP-39dac57259cff8b61db0b22cb2ad0a8adb02692e.tar.lz UXP-39dac57259cff8b61db0b22cb2ad0a8adb02692e.tar.xz UXP-39dac57259cff8b61db0b22cb2ad0a8adb02692e.zip |
Merge branch 'redwood' into 28.9-platform
Diffstat (limited to 'toolkit/content/tests/browser/common/mockTransfer.js')
-rw-r--r-- | toolkit/content/tests/browser/common/mockTransfer.js | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/toolkit/content/tests/browser/common/mockTransfer.js b/toolkit/content/tests/browser/common/mockTransfer.js deleted file mode 100644 index c8b8fc161..000000000 --- a/toolkit/content/tests/browser/common/mockTransfer.js +++ /dev/null @@ -1,67 +0,0 @@ -/* 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/. */ - -Cc["@mozilla.org/moz/jssubscript-loader;1"] - .getService(Ci.mozIJSSubScriptLoader) - .loadSubScript("chrome://mochikit/content/tests/SimpleTest/MockObjects.js", this); - -var mockTransferCallback; - -/** - * This "transfer" object implementation continues the currently running test - * when the download is completed, reporting true for success or false for - * failure as the first argument of the testRunner.continueTest function. - */ -function MockTransfer() { - this._downloadIsSuccessful = true; -} - -MockTransfer.prototype = { - QueryInterface: XPCOMUtils.generateQI([ - Ci.nsIWebProgressListener, - Ci.nsIWebProgressListener2, - Ci.nsITransfer, - ]), - - /* nsIWebProgressListener */ - onStateChange: function MTFC_onStateChange(aWebProgress, aRequest, - aStateFlags, aStatus) { - // If at least one notification reported an error, the download failed. - if (!Components.isSuccessCode(aStatus)) - this._downloadIsSuccessful = false; - - // If the download is finished - if ((aStateFlags & Ci.nsIWebProgressListener.STATE_STOP) && - (aStateFlags & Ci.nsIWebProgressListener.STATE_IS_NETWORK)) - // Continue the test, reporting the success or failure condition. - mockTransferCallback(this._downloadIsSuccessful); - }, - onProgressChange: function () {}, - onLocationChange: function () {}, - onStatusChange: function MTFC_onStatusChange(aWebProgress, aRequest, aStatus, - aMessage) { - // If at least one notification reported an error, the download failed. - if (!Components.isSuccessCode(aStatus)) - this._downloadIsSuccessful = false; - }, - onSecurityChange: function () {}, - - /* nsIWebProgressListener2 */ - onProgressChange64: function () {}, - onRefreshAttempted: function () {}, - - /* nsITransfer */ - init: function() {}, - setSha256Hash: function() {}, - setSignatureInfo: function() {} -}; - -// Create an instance of a MockObjectRegisterer whose methods can be used to -// temporarily replace the default "@mozilla.org/transfer;1" object factory with -// one that provides the mock implementation above. To activate the mock object -// factory, call the "register" method. Starting from that moment, all the -// transfer objects that are requested will be mock objects, until the -// "unregister" method is called. -var mockTransferRegisterer = - new MockObjectRegisterer("@mozilla.org/transfer;1", MockTransfer); |