1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
define( [
"qunit",
"jquery",
"ui/widgets/selectmenu"
], function( QUnit, $ ) {
QUnit.module( "selectmenu: events", {
beforeEach: function() {
this.element = $( "#speed" );
}
} );
QUnit.test( "change", function( assert ) {
var ready = assert.async();
assert.expect( 3 );
var button, menu, options,
optionIndex = 1;
this.element.selectmenu( {
change: function( event, ui ) {
assert.equal( ui.item.index, optionIndex, "ui.item.index contains correct option index" );
assert.equal( ui.item.element[ 0 ], options.eq( optionIndex )[ 0 ],
"ui.item.element contains original option element" );
assert.equal( ui.item.value, options.eq( optionIndex ).text(),
"ui.item.value property updated correctly" );
}
} );
button = this.element.selectmenu( "widget" );
menu = this.element.selectmenu( "menuWidget" );
options = this.element.find( "option" );
button.simulate( "focus" );
setTimeout( function() {
button.trigger( "click" );
menu.find( "li" ).eq( optionIndex ).simulate( "mouseover" ).trigger( "click" );
ready();
} );
} );
QUnit.test( "close", function( assert ) {
assert.expect( 2 );
var shouldFire;
this.element.selectmenu( {
close: function() {
assert.ok( shouldFire, "close event fired on close" );
}
} );
shouldFire = false;
this.element.selectmenu( "open" );
shouldFire = true;
this.element.selectmenu( "close" );
shouldFire = false;
this.element.selectmenu( "open" );
shouldFire = true;
$( "body" ).trigger( "mousedown" );
} );
QUnit.test( "focus", function( assert ) {
var ready = assert.async();
assert.expect( 9 );
var button, menu, links,
that = this,
optionIndex = this.element[ 0 ].selectedIndex + 1,
options = this.element.find( "option" );
this.element.selectmenu( {
focus: function( event, ui ) {
assert.ok( true, "focus event fired on element #" + optionIndex + " mouseover" );
assert.equal( ui.item.index, optionIndex, "ui.item.index contains correct option index" );
assert.equal( ui.item.element[ 0 ], options.eq( optionIndex )[ 0 ],
"ui.item.element contains original option element" );
}
} );
button = this.element.selectmenu( "widget" );
menu = this.element.selectmenu( "menuWidget" );
button.simulate( "focus" );
setTimeout( function() {
button.simulate( "keydown", { keyCode: $.ui.keyCode.DOWN } );
button.trigger( "click" );
links = menu.find( "li.ui-menu-item" );
optionIndex = 0;
links.eq( optionIndex ).simulate( "mouseover" );
optionIndex += 1;
links.eq( optionIndex ).simulate( "mouseover" );
// This tests for unwanted, additional focus event on close
that.element.selectmenu( "close" );
ready();
} );
} );
QUnit.test( "open", function( assert ) {
assert.expect( 1 );
this.element.selectmenu( {
open: function() {
assert.ok( true, "open event fired on open" );
}
} );
this.element.selectmenu( "open" );
} );
QUnit.test( "select", function( assert ) {
var ready = assert.async();
assert.expect( 3 );
this.element.selectmenu( {
select: function( event, ui ) {
assert.ok( true, "select event fired on item select" );
assert.equal( ui.item.index, optionIndex, "ui.item.index contains correct option index" );
assert.equal( ui.item.element[ 0 ], options.eq( optionIndex )[ 0 ],
"ui.item.element contains original option element" );
}
} );
var button = this.element.selectmenu( "widget" ),
menu = this.element.selectmenu( "menuWidget" ),
options = this.element.find( "option" ),
optionIndex = 1;
button.simulate( "focus" );
setTimeout( function() {
button.trigger( "click" );
menu.find( "li" ).eq( optionIndex ).simulate( "mouseover" ).trigger( "click" );
ready();
} );
} );
} );
|