Skip to content
Snippets Groups Projects
Commit 6affd5f4 authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

Fixing the teardown problem of onWinUnload not knowing what self is.

parent 4e642ded
No related branches found
No related tags found
No related merge requests found
......@@ -79,6 +79,7 @@ BrowserID.Modules.Dialog = (function() {
function onWinUnload() {
// do this only if something else hasn't declared success
var self=this;
if (!self.success) {
bid.Storage.setStagedOnBehalfOf("");
self.doCancel();
......@@ -256,7 +257,9 @@ BrowserID.Modules.Dialog = (function() {
self.publish("auth");
}
}, self.getErrorDialog(errors.checkAuthentication));
}
},
doWinUnload: onWinUnload
});
......
......@@ -37,9 +37,14 @@
(function() {
"use strict";
var controller,
var bid = BrowserID,
mediator = bid.Mediator,
channel = bid.Channel,
controller,
el,
channelError = false;
channelError = false,
winMock,
navMock;
function reset() {
el = $("#controller_head");
......@@ -50,13 +55,41 @@
channelError = false;
}
function createController(config) {
var config = $.extend(config, {
window: {
setupChannel: function() {
if (channelError) throw "Channel error";
function WinMock() {
this.location.hash = "#1234";
}
WinMock.prototype = {
setupChannel: function() {
if (channelError) throw "Channel error";
},
// Oh so beautiful.
opener: {
frames: {
1234: {
BrowserID: {
Relay: {
registerClient: function() {
},
unregisterClient: function() {
}
}
}
}
}
},
location: {
}
}
function createController(config) {
var config = $.extend(config, {
window: winMock
});
controller = BrowserID.Modules.Dialog.create(config);
......@@ -64,12 +97,21 @@
module("controllers/dialog_controller", {
setup: function() {
winMock = new WinMock();
channel.init({
window: winMock,
navigator: navMock
});
reset();
},
teardown: function() {
controller.destroy();
reset();
channel.init({
window: window,
navigator: navigator
});
}
});
......@@ -152,5 +194,22 @@
});
*/
test("doWinUnload", function() {
createController({
requiredEmail: "registered@testuser.com"
});
var error;
try {
controller.doWinUnload();
}
catch(e) {
error = e;
}
equal(typeof error, "undefined", "no error thrown when unloading window");
});
}());
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment