diff options
author | Richard Worth <rdworth@gmail.com> | 2008-06-21 13:54:41 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-06-21 13:54:41 +0000 |
commit | 9196c2022c428d5aa2b75e2558f981458356e9da (patch) | |
tree | 0f7c072f547779381f679e0dcd88910b1b43fbfd /tests | |
parent | 2361bda9bae169c92fb05abc935b834cbb119919 (diff) | |
download | jquery-ui-9196c2022c428d5aa2b75e2558f981458356e9da.tar.gz jquery-ui-9196c2022c428d5aa2b75e2558f981458356e9da.zip |
tests dialog - added some tests and placeholders
Diffstat (limited to 'tests')
-rw-r--r-- | tests/dialog.js | 245 | ||||
-rw-r--r-- | tests/draggable.js | 2 |
2 files changed, 177 insertions, 70 deletions
diff --git a/tests/dialog.js b/tests/dialog.js index 7520fe8b7..7cd6921a8 100644 --- a/tests/dialog.js +++ b/tests/dialog.js @@ -6,6 +6,26 @@ // Dialog Test Helper Functions
//
+var defaults = {
+ autoOpen: true,
+ buttons: {},
+ disabled: false,
+ dialogClass: null,
+ draggable: true,
+ height: 200,
+ maxHeight: null,
+ maxWidth: null,
+ minHeight: 100,
+ minWidth: 150,
+ modal: false,
+ overlay: {},
+ position: 'center',
+ resizable: true,
+ stack: true,
+ title: null,
+ width: 300
+};
+
var el,
offsetBefore, offsetAfter,
heightBefore, heightAfter,
@@ -29,6 +49,9 @@ var drag = function(handle, dx, dy) { offsetBefore = d.offset();
heightBefore = d.height();
widthBefore = d.width();
+ //this mouseover is to work around a limitation in resizable
+ //TODO: fix resizable so handle doesn't require mouseover in order to be used
+ $(handle, d).simulate("mouseover");
$(handle, d).simulate("drag", {
dx: dx || 0,
dy: dy || 0
@@ -39,10 +62,10 @@ var drag = function(handle, dx, dy) { widthAfter = d.width();
}
-var moved = function (dx, dy, msg) {
+var moved = function(dx, dy, msg) {
msg = msg ? msg + "." : "";
var actual = { left: offsetAfter.left, top: offsetAfter.top };
- var expected = { left: offsetBefore.left + dx, top: offsetAfter.top };
+ var expected = { left: offsetBefore.left + dx, top: offsetBefore.top + dy };
compare2(actual, expected, 'dragged[' + dragged.dx + ', ' + dragged.dy + '] ' + msg);
}
@@ -58,6 +81,25 @@ function shouldnotmove(why) { moved(0, 0, why);
}
+var resized = function(dw, dh, msg) {
+ msg = msg ? msg + "." : "";
+ var actual = { width: widthAfter, height: heightAfter };
+ var expected = { width: widthBefore + dw, height: heightBefore + dh };
+ compare2(actual, expected, 'resized[' + dragged.dx + ', ' + dragged.dy + '] ' + msg);
+}
+
+function shouldresize(why) {
+ var handle = $(".ui-resizable-se", dlg());
+ drag(handle, 50, 50);
+ resized(50, 50, why);
+}
+
+function shouldnotresize(why) {
+ var handle = $(".ui-resizable-se", dlg());
+ drag(handle, 50, 50);
+ resized(0, 0, why);
+}
+
var border = function(el, side) { return parseInt(el.css('border-' + side + '-width')); }
var margin = function(el, side) { return parseInt(el.css('margin-' + side)); }
@@ -74,18 +116,18 @@ test("init", function() { $([]).dialog().remove();
ok(true, '.dialog() called on empty collection');
- $("<div/>").dialog().remove();
+ $('<div/>').dialog().remove();
ok(true, '.dialog() called on disconnected DOMElement');
- $("<div/>").dialog().dialog("foo").remove();
+ $('<div/>').dialog().dialog("foo").remove();
ok(true, 'arbitrary method called after init');
- el = $("<div/>").dialog()
+ el = $('<div/>').dialog()
var foo = el.data("foo.dialog");
el.remove();
ok(true, 'arbitrary option getter after init');
- $("<div/>").dialog().data("foo.dialog", "bar").remove();
+ $('<div/>').dialog().data("foo.dialog", "bar").remove();
ok(true, 'arbitrary option setter after init');
});
@@ -98,18 +140,18 @@ test("destroy", function() { $([]).dialog().dialog("destroy").remove();
ok(true, '.dialog("destroy") called on empty collection');
- $("<div/>").dialog().dialog("destroy").remove();
+ $('<div/>').dialog().dialog("destroy").remove();
ok(true, '.dialog("destroy") called on disconnected DOMElement');
- $("<div/>").dialog().dialog("destroy").dialog("foo").remove();
+ $('<div/>').dialog().dialog("destroy").dialog("foo").remove();
ok(true, 'arbitrary method called after destroy');
- el = $("<div/>").dialog();
+ el = $('<div/>').dialog();
var foo = el.dialog("destroy").data("foo.dialog");
el.remove();
ok(true, 'arbitrary option getter after destroy');
- $("<div/>").dialog().dialog("destroy").data("foo.dialog", "bar").remove();
+ $('<div/>').dialog().dialog("destroy").data("foo.dialog", "bar").remove();
ok(true, 'arbitrary option setter after destroy');
});
@@ -137,24 +179,6 @@ test("element types", function() { test("defaults", function() {
el = $('<div/>').dialog();
- var defaults = {
- autoOpen: true,
- buttons: {},
- disabled: false,
- draggable: true,
- height: 200,
- maxHeight: null,
- maxWidth: null,
- minHeight: 100,
- minWidth: 150,
- modal: false,
- overlay: {},
- position: 'center',
- resizable: true,
- stack: true,
- title: null,
- width: 300
- };
$.each(defaults, function(key, val) {
var actual = el.data(key + ".dialog"), expected = val,
method = (expected && expected.constructor == Object) ?
@@ -168,18 +192,16 @@ module("dialog: Options"); test("autoOpen", function() {
expect(2);
-
- el = $("<div/>").dialog({ autoOpen: false });
- isNotOpen('.dialog({ autoOpen: false })');
+ el = $('<div/>').dialog({ autoOpen: false });
+ isNotOpen('.dialog({ autoOpen: false })');
el.remove();
-
- el = $("<div/>").dialog({ autoOpen: true });
- isOpen('.dialog({ autoOpen: true })');
+ el = $('<div/>').dialog({ autoOpen: true });
+ isOpen('.dialog({ autoOpen: true })');
el.remove();
});
test("buttons", function() {
- expect(10);
+ expect(14);
var buttons = {
"Ok": function(ev, ui) {
ok(true, "button click fires callback");
@@ -192,7 +214,7 @@ test("buttons", function() { equals(ev.target, btn[1], "event target");
}
}
- el = $("<div/>").dialog({ buttons: buttons });
+ el = $('<div/>').dialog({ buttons: buttons });
var btn = $("button", dlg());
equals(btn.length, 2, "number of buttons");
var i = 0;
@@ -202,68 +224,153 @@ test("buttons", function() { });
equals(btn.parent().attr('className'), 'ui-dialog-buttonpane', "buttons in container");
btn.trigger("click");
+
+ var newButtons = {
+ "Close": function() {}
+ }
+
+ equals(el.data("buttons.dialog"), buttons, '.data("buttons.dialog") getter');
+ el.data("buttons.dialog", newButtons);
+ equals(el.data("buttons.dialog"), newButtons, '.data("buttons.dialog", ...) setter');
+
+ btn = $("button", dlg());
+ equals(btn.length, 1, "number of buttons after setter");
+ var i = 0;
+ $.each(newButtons, function(key, val) {
+ equals(btn.eq(i).text(), key, "text of button " + (i+1));
+ i += 1;
+ });
+
+ el.remove();
+});
+
+test("dialogClass", function() {
+ expect(4);
+ el = $('<div/>').dialog();
+ equals(dlg().is(".foo"), false, 'dialogClass not specified. foo class added');
+ el.remove();
+ el = $('<div/>').dialog({ dialogClass: "foo" });
+ equals(dlg().is(".foo"), true, 'dialogClass in init. foo class added');
+ el.remove();
+ el = $('<div/>').dialog({ dialogClass: "foo bar" });
+ equals(dlg().is(".foo"), true, 'dialogClass in init, two classes. foo class added');
+ equals(dlg().is(".bar"), true, 'dialogClass in init, two classes. bar class added');
el.remove();
});
test("draggable", function() {
- el = $("<div/>").dialog({ draggable: false });
- shouldnotmove();
+ expect(2);
+ el = $('<div/>').dialog({ draggable: false });
+ shouldnotmove();
el.remove();
- el = $("<div/>").dialog({ draggable: true });
- shouldmove();
+ el = $('<div/>').dialog({ draggable: true });
+ shouldmove();
el.remove();
});
test("height", function() {
- el = $("<div/>").dialog();
- equals(dlg().height(), 200, "default height");
+ expect(2);
+ el = $('<div/>').dialog();
+ equals(dlg().height(), defaults.height, "default height");
el.remove();
- el = $("<div/>").dialog({ height: 437 });
- equals(dlg().height(), 437, "default height");
+ el = $('<div/>').dialog({ height: 437 });
+ equals(dlg().height(), 437, "explicit height");
el.remove();
});
test("maxHeight", function() {
- el = $("<div/>").dialog({ maxHeight: 400 });
- drag('.ui-resizable-s', 1000, 1000);
- equals(heightAfter, 400, "maxHeight");
+ expect(2);
+ el = $('<div/>').dialog({ maxHeight: 400 });
+ drag('.ui-resizable-s', 1000, 1000);
+ equals(heightAfter, 400, "maxHeight");
el.remove();
- el = $("<div/>").dialog({ maxHeight: 400 });
- drag('.ui-resizable-n', -1000, -1000);
- equals(heightAfter, 400, "maxHeight");
+ el = $('<div/>').dialog({ maxHeight: 400 });
+ drag('.ui-resizable-n', -1000, -1000);
+ equals(heightAfter, 400, "maxHeight");
el.remove();
});
test("maxWidth", function() {
- el = $("<div/>").dialog({ maxWidth: 400 });
- drag('.ui-resizable-e', 1000, 1000);
- equals(widthAfter, 400, "maxWidth");
+ expect(2);
+ el = $('<div/>').dialog({ maxWidth: 400 });
+ drag('.ui-resizable-e', 1000, 1000);
+ equals(widthAfter, 400, "maxWidth");
el.remove();
- el = $("<div/>").dialog({ maxWidth: 400 });
- drag('.ui-resizable-w', -1000, -1000);
- equals(widthAfter, 400, "maxWidth");
+ el = $('<div/>').dialog({ maxWidth: 400 });
+ drag('.ui-resizable-w', -1000, -1000);
+ equals(widthAfter, 400, "maxWidth");
el.remove();
});
test("minHeight", function() {
- el = $("<div/>").dialog({ minHeight: 10 });
- drag('.ui-resizable-s', -1000, -1000);
- equals(heightAfter, 10, "minHeight");
+ expect(2);
+ el = $('<div/>').dialog({ minHeight: 10 });
+ drag('.ui-resizable-s', -1000, -1000);
+ equals(heightAfter, 10, "minHeight");
el.remove();
- el = $("<div/>").dialog({ minHeight: 10 });
- drag('.ui-resizable-n', 1000, 1000);
- equals(heightAfter, 10, "minHeight");
+ el = $('<div/>').dialog({ minHeight: 10 });
+ drag('.ui-resizable-n', 1000, 1000);
+ equals(heightAfter, 10, "minHeight");
el.remove();
});
test("minWidth", function() {
- el = $("<div/>").dialog({ minWidth: 10 });
- drag('.ui-resizable-e', -1000, -1000);
- equals(widthAfter, 10, "minWidth");
+ expect(2);
+ el = $('<div/>').dialog({ minWidth: 10 });
+ drag('.ui-resizable-e', -1000, -1000);
+ equals(widthAfter, 10, "minWidth");
+ el.remove();
+ el = $('<div/>').dialog({ minWidth: 10 });
+ drag('.ui-resizable-w', 1000, 1000);
+ equals(widthAfter, 10, "minWidth");
+ el.remove();
+});
+
+test("modal", function() {
+ ok(false, "missing test");
+});
+
+test("overlay", function() {
+ ok(false, "missing test");
+});
+
+test("position", function() {
+ ok(false, "missing test");
+});
+
+test("resizable", function() {
+ expect(2);
+ el = $('<div/>').dialog();
+ shouldresize("[default]");
+ el.remove();
+ el = $('<div/>').dialog({ resizable: false });
+ shouldnotresize("disabled in init options");
+ el.remove();
+
+});
+
+test("stack", function() {
+ ok(false, "missing test");
+});
+
+test("title", function() {
+ expect(4);
+ function titleText() {
+ return dlg().find(".ui-dialog-title").text();
+ }
+ el = $('<div/>').dialog(); equals(titleText(), "", "[default]"); el.remove();
+ el = $('<div title="foo"/>').dialog(); equals(titleText(), "foo", "title in element attribute"); el.remove();
+ el = $('<div/>').dialog({ title: 'foo' }); equals(titleText(), "foo", "title in init options"); el.remove();
+ el = $('<div title="foo"/>').dialog({ title: 'bar' }); equals(titleText(), "bar", "title in init options should override title in element attribute"); el.remove();
+});
+
+test("width", function() {
+ expect(2);
+ el = $('<div/>').dialog();
+ equals(dlg().width(), defaults.width, "default width");
el.remove();
- el = $("<div/>").dialog({ minWidth: 10 });
- drag('.ui-resizable-w', 1000, 1000);
- equals(widthAfter, 10, "minWidth");
+ el = $('<div/>').dialog({width: 437 });
+ equals(dlg().width(), 437, "explicit width");
el.remove();
});
@@ -297,7 +404,7 @@ test("open", function() { test("close", function() {
expect(2);
- el = $("<div/>").dialog({
+ el = $('<div/>').dialog({
close: function(ev, ui) {
ok(true, '.dialog("close") fires close callback');
equals(this, el[0], "context of callback");
diff --git a/tests/draggable.js b/tests/draggable.js index 064ec074c..fe22cdcfb 100644 --- a/tests/draggable.js +++ b/tests/draggable.js @@ -21,7 +21,7 @@ var drag = function(handle, dx, dy) { var moved = function (dx, dy, msg) { msg = msg ? msg + "." : ""; var actual = { left: offsetAfter.left, top: offsetAfter.top }; - var expected = { left: offsetBefore.left + dx, top: offsetAfter.top }; + var expected = { left: offsetBefore.left + dx, top: offsetBefore.top + dy }; compare2(actual, expected, 'dragged[' + dragged.dx + ', ' + dragged.dy + '] ' + msg); } |