2010-08-26 14:59:51 +00:00
|
|
|
(function( $ ) {
|
2010-01-07 03:19:50 +00:00
|
|
|
|
2010-08-26 14:59:51 +00:00
|
|
|
module( "widget factory", {
|
2010-01-07 03:19:50 +00:00
|
|
|
teardown: function() {
|
|
|
|
delete $.ui.testWidget;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2010-08-26 14:59:51 +00:00
|
|
|
test( "widget creation", function() {
|
2010-01-07 03:19:50 +00:00
|
|
|
var myPrototype = {
|
2010-01-15 18:58:20 +00:00
|
|
|
_create: function() {},
|
2010-01-07 03:19:50 +00:00
|
|
|
creationTest: function() {}
|
|
|
|
};
|
2010-08-26 14:59:51 +00:00
|
|
|
|
|
|
|
$.widget( "ui.testWidget", myPrototype );
|
|
|
|
ok( $.isFunction( $.ui.testWidget ), "constructor was created" );
|
|
|
|
equals( "object", typeof $.ui.testWidget.prototype, "prototype was created" );
|
|
|
|
equals( $.ui.testWidget.prototype._create, myPrototype._create,
|
|
|
|
"create function is copied over" );
|
|
|
|
equals( $.ui.testWidget.prototype.creationTest, myPrototype.creationTest,
|
|
|
|
"random function is copied over" );
|
|
|
|
equals( $.ui.testWidget.prototype.option, $.Widget.prototype.option,
|
|
|
|
"option method copied over from base widget" );
|
2010-01-07 03:19:50 +00:00
|
|
|
});
|
|
|
|
|
2011-01-24 00:58:31 +00:00
|
|
|
test( "element normalization", function() {
|
2011-01-31 15:37:50 +00:00
|
|
|
expect( 11 );
|
2011-01-24 00:58:31 +00:00
|
|
|
var elem;
|
|
|
|
$.widget( "ui.testWidget", {} );
|
|
|
|
|
|
|
|
$.ui.testWidget.prototype._create = function() {
|
2011-02-26 12:31:45 +00:00
|
|
|
// workaround for core ticket #8381
|
|
|
|
this.element.appendTo( "#qunit-fixture" );
|
2011-01-24 00:58:31 +00:00
|
|
|
ok( this.element.is( "div" ), "generated div" );
|
|
|
|
same( this.element.data( "testWidget" ), this, "intance stored in .data()" );
|
|
|
|
};
|
|
|
|
$.ui.testWidget();
|
|
|
|
|
2011-02-11 02:25:50 +00:00
|
|
|
$.ui.testWidget.prototype.defaultElement = "<span data-test='pass'></span>";
|
2011-01-24 00:58:31 +00:00
|
|
|
$.ui.testWidget.prototype._create = function() {
|
|
|
|
ok( this.element.is( "span[data-test=pass]" ), "generated span with properties" );
|
|
|
|
same( this.element.data( "testWidget" ), this, "instace stored in .data()" );
|
|
|
|
};
|
|
|
|
$.ui.testWidget();
|
|
|
|
|
|
|
|
elem = $( "<input>" );
|
|
|
|
$.ui.testWidget.prototype._create = function() {
|
|
|
|
same( this.element[ 0 ], elem[ 0 ], "from element" );
|
|
|
|
same( elem.data( "testWidget" ), this, "instace stored in .data()" );
|
|
|
|
};
|
|
|
|
$.ui.testWidget( {}, elem[ 0 ] );
|
|
|
|
|
|
|
|
elem = $( "<div>" );
|
|
|
|
$.ui.testWidget.prototype._create = function() {
|
|
|
|
same( this.element[ 0 ], elem[ 0 ], "from jQuery object" );
|
|
|
|
same( elem.data( "testWidget" ), this, "instace stored in .data()" );
|
|
|
|
};
|
|
|
|
$.ui.testWidget( {}, elem );
|
|
|
|
|
|
|
|
elem = $( "<div id='element-normalization-selector'></div>" )
|
2011-02-23 11:46:13 +00:00
|
|
|
.appendTo( "#qunit-fixture" );
|
2011-01-24 00:58:31 +00:00
|
|
|
$.ui.testWidget.prototype._create = function() {
|
|
|
|
same( this.element[ 0 ], elem[ 0 ], "from selector" );
|
|
|
|
same( elem.data( "testWidget" ), this, "instace stored in .data()" );
|
|
|
|
};
|
|
|
|
$.ui.testWidget( {}, "#element-normalization-selector" );
|
2011-01-24 18:33:24 +00:00
|
|
|
|
|
|
|
$.ui.testWidget.prototype.defaultElement = null;
|
|
|
|
$.ui.testWidget.prototype._create = function() {
|
|
|
|
// using strictEqual throws an error (Maximum call stack size exceeded)
|
|
|
|
ok( this.element[ 0 ] === this, "instance as element" );
|
|
|
|
};
|
|
|
|
$.ui.testWidget();
|
2011-01-24 00:58:31 +00:00
|
|
|
});
|
|
|
|
|
2010-08-26 14:59:51 +00:00
|
|
|
test( "jQuery usage", function() {
|
2010-09-30 00:36:45 +00:00
|
|
|
expect( 11 );
|
2010-08-26 14:59:51 +00:00
|
|
|
|
2010-09-30 00:36:45 +00:00
|
|
|
var shouldCreate = false;
|
2010-08-26 14:59:51 +00:00
|
|
|
|
|
|
|
$.widget( "ui.testWidget", {
|
2010-01-07 03:19:50 +00:00
|
|
|
getterSetterVal: 5,
|
2010-01-15 18:58:20 +00:00
|
|
|
_create: function() {
|
2010-09-30 00:36:45 +00:00
|
|
|
ok( shouldCreate, "create called on instantiation" );
|
2010-01-07 03:19:50 +00:00
|
|
|
},
|
2010-08-26 14:59:51 +00:00
|
|
|
methodWithParams: function( param1, param2 ) {
|
|
|
|
ok( true, "method called via .pluginName(methodName)" );
|
|
|
|
equals( param1, "value1",
|
|
|
|
"parameter passed via .pluginName(methodName, param)" );
|
|
|
|
equals( param2, "value2",
|
|
|
|
"multiple parameters passed via .pluginName(methodName, param, param)" );
|
2010-01-07 03:19:50 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
2010-08-26 14:59:51 +00:00
|
|
|
getterSetterMethod: function( val ) {
|
|
|
|
if ( val ) {
|
2010-01-07 03:19:50 +00:00
|
|
|
this.getterSetterVal = val;
|
|
|
|
} else {
|
|
|
|
return this.getterSetterVal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2010-08-26 14:59:51 +00:00
|
|
|
|
2010-09-30 00:36:45 +00:00
|
|
|
shouldCreate = true;
|
2011-01-25 02:22:40 +00:00
|
|
|
var elem = $( "<div>" )
|
2010-09-30 00:36:45 +00:00
|
|
|
.bind( "testwidgetcreate", function() {
|
|
|
|
ok( shouldCreate, "create event triggered on instantiation" );
|
|
|
|
})
|
|
|
|
.testWidget();
|
|
|
|
shouldCreate = false;
|
2010-08-26 14:59:51 +00:00
|
|
|
|
|
|
|
var instance = elem.data( "testWidget" );
|
|
|
|
equals( typeof instance, "object", "instance stored in .data(pluginName)" );
|
|
|
|
equals( instance.element[0], elem[0], "element stored on widget" );
|
|
|
|
var ret = elem.testWidget( "methodWithParams", "value1", "value2" );
|
|
|
|
equals( ret, elem, "jQuery object returned from method call" );
|
|
|
|
|
|
|
|
ret = elem.testWidget( "getterSetterMethod" );
|
|
|
|
equals( ret, 5, "getter/setter can act as getter" );
|
|
|
|
ret = elem.testWidget( "getterSetterMethod", 30 );
|
|
|
|
equals( ret, elem, "getter/setter method can be chainable" );
|
|
|
|
equals( instance.getterSetterVal, 30, "getter/setter can act as setter" );
|
2010-01-07 03:19:50 +00:00
|
|
|
});
|
|
|
|
|
2010-08-26 14:59:51 +00:00
|
|
|
test( "direct usage", function() {
|
|
|
|
expect( 9 );
|
|
|
|
|
2010-09-30 00:36:45 +00:00
|
|
|
var shouldCreate = false;
|
2010-08-26 14:59:51 +00:00
|
|
|
|
|
|
|
$.widget( "ui.testWidget", {
|
2010-01-07 03:19:50 +00:00
|
|
|
getterSetterVal: 5,
|
2010-01-15 18:58:20 +00:00
|
|
|
_create: function() {
|
2010-09-30 00:36:45 +00:00
|
|
|
ok( shouldCreate, "create called on instantiation" );
|
2010-01-07 03:19:50 +00:00
|
|
|
},
|
2010-08-26 14:59:51 +00:00
|
|
|
methodWithParams: function( param1, param2 ) {
|
|
|
|
ok( true, "method called dirctly" );
|
|
|
|
equals( param1, "value1", "parameter passed via direct call" );
|
|
|
|
equals( param2, "value2", "multiple parameters passed via direct call" );
|
|
|
|
|
2010-01-07 03:19:50 +00:00
|
|
|
return this;
|
|
|
|
},
|
2010-08-26 14:59:51 +00:00
|
|
|
getterSetterMethod: function( val ) {
|
|
|
|
if ( val ) {
|
2010-01-07 03:19:50 +00:00
|
|
|
this.getterSetterVal = val;
|
|
|
|
} else {
|
|
|
|
return this.getterSetterVal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2011-01-25 02:22:40 +00:00
|
|
|
var elem = $( "<div>" )[ 0 ];
|
2010-01-07 03:19:50 +00:00
|
|
|
|
2010-09-30 00:36:45 +00:00
|
|
|
shouldCreate = true;
|
2010-08-26 14:59:51 +00:00
|
|
|
var instance = new $.ui.testWidget( {}, elem );
|
2010-09-30 00:36:45 +00:00
|
|
|
shouldCreate = false;
|
2010-08-26 14:59:51 +00:00
|
|
|
|
|
|
|
equals( $( elem ).data( "testWidget" ), instance,
|
|
|
|
"instance stored in .data(pluginName)" );
|
|
|
|
equals( instance.element[ 0 ], elem, "element stored on widget" );
|
2010-01-07 03:19:50 +00:00
|
|
|
|
2010-08-26 14:59:51 +00:00
|
|
|
var ret = instance.methodWithParams( "value1", "value2" );
|
|
|
|
equals( ret, instance, "plugin returned from method call" );
|
|
|
|
|
2010-01-07 03:19:50 +00:00
|
|
|
ret = instance.getterSetterMethod();
|
2010-08-26 14:59:51 +00:00
|
|
|
equals( ret, 5, "getter/setter can act as getter" );
|
|
|
|
instance.getterSetterMethod( 30 );
|
|
|
|
equals( instance.getterSetterVal, 30, "getter/setter can act as setter" );
|
2010-01-07 03:19:50 +00:00
|
|
|
});
|
|
|
|
|
2010-12-10 19:11:20 +00:00
|
|
|
test( "error handling", function() {
|
2011-02-16 08:28:32 +00:00
|
|
|
expect( 3 );
|
2010-12-10 19:11:20 +00:00
|
|
|
var error = $.error;
|
2011-02-16 08:28:32 +00:00
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_privateMethod: function () {}
|
|
|
|
});
|
2010-12-10 19:11:20 +00:00
|
|
|
$.error = function( msg ) {
|
|
|
|
equal( msg, "cannot call methods on testWidget prior to initialization; " +
|
|
|
|
"attempted to call method 'missing'", "method call before init" );
|
|
|
|
};
|
|
|
|
$( "<div>" ).testWidget( "missing" );
|
|
|
|
$.error = function( msg ) {
|
|
|
|
equal( msg, "no such method 'missing' for testWidget widget instance",
|
|
|
|
"invalid method call on widget instance" );
|
|
|
|
};
|
|
|
|
$( "<div>" ).testWidget().testWidget( "missing" );
|
2011-02-16 08:28:32 +00:00
|
|
|
$.error = function ( msg ) {
|
|
|
|
equal( msg, "no such method '_privateMethod' for testWidget widget instance",
|
|
|
|
"invalid method call on widget instance" );
|
|
|
|
};
|
|
|
|
$( "<div>" ).testWidget().testWidget( "_privateMethod" );
|
2010-12-10 19:11:20 +00:00
|
|
|
$.error = error;
|
|
|
|
});
|
|
|
|
|
2011-02-01 02:55:22 +00:00
|
|
|
test( "merge multiple option arguments", function() {
|
2010-08-26 14:59:51 +00:00
|
|
|
expect( 1 );
|
|
|
|
$.widget( "ui.testWidget", {
|
2010-01-15 18:58:20 +00:00
|
|
|
_create: function() {
|
2010-08-26 14:59:51 +00:00
|
|
|
same( this.options, {
|
2010-01-07 03:19:50 +00:00
|
|
|
disabled: false,
|
|
|
|
option1: "value1",
|
|
|
|
option2: "value2",
|
|
|
|
option3: "value3",
|
|
|
|
option4: {
|
|
|
|
option4a: "valuea",
|
|
|
|
option4b: "valueb"
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2011-01-25 02:22:40 +00:00
|
|
|
$( "<div>" ).testWidget({
|
2010-01-07 03:19:50 +00:00
|
|
|
option1: "valuex",
|
|
|
|
option2: "valuex",
|
|
|
|
option3: "value3",
|
|
|
|
option4: {
|
|
|
|
option4a: "valuex"
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
option1: "value1",
|
|
|
|
option2: "value2",
|
|
|
|
option4: {
|
|
|
|
option4b: "valueb"
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
option4: {
|
|
|
|
option4a: "valuea"
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2011-02-01 02:55:22 +00:00
|
|
|
test( "._getCreateOptions()", function() {
|
2010-10-06 19:11:49 +00:00
|
|
|
expect( 1 );
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
options: {
|
|
|
|
option1: "valuex",
|
|
|
|
option2: "valuex",
|
2011-02-11 02:25:50 +00:00
|
|
|
option3: "value3"
|
2010-10-06 19:11:49 +00:00
|
|
|
},
|
|
|
|
_getCreateOptions: function() {
|
|
|
|
return {
|
|
|
|
option1: "override1",
|
2011-02-11 02:25:50 +00:00
|
|
|
option2: "overideX"
|
2010-10-06 19:11:49 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
_create: function() {
|
|
|
|
same( this.options, {
|
|
|
|
disabled: false,
|
|
|
|
option1: "override1",
|
|
|
|
option2: "value2",
|
|
|
|
option3: "value3"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$( "<div>" ).testWidget({ option2: "value2" });
|
|
|
|
});
|
|
|
|
|
2010-08-26 14:59:51 +00:00
|
|
|
test( "re-init", function() {
|
2011-01-25 02:22:40 +00:00
|
|
|
var div = $( "<div>" ),
|
2010-08-23 19:35:28 +00:00
|
|
|
actions = [];
|
|
|
|
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {
|
|
|
|
actions.push( "create" );
|
|
|
|
},
|
|
|
|
_init: function() {
|
|
|
|
actions.push( "init" );
|
|
|
|
},
|
|
|
|
_setOption: function( key, value ) {
|
|
|
|
actions.push( "option" + key );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
actions = [];
|
|
|
|
div.testWidget({ foo: "bar" });
|
|
|
|
same( actions, [ "create", "init" ], "correct methods called on init" );
|
|
|
|
|
|
|
|
actions = [];
|
|
|
|
div.testWidget();
|
|
|
|
same( actions, [ "init" ], "correct methods call on re-init" );
|
|
|
|
|
|
|
|
actions = [];
|
|
|
|
div.testWidget({ foo: "bar" });
|
|
|
|
same( actions, [ "optionfoo", "init" ], "correct methods called on re-init with options" );
|
|
|
|
});
|
|
|
|
|
2011-01-14 20:52:03 +00:00
|
|
|
test( "._super()", function() {
|
2011-02-11 02:25:50 +00:00
|
|
|
expect( 9 );
|
2011-01-14 20:52:03 +00:00
|
|
|
var instance;
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
method: function( a, b ) {
|
2011-02-11 02:25:50 +00:00
|
|
|
same( this, instance, "this is correct in testWidget" );
|
|
|
|
same( a, 5, "parameter passed to testWidget" );
|
|
|
|
same( b, 20, "second parameter passed to testWidget" );
|
2011-01-14 20:52:03 +00:00
|
|
|
return a + b;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$.widget( "ui.testWidget2", $.ui.testWidget, {
|
2011-02-11 02:25:50 +00:00
|
|
|
method: function( a, b ) {
|
|
|
|
same( this, instance, "this is correct in testWidget2" );
|
|
|
|
same( a, 5, "parameter passed to testWidget2" );
|
|
|
|
same( b, 10, "parameter passed to testWidget2" );
|
|
|
|
return this._super( "method", a, b*2 );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$.widget( "ui.testWidget3", $.ui.testWidget2, {
|
2011-01-14 20:52:03 +00:00
|
|
|
method: function( a ) {
|
2011-02-11 02:25:50 +00:00
|
|
|
same( this, instance, "this is correct in testWidget3" );
|
|
|
|
same( a, 5, "parameter passed to testWidget3" );
|
2011-01-14 20:52:03 +00:00
|
|
|
var ret = this._super( "method", a, a*2 );
|
2011-02-11 02:25:50 +00:00
|
|
|
same( ret, 25, "super returned value" );
|
2011-01-14 20:52:03 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2011-02-11 02:25:50 +00:00
|
|
|
instance = $( "<div>" ).testWidget3().data( "testWidget3" );
|
2011-01-14 20:52:03 +00:00
|
|
|
instance.method( 5 );
|
2011-02-11 02:25:50 +00:00
|
|
|
delete $.ui.testWidget3;
|
2011-01-14 20:52:03 +00:00
|
|
|
delete $.ui.testWidget2;
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "._superApply()", function() {
|
2011-02-11 02:25:50 +00:00
|
|
|
expect( 10 );
|
2011-01-14 20:52:03 +00:00
|
|
|
var instance;
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
method: function( a, b ) {
|
2011-02-11 02:25:50 +00:00
|
|
|
same( this, instance, "this is correct in testWidget" );
|
|
|
|
same( a, 5, "parameter passed to testWidget" );
|
|
|
|
same( b, 10, "second parameter passed to testWidget" );
|
2011-01-14 20:52:03 +00:00
|
|
|
return a + b;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$.widget( "ui.testWidget2", $.ui.testWidget, {
|
|
|
|
method: function( a, b ) {
|
2011-02-11 02:25:50 +00:00
|
|
|
same( this, instance, "this is correct in testWidget2" );
|
|
|
|
same( a, 5, "parameter passed to testWidget2" );
|
|
|
|
same( b, 10, "second parameter passed to testWidget2" );
|
|
|
|
return this._superApply( "method", arguments );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$.widget( "ui.testWidget3", $.ui.testWidget2, {
|
|
|
|
method: function( a, b ) {
|
|
|
|
same( this, instance, "this is correct in testWidget3" );
|
|
|
|
same( a, 5, "parameter passed to testWidget3" );
|
|
|
|
same( b, 10, "second parameter passed to testWidget3" );
|
2011-01-14 20:52:03 +00:00
|
|
|
var ret = this._superApply( "method", arguments );
|
|
|
|
same( ret, 15, "super returned value" );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2011-02-11 02:25:50 +00:00
|
|
|
instance = $( "<div>" ).testWidget3().data( "testWidget3" );
|
2011-01-14 20:52:03 +00:00
|
|
|
instance.method( 5, 10 );
|
2011-02-11 02:25:50 +00:00
|
|
|
delete $.ui.testWidget3;
|
2011-01-14 20:52:03 +00:00
|
|
|
delete $.ui.testWidget2;
|
|
|
|
});
|
|
|
|
|
2010-08-26 14:50:26 +00:00
|
|
|
test( ".option() - getter", function() {
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {}
|
|
|
|
});
|
|
|
|
|
2011-01-25 02:22:40 +00:00
|
|
|
var div = $( "<div>" ).testWidget({
|
2010-08-26 14:50:26 +00:00
|
|
|
foo: "bar",
|
|
|
|
baz: 5,
|
|
|
|
qux: [ "quux", "quuux" ]
|
|
|
|
});
|
|
|
|
|
|
|
|
same( div.testWidget( "option", "foo"), "bar", "single option - string" );
|
|
|
|
same( div.testWidget( "option", "baz"), 5, "single option - number" );
|
|
|
|
same( div.testWidget( "option", "qux"), [ "quux", "quuux" ],
|
|
|
|
"single option - array" );
|
|
|
|
|
|
|
|
var options = div.testWidget( "option" );
|
|
|
|
same( options, {
|
|
|
|
disabled: false,
|
|
|
|
foo: "bar",
|
|
|
|
baz: 5,
|
|
|
|
qux: [ "quux", "quuux" ]
|
|
|
|
}, "full options hash returned" );
|
|
|
|
options.foo = "notbar";
|
|
|
|
same( div.testWidget( "option", "foo"), "bar",
|
|
|
|
"modifying returned options hash does not modify plugin instance" );
|
|
|
|
});
|
|
|
|
|
2010-09-27 15:21:09 +00:00
|
|
|
test( ".option() - delegate to ._setOptions()", function() {
|
|
|
|
var calls = [];
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {},
|
|
|
|
_setOptions: function( options ) {
|
|
|
|
calls.push( options );
|
|
|
|
}
|
|
|
|
});
|
2011-01-25 02:22:40 +00:00
|
|
|
var div = $( "<div>" ).testWidget();
|
2010-09-27 15:21:09 +00:00
|
|
|
|
|
|
|
calls = [];
|
|
|
|
div.testWidget( "option", "foo", "bar" );
|
|
|
|
same( calls, [{ foo: "bar" }], "_setOptions called for single option" );
|
|
|
|
|
|
|
|
calls = [];
|
|
|
|
div.testWidget( "option", {
|
|
|
|
bar: "qux",
|
|
|
|
quux: "quuux"
|
|
|
|
});
|
|
|
|
same( calls, [{ bar: "qux", quux: "quuux" }],
|
|
|
|
"_setOptions called with multiple options" );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( ".option() - delegate to ._setOption()", function() {
|
2010-08-26 14:50:26 +00:00
|
|
|
var calls = [];
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {},
|
|
|
|
_setOption: function( key, val ) {
|
|
|
|
calls.push({
|
|
|
|
key: key,
|
|
|
|
val: val
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2011-01-25 02:22:40 +00:00
|
|
|
var div = $( "<div>" ).testWidget();
|
2010-08-26 14:50:26 +00:00
|
|
|
|
|
|
|
calls = [];
|
|
|
|
div.testWidget( "option", "foo", "bar" );
|
|
|
|
same( calls, [{ key: "foo", val: "bar" }],
|
|
|
|
"_setOption called for single option" );
|
|
|
|
|
|
|
|
calls = [];
|
|
|
|
div.testWidget( "option", {
|
|
|
|
bar: "qux",
|
|
|
|
quux: "quuux"
|
|
|
|
});
|
|
|
|
same( calls, [
|
|
|
|
{ key: "bar", val: "qux" },
|
|
|
|
{ key: "quux", val: "quuux" }
|
|
|
|
], "_setOption called with multiple options" );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( ".enable()", function() {
|
|
|
|
expect( 2 );
|
2010-08-26 14:59:51 +00:00
|
|
|
$.widget( "ui.testWidget", {
|
2010-08-26 14:50:26 +00:00
|
|
|
_create: function() {},
|
|
|
|
_setOption: function( key, val ) {
|
|
|
|
same( key, "disabled", "_setOption called with disabled option" );
|
|
|
|
same( val, false, "disabled set to false" );
|
|
|
|
}
|
|
|
|
});
|
2011-01-25 02:22:40 +00:00
|
|
|
$( "<div>" ).testWidget().testWidget( "enable" );
|
2010-08-26 14:50:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test( ".disable()", function() {
|
|
|
|
expect( 2 );
|
2010-08-26 14:59:51 +00:00
|
|
|
$.widget( "ui.testWidget", {
|
2010-08-26 14:50:26 +00:00
|
|
|
_create: function() {},
|
|
|
|
_setOption: function( key, val ) {
|
|
|
|
same( key, "disabled", "_setOption called with disabled option" );
|
|
|
|
same( val, true, "disabled set to true" );
|
|
|
|
}
|
|
|
|
});
|
2011-01-25 02:22:40 +00:00
|
|
|
$( "<div>" ).testWidget().testWidget( "disable" );
|
2010-08-26 14:50:26 +00:00
|
|
|
});
|
|
|
|
|
2010-08-26 14:59:51 +00:00
|
|
|
test( ".widget() - base", function() {
|
|
|
|
$.widget( "ui.testWidget", {
|
2010-01-15 18:58:20 +00:00
|
|
|
_create: function() {}
|
2010-01-07 03:19:50 +00:00
|
|
|
});
|
2011-01-25 02:22:40 +00:00
|
|
|
var div = $( "<div>" ).testWidget();
|
2010-08-26 14:59:51 +00:00
|
|
|
same( div[0], div.testWidget( "widget" )[0]);
|
2010-01-07 03:19:50 +00:00
|
|
|
});
|
|
|
|
|
2010-08-26 14:59:51 +00:00
|
|
|
test( ".widget() - overriden", function() {
|
2011-01-25 02:22:40 +00:00
|
|
|
var wrapper = $( "<div>" );
|
2010-08-26 14:59:51 +00:00
|
|
|
$.widget( "ui.testWidget", {
|
2010-01-15 18:58:20 +00:00
|
|
|
_create: function() {},
|
2010-01-07 03:19:50 +00:00
|
|
|
widget: function() {
|
2010-07-30 16:38:18 +00:00
|
|
|
return wrapper;
|
2010-01-07 03:19:50 +00:00
|
|
|
}
|
|
|
|
});
|
2011-01-25 02:22:40 +00:00
|
|
|
same( wrapper[0], $( "<div>" ).testWidget().testWidget( "widget" )[0] );
|
2010-01-07 03:19:50 +00:00
|
|
|
});
|
|
|
|
|
2011-01-25 02:54:50 +00:00
|
|
|
test( "._bind() to element (default)", function() {
|
2011-01-18 06:46:26 +00:00
|
|
|
expect( 12 );
|
|
|
|
var self;
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {
|
|
|
|
self = this;
|
|
|
|
this._bind({
|
|
|
|
keyup: this.keyup,
|
2011-01-18 06:53:20 +00:00
|
|
|
keydown: "keydown"
|
2011-01-18 06:46:26 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
keyup: function( event ) {
|
|
|
|
equals( self, this );
|
|
|
|
equals( self.element[0], event.currentTarget );
|
|
|
|
equals( "keyup", event.type );
|
|
|
|
},
|
|
|
|
keydown: function( event ) {
|
|
|
|
equals( self, this );
|
|
|
|
equals( self.element[0], event.currentTarget );
|
|
|
|
equals( "keydown", event.type );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var widget = $( "<div></div>" )
|
|
|
|
.testWidget()
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
|
|
|
widget
|
|
|
|
.testWidget( "disable" )
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
|
|
|
widget
|
|
|
|
.testWidget( "enable" )
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
|
|
|
widget
|
|
|
|
.testWidget( "destroy" )
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
|
|
|
});
|
|
|
|
|
2011-01-25 02:54:50 +00:00
|
|
|
test( "._bind() to descendent", function() {
|
2011-01-18 06:46:26 +00:00
|
|
|
expect( 12 );
|
|
|
|
var self;
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {
|
|
|
|
self = this;
|
|
|
|
this._bind( this.element.find( "strong" ), {
|
|
|
|
keyup: this.keyup,
|
2011-01-18 06:53:20 +00:00
|
|
|
keydown: "keydown"
|
2011-01-18 06:46:26 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
keyup: function( event ) {
|
|
|
|
equals( self, this );
|
|
|
|
equals( self.element.find( "strong" )[0], event.currentTarget );
|
|
|
|
equals( "keyup", event.type );
|
|
|
|
},
|
|
|
|
keydown: function(event) {
|
|
|
|
equals( self, this );
|
|
|
|
equals( self.element.find( "strong" )[0], event.currentTarget );
|
|
|
|
equals( "keydown", event.type );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// trigger events on both widget and descendent to ensure that only descendent receives them
|
|
|
|
var widget = $( "<div><p><strong>hello</strong> world</p></div>" )
|
|
|
|
.testWidget()
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
|
|
|
var descendent = widget.find( "strong" )
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
|
|
|
widget
|
|
|
|
.testWidget( "disable" )
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
|
|
|
descendent
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
|
|
|
widget
|
|
|
|
.testWidget( "enable" )
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
|
|
|
descendent
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
2011-02-01 02:55:22 +00:00
|
|
|
descendent
|
|
|
|
.addClass( "ui-state-disabled" )
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
2011-01-18 06:46:26 +00:00
|
|
|
widget
|
|
|
|
.testWidget( "destroy" )
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
|
|
|
descendent
|
|
|
|
.trigger( "keyup" )
|
|
|
|
.trigger( "keydown" );
|
|
|
|
});
|
|
|
|
|
2011-01-25 02:54:50 +00:00
|
|
|
test( "._hoverable()", function() {
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {
|
|
|
|
this._hoverable( this.element.children() );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var div = $( "#widget" ).testWidget().children();
|
|
|
|
ok( !div.hasClass( "ui-state-hover" ), "not hovered on init" );
|
|
|
|
div.trigger( "mouseenter" );
|
|
|
|
ok( div.hasClass( "ui-state-hover" ), "hovered after mouseenter" );
|
|
|
|
div.trigger( "mouseleave" );
|
|
|
|
ok( !div.hasClass( "ui-state-hover" ), "not hovered after mouseleave" );
|
|
|
|
|
|
|
|
div.trigger( "mouseenter" );
|
|
|
|
ok( div.hasClass( "ui-state-hover" ), "hovered after mouseenter" );
|
|
|
|
$( "#widget" ).testWidget( "disable" );
|
|
|
|
ok( !div.hasClass( "ui-state-hover" ), "not hovered while disabled" );
|
|
|
|
div.trigger( "mouseenter" );
|
|
|
|
ok( !div.hasClass( "ui-state-hover" ), "can't hover while disabled" );
|
|
|
|
$( "#widget" ).testWidget( "enable" );
|
|
|
|
ok( !div.hasClass( "ui-state-hover" ), "enabling doesn't reset hover" );
|
|
|
|
|
|
|
|
div.trigger( "mouseenter" );
|
|
|
|
ok( div.hasClass( "ui-state-hover" ), "hovered after mouseenter" );
|
|
|
|
$( "#widget" ).testWidget( "destroy" );
|
|
|
|
ok( !div.hasClass( "ui-state-hover" ), "not hovered after destroy" );
|
|
|
|
div.trigger( "mouseenter" );
|
|
|
|
ok( !div.hasClass( "ui-state-hover" ), "event handler removed on destroy" );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "._focusable()", function() {
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {
|
|
|
|
this._focusable( this.element.children() );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var div = $( "#widget" ).testWidget().children();
|
|
|
|
ok( !div.hasClass( "ui-state-focus" ), "not focused on init" );
|
2011-02-01 02:55:22 +00:00
|
|
|
div.trigger( "focusin" );
|
2011-01-25 02:54:50 +00:00
|
|
|
ok( div.hasClass( "ui-state-focus" ), "focused after explicit focus" );
|
2011-02-01 02:55:22 +00:00
|
|
|
div.trigger( "focusout" );
|
2011-01-25 02:54:50 +00:00
|
|
|
ok( !div.hasClass( "ui-state-focus" ), "not focused after blur" );
|
|
|
|
|
2011-02-01 02:55:22 +00:00
|
|
|
div.trigger( "focusin" );
|
2011-01-25 02:54:50 +00:00
|
|
|
ok( div.hasClass( "ui-state-focus" ), "focused after explicit focus" );
|
|
|
|
$( "#widget" ).testWidget( "disable" );
|
|
|
|
ok( !div.hasClass( "ui-state-focus" ), "not focused while disabled" );
|
2011-02-01 02:55:22 +00:00
|
|
|
div.trigger( "focusin" );
|
2011-01-25 02:54:50 +00:00
|
|
|
ok( !div.hasClass( "ui-state-focus" ), "can't focus while disabled" );
|
|
|
|
$( "#widget" ).testWidget( "enable" );
|
|
|
|
ok( !div.hasClass( "ui-state-focus" ), "enabling doesn't reset focus" );
|
|
|
|
|
2011-02-01 02:55:22 +00:00
|
|
|
div.trigger( "focusin" );
|
2011-01-25 02:54:50 +00:00
|
|
|
ok( div.hasClass( "ui-state-focus" ), "focused after explicit focus" );
|
|
|
|
$( "#widget" ).testWidget( "destroy" );
|
|
|
|
ok( !div.hasClass( "ui-state-focus" ), "not focused after destroy" );
|
2011-02-01 02:55:22 +00:00
|
|
|
div.trigger( "focusin" );
|
2011-01-25 02:54:50 +00:00
|
|
|
ok( !div.hasClass( "ui-state-focus" ), "event handler removed on destroy" );
|
|
|
|
});
|
|
|
|
|
2010-08-26 15:49:07 +00:00
|
|
|
test( "._trigger() - no event, no ui", function() {
|
|
|
|
expect( 7 );
|
|
|
|
var handlers = [];
|
|
|
|
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {}
|
|
|
|
});
|
|
|
|
|
|
|
|
$( "#widget" ).testWidget({
|
|
|
|
foo: function( event, ui ) {
|
|
|
|
same( event.type, "testwidgetfoo", "correct event type in callback" );
|
|
|
|
same( ui, {}, "empty ui hash passed" );
|
|
|
|
handlers.push( "callback" );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$( document ).add( "#widget-wrapper" ).add( "#widget" )
|
|
|
|
.bind( "testwidgetfoo", function( event, ui ) {
|
|
|
|
same( ui, {}, "empty ui hash passed" );
|
|
|
|
handlers.push( this );
|
|
|
|
});
|
|
|
|
same( $( "#widget" ).data( "testWidget" )._trigger( "foo" ), true,
|
|
|
|
"_trigger returns true when event is not cancelled" );
|
|
|
|
same( handlers, [
|
|
|
|
$( "#widget" )[ 0 ],
|
|
|
|
$( "#widget-wrapper" )[ 0 ],
|
|
|
|
document,
|
|
|
|
"callback"
|
|
|
|
], "event bubbles and then invokes callback" );
|
|
|
|
|
|
|
|
$( document ).unbind( "testwidgetfoo" );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "._trigger() - cancelled event", function() {
|
|
|
|
expect( 3 );
|
|
|
|
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {}
|
|
|
|
});
|
|
|
|
|
|
|
|
$( "#widget" ).testWidget({
|
|
|
|
foo: function( event, ui ) {
|
|
|
|
ok( true, "callback invoked even if event is cancelled" );
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.bind( "testwidgetfoo", function( event, ui ) {
|
|
|
|
ok( true, "event was triggered" );
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
same( $( "#widget" ).data( "testWidget" )._trigger( "foo" ), false,
|
|
|
|
"_trigger returns false when event is cancelled" );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "._trigger() - cancelled callback", function() {
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {}
|
|
|
|
});
|
|
|
|
|
|
|
|
$( "#widget" ).testWidget({
|
|
|
|
foo: function( event, ui ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
same( $( "#widget" ).data( "testWidget" )._trigger( "foo" ), false,
|
|
|
|
"_trigger returns false when callback returns false" );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "._trigger() - provide event and ui", function() {
|
|
|
|
expect( 7 );
|
|
|
|
|
|
|
|
var originalEvent = $.Event( "originalTest" );
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {},
|
|
|
|
testEvent: function() {
|
|
|
|
var ui = {
|
|
|
|
foo: "bar",
|
|
|
|
baz: {
|
|
|
|
qux: 5,
|
|
|
|
quux: 20
|
|
|
|
}
|
|
|
|
};
|
|
|
|
this._trigger( "foo", originalEvent, ui );
|
|
|
|
same( ui, {
|
|
|
|
foo: "notbar",
|
|
|
|
baz: {
|
|
|
|
qux: 10,
|
|
|
|
quux: "jQuery"
|
|
|
|
}
|
|
|
|
}, "ui object modified" );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$( "#widget" ).bind( "testwidgetfoo", function( event, ui ) {
|
|
|
|
equal( event.originalEvent, originalEvent, "original event object passed" );
|
|
|
|
same( ui, {
|
|
|
|
foo: "bar",
|
|
|
|
baz: {
|
|
|
|
qux: 5,
|
|
|
|
quux: 20
|
|
|
|
}
|
|
|
|
}, "ui hash passed" );
|
|
|
|
ui.foo = "notbar";
|
|
|
|
});
|
|
|
|
$( "#widget-wrapper" ).bind( "testwidgetfoo", function( event, ui ) {
|
|
|
|
equal( event.originalEvent, originalEvent, "original event object passed" );
|
|
|
|
same( ui, {
|
|
|
|
foo: "notbar",
|
|
|
|
baz: {
|
|
|
|
qux: 5,
|
|
|
|
quux: 20
|
|
|
|
}
|
|
|
|
}, "modified ui hash passed" );
|
|
|
|
ui.baz.qux = 10;
|
|
|
|
});
|
|
|
|
$( "#widget" ).testWidget({
|
|
|
|
foo: function( event, ui ) {
|
|
|
|
equal( event.originalEvent, originalEvent, "original event object passed" );
|
|
|
|
same( ui, {
|
|
|
|
foo: "notbar",
|
|
|
|
baz: {
|
|
|
|
qux: 10,
|
|
|
|
quux: 20
|
|
|
|
}
|
|
|
|
}, "modified ui hash passed" );
|
|
|
|
ui.baz.quux = "jQuery";
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.testWidget( "testEvent" );
|
|
|
|
});
|
|
|
|
|
2011-01-24 18:33:24 +00:00
|
|
|
test( "._triger() - instance as element", function() {
|
|
|
|
expect( 4 );
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
defaultElement: null,
|
|
|
|
testEvent: function() {
|
|
|
|
var ui = { foo: "bar" };
|
|
|
|
this._trigger( "foo", null, ui );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var instance = $.ui.testWidget({
|
|
|
|
foo: function( event, ui ) {
|
|
|
|
equal( event.type, "testwidgetfoo", "event object passed to callback" );
|
|
|
|
same( ui, { foo: "bar" }, "ui object passed to callback" );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$( instance ).bind( "testwidgetfoo", function( event, ui ) {
|
|
|
|
equal( event.type, "testwidgetfoo", "event object passed to event handler" );
|
|
|
|
same( ui, { foo: "bar" }, "ui object passed to event handler" );
|
|
|
|
});
|
|
|
|
instance.testEvent();
|
|
|
|
});
|
|
|
|
|
2010-09-03 13:49:29 +00:00
|
|
|
test( "auto-destroy - .remove()", function() {
|
|
|
|
expect( 1 );
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {},
|
|
|
|
destroy: function() {
|
|
|
|
ok( true, "destroyed from .remove()" );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$( "#widget" ).testWidget().remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "auto-destroy - .remove() on parent", function() {
|
|
|
|
expect( 1 );
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {},
|
|
|
|
destroy: function() {
|
|
|
|
ok( true, "destroyed from .remove() on parent" );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$( "#widget" ).testWidget().parent().remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "auto-destroy - .remove() on child", function() {
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {},
|
|
|
|
destroy: function() {
|
|
|
|
ok( false, "destroyed from .remove() on child" );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$( "#widget" ).testWidget().children().remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "auto-destroy - .empty()", function() {
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {},
|
|
|
|
destroy: function() {
|
|
|
|
ok( false, "destroyed from .empty()" );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$( "#widget" ).testWidget().empty();
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "auto-destroy - .empty() on parent", function() {
|
|
|
|
expect( 1 );
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {},
|
|
|
|
destroy: function() {
|
|
|
|
ok( true, "destroyed from .empty() on parent" );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$( "#widget" ).testWidget().parent().empty();
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "auto-destroy - .detach()", function() {
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
_create: function() {},
|
|
|
|
destroy: function() {
|
|
|
|
ok( false, "destroyed from .detach()" );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$( "#widget" ).testWidget().detach();
|
|
|
|
});
|
|
|
|
|
2011-02-03 21:37:17 +00:00
|
|
|
test( "redefine", function() {
|
|
|
|
expect( 4 );
|
|
|
|
$.widget( "ui.testWidget", {
|
|
|
|
method: function( str ) {
|
|
|
|
strictEqual( this, instance, "original invoked with correct this" );
|
|
|
|
equal( str, "bar", "original invoked with correct parameter" );
|
|
|
|
}
|
|
|
|
});
|
2011-02-11 02:25:50 +00:00
|
|
|
$.ui.testWidget.foo = "bar";
|
2011-02-03 21:37:17 +00:00
|
|
|
$.widget( "ui.testWidget", $.ui.testWidget, {
|
|
|
|
method: function( str ) {
|
|
|
|
equal( str, "foo", "new invoked with correct parameter" );
|
|
|
|
this._super( "method", "bar" );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var instance = new $.ui.testWidget();
|
|
|
|
instance.method( "foo" );
|
2011-02-11 02:25:50 +00:00
|
|
|
equal( $.ui.testWidget.foo, "bar", "static properties remain" );
|
2011-02-03 21:37:17 +00:00
|
|
|
});
|
|
|
|
|
2011-01-25 02:22:40 +00:00
|
|
|
}( jQuery ) );
|