2011-06-13 18:09:44 +00:00
|
|
|
(function( $ ) {
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2011-06-13 18:09:44 +00:00
|
|
|
module( "autocomplete: core" );
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2010-09-27 14:10:00 +00:00
|
|
|
test( "prevent form submit on enter when menu is active", function() {
|
2011-06-13 18:09:44 +00:00
|
|
|
expect( 2 );
|
|
|
|
var event,
|
|
|
|
element = $( "#autocomplete" )
|
|
|
|
.autocomplete({
|
|
|
|
source: [ "java", "javascript" ]
|
|
|
|
})
|
|
|
|
.val( "ja" )
|
|
|
|
.autocomplete( "search" ),
|
|
|
|
menu = element.autocomplete( "widget" );
|
|
|
|
|
2010-09-27 14:10:00 +00:00
|
|
|
event = $.Event( "keydown" );
|
|
|
|
event.keyCode = $.ui.keyCode.DOWN;
|
2011-06-13 18:09:44 +00:00
|
|
|
element.trigger( event );
|
|
|
|
deepEqual( menu.find( ".ui-menu-item:has(.ui-state-focus)" ).length, 1, "menu item is active" );
|
|
|
|
|
2010-09-27 14:10:00 +00:00
|
|
|
event = $.Event( "keydown" );
|
|
|
|
event.keyCode = $.ui.keyCode.ENTER;
|
2011-06-13 18:09:44 +00:00
|
|
|
element.trigger( event );
|
2010-09-27 14:10:00 +00:00
|
|
|
ok( event.isDefaultPrevented(), "default action is prevented" );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "allow form submit on enter when menu is not active", function() {
|
2011-06-13 18:09:44 +00:00
|
|
|
expect( 1 );
|
|
|
|
var event,
|
|
|
|
element = $( "#autocomplete" )
|
|
|
|
.autocomplete({
|
|
|
|
autoFocus: false,
|
|
|
|
source: [ "java", "javascript" ]
|
|
|
|
})
|
|
|
|
.val( "ja" )
|
|
|
|
.autocomplete( "search" );
|
|
|
|
|
2010-09-27 14:10:00 +00:00
|
|
|
event = $.Event( "keydown" );
|
|
|
|
event.keyCode = $.ui.keyCode.ENTER;
|
2011-06-13 18:09:44 +00:00
|
|
|
element.trigger( event );
|
2010-09-27 14:10:00 +00:00
|
|
|
ok( !event.isDefaultPrevented(), "default action is prevented" );
|
|
|
|
});
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2011-11-28 21:33:23 +00:00
|
|
|
(function() {
|
|
|
|
test( "up arrow invokes search - input", function() {
|
|
|
|
arrowsInvokeSearch( "#autocomplete", true, true );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "down arrow invokes search - input", function() {
|
|
|
|
arrowsInvokeSearch( "#autocomplete", false, true );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "up arrow invokes search - textarea", function() {
|
|
|
|
arrowsInvokeSearch( "#autocomplete-textarea", true, false );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "down arrow invokes search - textarea", function() {
|
|
|
|
arrowsInvokeSearch( "#autocomplete-textarea", false, false );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "up arrow invokes search - contenteditable", function() {
|
|
|
|
arrowsInvokeSearch( "#autocomplete-contenteditable", true, false );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "down arrow invokes search - contenteditable", function() {
|
|
|
|
arrowsInvokeSearch( "#autocomplete-contenteditable", false, false );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "up arrow moves focus - input", function() {
|
|
|
|
arrowsMoveFocus( "#autocomplete", true );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "down arrow moves focus - input", function() {
|
|
|
|
arrowsMoveFocus( "#autocomplete", false );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "up arrow moves focus - textarea", function() {
|
|
|
|
arrowsMoveFocus( "#autocomplete-textarea", true );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "down arrow moves focus - textarea", function() {
|
|
|
|
arrowsMoveFocus( "#autocomplete-textarea", false );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "up arrow moves focus - contenteditable", function() {
|
|
|
|
arrowsMoveFocus( "#autocomplete-contenteditable", true );
|
|
|
|
});
|
|
|
|
|
|
|
|
test( "down arrow moves focus - contenteditable", function() {
|
|
|
|
arrowsMoveFocus( "#autocomplete-contenteditable", false );
|
|
|
|
});
|
|
|
|
|
|
|
|
function arrowsInvokeSearch( id, isKeyUp, shouldMove ) {
|
|
|
|
expect( 1 );
|
|
|
|
|
|
|
|
var didMove = false,
|
|
|
|
element = $( id ).autocomplete({
|
|
|
|
source: [ "a" ],
|
|
|
|
delay: 0,
|
|
|
|
minLength: 0
|
|
|
|
});
|
|
|
|
element.data( "autocomplete" )._move = function() {
|
|
|
|
didMove = true;
|
|
|
|
};
|
|
|
|
element.simulate( "keydown", { keyCode: ( isKeyUp ? $.ui.keyCode.UP : $.ui.keyCode.DOWN ) } );
|
|
|
|
equal( didMove, shouldMove, "respond to arrow" );
|
|
|
|
}
|
|
|
|
|
|
|
|
function arrowsMoveFocus( id, isKeyUp ) {
|
|
|
|
expect( 1 );
|
|
|
|
|
|
|
|
var didMove = false,
|
|
|
|
element = $( id ).autocomplete({
|
|
|
|
source: [ "a" ],
|
|
|
|
delay: 0,
|
|
|
|
minLength: 0
|
|
|
|
});
|
|
|
|
element.data( "autocomplete" )._move = function() {
|
|
|
|
ok( true, "repsond to arrow" );
|
|
|
|
};
|
|
|
|
element.autocomplete( "search" );
|
|
|
|
element.simulate( "keydown", { keyCode: ( isKeyUp ? $.ui.keyCode.UP : $.ui.keyCode.DOWN ) } );
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
|
2011-06-13 18:09:44 +00:00
|
|
|
}( jQuery ) );
|