aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/dialog/helper.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-04-07 10:55:52 -0400
committerScott González <scott.gonzalez@gmail.com>2015-04-09 09:27:00 -0400
commitbde431bb449b1d957d4e0b736111ff342f2a919d (patch)
tree27fd40037c30dbff8ef3b6113e90817ab96b53bf /tests/unit/dialog/helper.js
parentdc4b015a8b9acdb5bff2d5dd89737b3d8b64097f (diff)
downloadjquery-ui-bde431bb449b1d957d4e0b736111ff342f2a919d.tar.gz
jquery-ui-bde431bb449b1d957d4e0b736111ff342f2a919d.zip
Tests: Rename files
Ref gh-1528
Diffstat (limited to 'tests/unit/dialog/helper.js')
-rw-r--r--tests/unit/dialog/helper.js55
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/unit/dialog/helper.js b/tests/unit/dialog/helper.js
new file mode 100644
index 000000000..f84d1d624
--- /dev/null
+++ b/tests/unit/dialog/helper.js
@@ -0,0 +1,55 @@
+define( [
+ "jquery",
+ "lib/helper",
+ "ui/dialog"
+], function( $, helper ) {
+
+return $.extend( helper, {
+ drag: function(element, handle, dx, dy) {
+ var d = element.dialog("widget");
+ //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").simulate( "drag", {
+ dx: dx,
+ dy: dy
+ });
+ },
+ testDrag: function(element, dx, dy, expectedDX, expectedDY, msg) {
+ var actualDX, actualDY, offsetAfter,
+ d = element.dialog("widget"),
+ handle = $(".ui-dialog-titlebar", d),
+ offsetBefore = d.offset();
+
+ this.drag(element, handle, dx, dy);
+
+ offsetAfter = d.offset();
+
+ msg = msg ? msg + "." : "";
+
+ actualDX = offsetAfter.left - offsetBefore.left;
+ actualDY = offsetAfter.top - offsetBefore.top;
+ ok( expectedDX - actualDX <= 1 && expectedDY - actualDY <= 1, "dragged[" + expectedDX + ", " + expectedDY + "] " + msg);
+ },
+ // TODO switch back to checking the size of the .ui-dialog element (var d)
+ // once we switch to using box-sizing: border-box (#9845) that should work fine
+ // using the element's dimensions to avoid subpixel errors
+ shouldResize: function(element, dw, dh, msg) {
+ var heightAfter, widthAfter, actual, expected,
+ d = element.dialog("widget"),
+ handle = $(".ui-resizable-se", d),
+ heightBefore = element.height(),
+ widthBefore = element.width();
+
+ this.drag(element, handle, 50, 50);
+
+ heightAfter = element.height();
+ widthAfter = element.width();
+
+ msg = msg ? msg + "." : "";
+ actual = { width: widthAfter, height: heightAfter },
+ expected = { width: widthBefore + dw, height: heightBefore + dh };
+ deepEqual(actual, expected, "resized[" + 50 + ", " + 50 + "] " + msg);
+ }
+} );
+
+} );