mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
e1230997aa
Squashed commit of the following: commit7f19f92c64
Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 10:34:28 2012 -0400 put back in fake args for signatures that we want to keep commit257505a9e6
Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 08:10:20 2012 -0400 changes per @scott_gonzalez commit12725480cb
Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:54:05 2012 -0400 clean up unused vars in ui directory commit563595e7ae
Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:37:42 2012 -0400 clean up unused vars in grunt and tests
459 lines
13 KiB
JavaScript
459 lines
13 KiB
JavaScript
/*
|
||
* dialog_options.js
|
||
*/
|
||
(function($) {
|
||
|
||
module("dialog: options");
|
||
|
||
test("autoOpen", function() {
|
||
expect(2);
|
||
|
||
el = $('<div></div>').dialog({ autoOpen: false });
|
||
TestHelpers.isNotOpen('.dialog({ autoOpen: false })');
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ autoOpen: true });
|
||
TestHelpers.isOpen('.dialog({ autoOpen: true })');
|
||
el.remove();
|
||
});
|
||
|
||
test("buttons", function() {
|
||
expect(21);
|
||
|
||
var btn, i, newButtons,
|
||
buttons = {
|
||
"Ok": function( ev ) {
|
||
ok(true, "button click fires callback");
|
||
equal(this, el[0], "context of callback");
|
||
equal(ev.target, btn[0], "event target");
|
||
},
|
||
"Cancel": function( ev ) {
|
||
ok(true, "button click fires callback");
|
||
equal(this, el[0], "context of callback");
|
||
equal(ev.target, btn[1], "event target");
|
||
}
|
||
};
|
||
|
||
el = $('<div></div>').dialog({ buttons: buttons });
|
||
btn = $("button", dlg());
|
||
equal(btn.length, 2, "number of buttons");
|
||
|
||
i = 0;
|
||
$.each(buttons, function( key ) {
|
||
equal(btn.eq(i).text(), key, "text of button " + (i+1));
|
||
i++;
|
||
});
|
||
|
||
ok(btn.parent().hasClass('ui-dialog-buttonset'), "buttons in container");
|
||
ok(el.parent().hasClass('ui-dialog-buttons'), "dialog wrapper adds class about having buttons");
|
||
|
||
btn.trigger("click");
|
||
|
||
newButtons = {
|
||
"Close": function( ev ) {
|
||
ok(true, "button click fires callback");
|
||
equal(this, el[0], "context of callback");
|
||
equal(ev.target, btn[0], "event target");
|
||
}
|
||
};
|
||
|
||
deepEqual(el.dialog("option", "buttons"), buttons, '.dialog("option", "buttons") getter');
|
||
el.dialog("option", "buttons", newButtons);
|
||
deepEqual(el.dialog("option", "buttons"), newButtons, '.dialog("option", "buttons", ...) setter');
|
||
|
||
btn = $("button", dlg());
|
||
equal(btn.length, 1, "number of buttons after setter");
|
||
btn.trigger('click');
|
||
|
||
i = 0;
|
||
$.each(newButtons, function( key ) {
|
||
equal(btn.eq(i).text(), key, "text of button " + (i+1));
|
||
i += 1;
|
||
});
|
||
|
||
el.dialog("option", "buttons", null);
|
||
btn = $("button", dlg());
|
||
equal(btn.length, 0, "all buttons have been removed");
|
||
equal(el.find(".ui-dialog-buttonset").length, 0, "buttonset has been removed");
|
||
equal(el.parent().hasClass('ui-dialog-buttons'), false, "dialog wrapper removes class about having buttons");
|
||
|
||
el.remove();
|
||
});
|
||
|
||
test("buttons - advanced", function() {
|
||
expect(5);
|
||
|
||
el = $("<div></div>").dialog({
|
||
buttons: [
|
||
{
|
||
text: "a button",
|
||
"class": "additional-class",
|
||
id: "my-button-id",
|
||
click: function() {
|
||
equal(this, el[0], "correct context");
|
||
}
|
||
}
|
||
]
|
||
});
|
||
var buttons = dlg().find("button");
|
||
equal(buttons.length, 1, "correct number of buttons");
|
||
equal(buttons.attr("id"), "my-button-id", "correct id");
|
||
equal(buttons.text(), "a button", "correct label");
|
||
ok(buttons.hasClass("additional-class"), "additional classes added");
|
||
buttons.click();
|
||
|
||
el.remove();
|
||
});
|
||
|
||
test("closeOnEscape", function() {
|
||
expect( 6 );
|
||
el = $('<div></div>').dialog({ closeOnEscape: false });
|
||
ok(true, 'closeOnEscape: false');
|
||
ok(dlg().is(':visible') && !dlg().is(':hidden'), 'dialog is open before ESC');
|
||
el.simulate('keydown', { keyCode: $.ui.keyCode.ESCAPE })
|
||
.simulate('keypress', { keyCode: $.ui.keyCode.ESCAPE })
|
||
.simulate('keyup', { keyCode: $.ui.keyCode.ESCAPE });
|
||
ok(dlg().is(':visible') && !dlg().is(':hidden'), 'dialog is open after ESC');
|
||
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ closeOnEscape: true });
|
||
ok(true, 'closeOnEscape: true');
|
||
ok(dlg().is(':visible') && !dlg().is(':hidden'), 'dialog is open before ESC');
|
||
el.simulate('keydown', { keyCode: $.ui.keyCode.ESCAPE })
|
||
.simulate('keypress', { keyCode: $.ui.keyCode.ESCAPE })
|
||
.simulate('keyup', { keyCode: $.ui.keyCode.ESCAPE });
|
||
ok(dlg().is(':hidden') && !dlg().is(':visible'), 'dialog is closed after ESC');
|
||
});
|
||
|
||
test("closeText", function() {
|
||
expect(3);
|
||
|
||
el = $('<div></div>').dialog();
|
||
equal(dlg().find('.ui-dialog-titlebar-close span').text(), 'close',
|
||
'default close text');
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ closeText: "foo" });
|
||
equal(dlg().find('.ui-dialog-titlebar-close span').text(), 'foo',
|
||
'closeText on init');
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog().dialog('option', 'closeText', 'bar');
|
||
equal(dlg().find('.ui-dialog-titlebar-close span').text(), 'bar',
|
||
'closeText via option method');
|
||
el.remove();
|
||
});
|
||
|
||
test("dialogClass", function() {
|
||
expect(4);
|
||
|
||
el = $('<div></div>').dialog();
|
||
equal(dlg().is(".foo"), false, 'dialogClass not specified. foo class added');
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ dialogClass: "foo" });
|
||
equal(dlg().is(".foo"), true, 'dialogClass in init. foo class added');
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ dialogClass: "foo bar" });
|
||
equal(dlg().is(".foo"), true, 'dialogClass in init, two classes. foo class added');
|
||
equal(dlg().is(".bar"), true, 'dialogClass in init, two classes. bar class added');
|
||
el.remove();
|
||
});
|
||
|
||
test("draggable", function() {
|
||
expect(4);
|
||
|
||
el = $('<div></div>').dialog({ draggable: false });
|
||
TestHelpers.shouldnotmove();
|
||
el.dialog('option', 'draggable', true);
|
||
TestHelpers.shouldmove();
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ draggable: true });
|
||
TestHelpers.shouldmove();
|
||
el.dialog('option', 'draggable', false);
|
||
TestHelpers.shouldnotmove();
|
||
el.remove();
|
||
});
|
||
|
||
test("height", function() {
|
||
expect(4);
|
||
|
||
el = $('<div></div>').dialog();
|
||
equal(dlg().outerHeight(), 150, "default height");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ height: 237 });
|
||
equal(dlg().outerHeight(), 237, "explicit height");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog();
|
||
el.dialog('option', 'height', 238);
|
||
equal(dlg().outerHeight(), 238, "explicit height set after init");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').css("padding", "20px")
|
||
.dialog({ height: 240 });
|
||
equal(dlg().outerHeight(), 240, "explicit height with padding");
|
||
el.remove();
|
||
});
|
||
|
||
test("maxHeight", function() {
|
||
expect(3);
|
||
|
||
el = $('<div></div>').dialog({ maxHeight: 200 });
|
||
drag('.ui-resizable-s', 1000, 1000);
|
||
equal(heightAfter, 200, "maxHeight");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ maxHeight: 200 });
|
||
drag('.ui-resizable-n', -1000, -1000);
|
||
equal(heightAfter, 200, "maxHeight");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ maxHeight: 200 }).dialog('option', 'maxHeight', 300);
|
||
drag('.ui-resizable-s', 1000, 1000);
|
||
equal(heightAfter, 300, "maxHeight");
|
||
el.remove();
|
||
});
|
||
|
||
test("maxWidth", function() {
|
||
expect(3);
|
||
|
||
el = $('<div></div>').dialog({ maxWidth: 200 });
|
||
drag('.ui-resizable-e', 1000, 1000);
|
||
equal(widthAfter, 200, "maxWidth");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ maxWidth: 200 });
|
||
drag('.ui-resizable-w', -1000, -1000);
|
||
equal(widthAfter, 200, "maxWidth");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ maxWidth: 200 }).dialog('option', 'maxWidth', 300);
|
||
drag('.ui-resizable-w', -1000, -1000);
|
||
equal(widthAfter, 300, "maxWidth");
|
||
el.remove();
|
||
});
|
||
|
||
test("minHeight", function() {
|
||
expect(3);
|
||
|
||
el = $('<div></div>').dialog({ minHeight: 10 });
|
||
drag('.ui-resizable-s', -1000, -1000);
|
||
equal(heightAfter, 10, "minHeight");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ minHeight: 10 });
|
||
drag('.ui-resizable-n', 1000, 1000);
|
||
equal(heightAfter, 10, "minHeight");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ minHeight: 10 }).dialog('option', 'minHeight', 30);
|
||
drag('.ui-resizable-n', 1000, 1000);
|
||
equal(heightAfter, 30, "minHeight");
|
||
el.remove();
|
||
});
|
||
|
||
test("minWidth", function() {
|
||
expect(3);
|
||
|
||
el = $('<div></div>').dialog({ minWidth: 10 });
|
||
drag('.ui-resizable-e', -1000, -1000);
|
||
equal(widthAfter, 10, "minWidth");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ minWidth: 10 });
|
||
drag('.ui-resizable-w', 1000, 1000);
|
||
equal(widthAfter, 10, "minWidth");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ minWidth: 30 }).dialog('option', 'minWidth', 30);
|
||
drag('.ui-resizable-w', 1000, 1000);
|
||
equal(widthAfter, 30, "minWidth");
|
||
el.remove();
|
||
});
|
||
|
||
test("position, default center on window", function() {
|
||
expect( 2 );
|
||
var el = $('<div></div>').dialog(),
|
||
dialog = el.dialog('widget'),
|
||
offset = dialog.offset();
|
||
deepEqual(offset.left, Math.round($(window).width() / 2 - dialog.outerWidth() / 2) + $(window).scrollLeft());
|
||
deepEqual(offset.top, Math.round($(window).height() / 2 - dialog.outerHeight() / 2) + $(window).scrollTop());
|
||
el.remove();
|
||
});
|
||
|
||
test("position, top on window", function() {
|
||
expect( 2 );
|
||
var el = $('<div></div>').dialog({ position: "top" }),
|
||
dialog = el.dialog('widget'),
|
||
offset = dialog.offset();
|
||
deepEqual(offset.left, Math.round($(window).width() / 2 - dialog.outerWidth() / 2) + $(window).scrollLeft());
|
||
deepEqual(offset.top, $(window).scrollTop());
|
||
el.remove();
|
||
});
|
||
|
||
test("position, left on window", function() {
|
||
expect( 2 );
|
||
var el = $('<div></div>').dialog({ position: "left" }),
|
||
dialog = el.dialog('widget'),
|
||
offset = dialog.offset();
|
||
deepEqual(offset.left, 0);
|
||
deepEqual(offset.top, Math.round($(window).height() / 2 - dialog.outerHeight() / 2) + $(window).scrollTop());
|
||
el.remove();
|
||
});
|
||
|
||
test("position, right bottom on window", function() {
|
||
expect( 2 );
|
||
var el = $('<div></div>').dialog({ position: "right bottom" }),
|
||
dialog = el.dialog('widget'),
|
||
offset = dialog.offset();
|
||
deepEqual(offset.left, $(window).width() - dialog.outerWidth() + $(window).scrollLeft());
|
||
deepEqual(offset.top, $(window).height() - dialog.outerHeight() + $(window).scrollTop());
|
||
el.remove();
|
||
});
|
||
|
||
test("position, right bottom on window w/array", function() {
|
||
expect( 2 );
|
||
var el = $('<div></div>').dialog({ position: ["right", "bottom"] }),
|
||
dialog = el.dialog('widget'),
|
||
offset = dialog.offset();
|
||
deepEqual(offset.left, $(window).width() - dialog.outerWidth() + $(window).scrollLeft());
|
||
deepEqual(offset.top, $(window).height() - dialog.outerHeight() + $(window).scrollTop());
|
||
el.remove();
|
||
});
|
||
|
||
test("position, offset from top left w/array", function() {
|
||
expect( 2 );
|
||
var el = $('<div></div>').dialog({ position: [10, 10] }),
|
||
dialog = el.dialog('widget'),
|
||
offset = dialog.offset();
|
||
deepEqual(offset.left, 10 + $(window).scrollLeft());
|
||
deepEqual(offset.top, 10 + $(window).scrollTop());
|
||
el.remove();
|
||
});
|
||
|
||
test("position, right bottom at right bottom via ui.position args", function() {
|
||
expect( 2 );
|
||
var el = $('<div></div>').dialog({
|
||
position: {
|
||
my: "right bottom",
|
||
at: "right bottom"
|
||
}
|
||
}),
|
||
dialog = el.dialog('widget'),
|
||
offset = dialog.offset();
|
||
|
||
deepEqual(offset.left, $(window).width() - dialog.outerWidth() + $(window).scrollLeft());
|
||
deepEqual(offset.top, $(window).height() - dialog.outerHeight() + $(window).scrollTop());
|
||
el.remove();
|
||
});
|
||
|
||
test("position, at another element", function() {
|
||
expect( 4 );
|
||
var parent = $('<div></div>').css({
|
||
position: 'absolute',
|
||
top: 400,
|
||
left: 600,
|
||
height: 10,
|
||
width: 10
|
||
}).appendTo('body'),
|
||
|
||
el = $('<div></div>').dialog({
|
||
position: {
|
||
my: "left top",
|
||
at: "left top",
|
||
of: parent
|
||
}
|
||
}),
|
||
|
||
dialog = el.dialog('widget'),
|
||
offset = dialog.offset();
|
||
|
||
deepEqual(offset.left, 600);
|
||
deepEqual(offset.top, 400);
|
||
|
||
el.dialog('option', 'position', {
|
||
my: "left top",
|
||
at: "right bottom",
|
||
of: parent
|
||
});
|
||
|
||
offset = dialog.offset();
|
||
|
||
deepEqual(offset.left, 610);
|
||
deepEqual(offset.top, 410);
|
||
|
||
el.remove();
|
||
parent.remove();
|
||
});
|
||
|
||
test("resizable", function() {
|
||
expect(4);
|
||
|
||
el = $('<div></div>').dialog();
|
||
TestHelpers.shouldresize("[default]");
|
||
el.dialog('option', 'resizable', false);
|
||
TestHelpers.shouldnotresize('disabled after init');
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ resizable: false });
|
||
TestHelpers.shouldnotresize("disabled in init options");
|
||
el.dialog('option', 'resizable', true);
|
||
TestHelpers.shouldresize('enabled after init');
|
||
el.remove();
|
||
});
|
||
|
||
test("title", function() {
|
||
expect(9);
|
||
|
||
function titleText() {
|
||
return dlg().find(".ui-dialog-title").html();
|
||
}
|
||
|
||
el = $('<div></div>').dialog();
|
||
// some browsers return a non-breaking space and some return " "
|
||
// so we get the text to normalize to the actual non-breaking space
|
||
equal(dlg().find(".ui-dialog-title").text(), " ", "[default]");
|
||
equal(el.dialog("option", "title"), "", "option not changed");
|
||
el.remove();
|
||
|
||
el = $('<div title="foo">').dialog();
|
||
equal(titleText(), "foo", "title in element attribute");
|
||
equal(el.dialog("option", "title"), "foo", "option updated from attribute");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({ title: 'foo' });
|
||
equal(titleText(), "foo", "title in init options");
|
||
equal(el.dialog("option", "title"), "foo", "opiton set from options hash");
|
||
el.remove();
|
||
|
||
el = $('<div title="foo">').dialog({ title: 'bar' });
|
||
equal(titleText(), "bar", "title in init options should override title in element attribute");
|
||
equal(el.dialog("option", "title"), "bar", "opiton set from options hash");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog().dialog('option', 'title', 'foo');
|
||
equal(titleText(), 'foo', 'title after init');
|
||
el.remove();
|
||
});
|
||
|
||
test("width", function() {
|
||
expect(3);
|
||
|
||
el = $('<div></div>').dialog();
|
||
equal(dlg().width(), 300, "default width");
|
||
el.remove();
|
||
|
||
el = $('<div></div>').dialog({width: 437 });
|
||
equal(dlg().width(), 437, "explicit width");
|
||
el.dialog('option', 'width', 438);
|
||
equal(dlg().width(), 438, 'explicit width after init');
|
||
el.remove();
|
||
});
|
||
|
||
})(jQuery);
|