testrunner: Misc
[jquery.git] / test / unit / event.js
1 module("event");
2
3 test("bind(), with data", function() {
4         expect(3);
5         var handler = function(event) {
6                 ok( event.data, "bind() with data, check passed data exists" );
7                 equals( event.data.foo, "bar", "bind() with data, Check value of passed data" );
8         };
9         jQuery("#firstp").bind("click", {foo: "bar"}, handler).click().unbind("click", handler);
10
11         ok( !jQuery.data(jQuery("#firstp")[0], "events"), "Event handler unbound when using data." );
12 });
13
14 test("bind(), with data, trigger with data", function() {
15         expect(4);
16         var handler = function(event, data) {
17                 ok( event.data, "check passed data exists" );
18                 equals( event.data.foo, "bar", "Check value of passed data" );
19                 ok( data, "Check trigger data" );
20                 equals( data.bar, "foo", "Check value of trigger data" );
21         };
22         jQuery("#firstp").bind("click", {foo: "bar"}, handler).trigger("click", [{bar: "foo"}]).unbind("click", handler);
23 });
24
25 test("bind(), multiple events at once", function() {
26         expect(2);
27         var clickCounter = 0,
28                 mouseoverCounter = 0;
29         var handler = function(event) {
30                 if (event.type == "click")
31                         clickCounter += 1;
32                 else if (event.type == "mouseover")
33                         mouseoverCounter += 1;
34         };
35         jQuery("#firstp").bind("click mouseover", handler).trigger("click").trigger("mouseover");
36         equals( clickCounter, 1, "bind() with multiple events at once" );
37         equals( mouseoverCounter, 1, "bind() with multiple events at once" );
38 });
39
40 test("bind(), no data", function() {
41         expect(1);
42         var handler = function(event) {
43                 ok ( !event.data, "Check that no data is added to the event object" );
44         };
45         jQuery("#firstp").bind("click", handler).trigger("click");
46 });
47
48 test("bind(), iframes", function() {
49         // events don't work with iframes, see #939 - this test fails in IE because of contentDocument
50         // var doc = document.getElementById("iframe").contentDocument;
51         // 
52         // doc.body.innerHTML = "<input type='text'/>";
53         //
54         // var input = doc.getElementsByTagName("input")[0];
55         //
56         // jQuery(input).bind("click",function() {
57         //      ok( true, "Binding to element inside iframe" );
58         // }).click();
59 });
60
61 test("bind(), trigger change on select", function() {
62         expect(3);
63         var counter = 0;
64         function selectOnChange(event) {
65                 equals( event.data, counter++, "Event.data is not a global event object" );
66         };
67         jQuery("#form select").each(function(i){
68                 jQuery(this).bind('change', i, selectOnChange);
69         }).trigger('change');
70 });
71
72 test("bind(), namespaced events, cloned events", function() {
73         expect(6);
74
75         jQuery("#firstp").bind("custom.test",function(e){
76                 ok(true, "Custom event triggered");
77         });
78
79         jQuery("#firstp").bind("click",function(e){
80                 ok(true, "Normal click triggered");
81         });
82
83         jQuery("#firstp").bind("click.test",function(e){
84                 ok(true, "Namespaced click triggered");
85         });
86
87         // Trigger both bound fn (2)
88         jQuery("#firstp").trigger("click");
89
90         // Trigger one bound fn (1)
91         jQuery("#firstp").trigger("click.test");
92
93         // Remove only the one fn
94         jQuery("#firstp").unbind("click.test");
95
96         // Trigger the remaining fn (1)
97         jQuery("#firstp").trigger("click");
98
99         // Remove the remaining fn
100         jQuery("#firstp").unbind(".test");
101
102         // Trigger the remaining fn (0)
103         jQuery("#firstp").trigger("custom");
104
105         // using contents will get comments regular, text, and comment nodes
106         jQuery("#nonnodes").contents().bind("tester", function () {
107                 equals(this.nodeType, 1, "Check node,textnode,comment bind just does real nodes" );
108         }).trigger("tester");
109
110         // Make sure events stick with appendTo'd elements (which are cloned) #2027
111         jQuery("<a href='#fail' class='test'>test</a>").click(function(){ return false; }).appendTo("p");
112         ok( jQuery("a.test:first").triggerHandler("click") === false, "Handler is bound to appendTo'd elements" );
113 });
114
115 test("bind(), multi-namespaced events", function() {
116         expect(6);
117         
118         var order = [
119                 "click.test.abc",
120                 "click.test.abc",
121                 "click.test",
122                 "click.test.abc",
123                 "click.test",
124                 "custom.test2"
125         ];
126         
127         function check(name, msg){
128                 same(name, order.shift(), msg);
129         }
130
131         jQuery("#firstp").bind("custom.test",function(e){
132                 check("custom.test", "Custom event triggered");
133         });
134
135         jQuery("#firstp").bind("custom.test2",function(e){
136                 check("custom.test2", "Custom event triggered");
137         });
138
139         jQuery("#firstp").bind("click.test",function(e){
140                 check("click.test", "Normal click triggered");
141         });
142
143         jQuery("#firstp").bind("click.test.abc",function(e){
144                 check("click.test.abc", "Namespaced click triggered");
145         });
146
147         // Trigger both bound fn (1)
148         jQuery("#firstp").trigger("click.test.abc");
149
150         // Trigger one bound fn (1)
151         jQuery("#firstp").trigger("click.abc");
152
153         // Trigger two bound fn (2)
154         jQuery("#firstp").trigger("click.test");
155
156         // Remove only the one fn
157         jQuery("#firstp").unbind("click.abc");
158
159         // Trigger the remaining fn (1)
160         jQuery("#firstp").trigger("click");
161
162         // Remove the remaining fn
163         jQuery("#firstp").unbind(".test");
164
165         // Trigger the remaining fn (1)
166         jQuery("#firstp").trigger("custom");
167 });
168
169 test("unbind(type)", function() {
170         expect( 0 );
171         
172         var $elem = jQuery("#firstp"),
173                 message;
174
175         function error(){
176                 ok( false, message );
177         }
178         
179         message = "unbind passing function";
180         $elem.bind('error', error).unbind('error',error).triggerHandler('error');
181         
182         message = "unbind all from event";
183         $elem.bind('error', error).unbind('error').triggerHandler('error');
184         
185         message = "unbind all";
186         $elem.bind('error', error).unbind().triggerHandler('error');
187         
188         message = "unbind many with function";
189         $elem.bind('error error2',error)
190                  .unbind('error error2', error )
191                  .trigger('error').triggerHandler('error2');
192
193         message = "unbind many"; // #3538
194         $elem.bind('error error2',error)
195                  .unbind('error error2')
196                  .trigger('error').triggerHandler('error2');
197 });
198
199 test("unbind(eventObject)", function() {
200         expect(4);
201         
202         var $elem = jQuery("#firstp"),
203                 num;
204
205         function assert( expected ){
206                 num = 0;
207                 $elem.trigger('foo').triggerHandler('bar');
208                 equals( num, expected, "Check the right handlers are triggered" );
209         }
210         
211         $elem
212                 // This handler shouldn't be unbound
213                 .bind('foo', function(){
214                         num += 1;
215                 })
216                 .bind('foo', function(e){
217                         $elem.unbind( e )
218                         num += 2;
219                 })
220                 // Neither this one
221                 .bind('bar', function(){
222                         num += 4;
223                 });
224                 
225         assert( 7 );
226         assert( 5 );
227         
228         $elem.unbind('bar');
229         assert( 1 );
230         
231         $elem.unbind(); 
232         assert( 0 );
233 });
234
235 test("trigger() shortcuts", function() {
236         expect(6);
237         jQuery('<li><a href="#">Change location</a></li>').prependTo('#firstUL').find('a').bind('click', function() {
238                 var close = jQuery('spanx', this); // same with jQuery(this).find('span');
239                 equals( close.length, 0, "Context element does not exist, length must be zero" );
240                 ok( !close[0], "Context element does not exist, direct access to element must return undefined" );
241                 return false;
242         }).click();
243         
244         jQuery("#check1").click(function() {
245                 ok( true, "click event handler for checkbox gets fired twice, see #815" );
246         }).click();
247         
248         var counter = 0;
249         jQuery('#firstp')[0].onclick = function(event) {
250                 counter++;
251         };
252         jQuery('#firstp').click();
253         equals( counter, 1, "Check that click, triggers onclick event handler also" );
254         
255         var clickCounter = 0;
256         jQuery('#simon1')[0].onclick = function(event) {
257                 clickCounter++;
258         };
259         jQuery('#simon1').click();
260         equals( clickCounter, 1, "Check that click, triggers onclick event handler on an a tag also" );
261         
262         jQuery('<img />').load(function(){
263                 ok( true, "Trigger the load event, using the shortcut .load() (#2819)");
264         }).load();
265 });
266
267 test("trigger() bubbling", function() {
268         expect(14);
269
270         var doc = 0, html = 0, body = 0, main = 0, ap = 0;
271
272         jQuery(document).bind("click", function(e){ if ( e.target !== document) { doc++; } });
273         jQuery("html").bind("click", function(e){ html++; });
274         jQuery("body").bind("click", function(e){ body++; });
275         jQuery("#main").bind("click", function(e){ main++; });
276         jQuery("#ap").bind("click", function(){ ap++; return false; });
277
278         jQuery("html").trigger("click");
279         equals( doc, 1, "HTML bubble" );
280         equals( html, 1, "HTML bubble" );
281
282         jQuery("body").trigger("click");
283         equals( doc, 2, "Body bubble" );
284         equals( html, 2, "Body bubble" );
285         equals( body, 1, "Body bubble" );
286
287         jQuery("#main").trigger("click");
288         equals( doc, 3, "Main bubble" );
289         equals( html, 3, "Main bubble" );
290         equals( body, 2, "Main bubble" );
291         equals( main, 1, "Main bubble" );
292
293         jQuery("#ap").trigger("click");
294         equals( doc, 3, "ap bubble" );
295         equals( html, 3, "ap bubble" );
296         equals( body, 2, "ap bubble" );
297         equals( main, 1, "ap bubble" );
298         equals( ap, 1, "ap bubble" );
299 });
300
301 test("trigger(type, [data], [fn])", function() {
302         expect(11);
303
304         var handler = function(event, a, b, c) {
305                 equals( event.type, "click", "check passed data" );
306                 equals( a, 1, "check passed data" );
307                 equals( b, "2", "check passed data" );
308                 equals( c, "abc", "check passed data" );
309                 return "test";
310         };
311
312         var $elem = jQuery("#firstp");
313
314         // Simulate a "native" click
315         $elem[0].click = function(){
316                 ok( true, "Native call was triggered" );
317         };
318
319         // Triggers handlrs and native
320         // Trigger 5
321         $elem.bind("click", handler).trigger("click", [1, "2", "abc"]);
322
323         // Simulate a "native" click
324         $elem[0].click = function(){
325                 ok( false, "Native call was triggered" );
326         };
327
328         // Trigger only the handlers (no native)
329         // Triggers 5
330         equals( $elem.triggerHandler("click", [1, "2", "abc"]), "test", "Verify handler response" );
331
332         var pass = true;
333         try {
334                 jQuery('#form input:first').hide().trigger('focus');
335         } catch(e) {
336                 pass = false;
337         }
338         ok( pass, "Trigger focus on hidden element" );
339 });
340
341 test("trigger(eventObject, [data], [fn])", function() {
342         expect(25);
343         
344         var $parent = jQuery('<div id="par" />').hide().appendTo('body'),
345                 $child = jQuery('<p id="child">foo</p>').appendTo( $parent );
346         
347         var event = jQuery.Event("noNew");      
348         ok( event != window, "Instantiate jQuery.Event without the 'new' keyword" );
349         equals( event.type, "noNew", "Verify its type" );
350         
351         equals( event.isDefaultPrevented(), false, "Verify isDefaultPrevented" );
352         equals( event.isPropagationStopped(), false, "Verify isPropagationStopped" );
353         equals( event.isImmediatePropagationStopped(), false, "Verify isImmediatePropagationStopped" );
354         
355         event.preventDefault();
356         equals( event.isDefaultPrevented(), true, "Verify isDefaultPrevented" );
357         event.stopPropagation();
358         equals( event.isPropagationStopped(), true, "Verify isPropagationStopped" );
359         
360         event.isPropagationStopped = function(){ return false };
361         event.stopImmediatePropagation();
362         equals( event.isPropagationStopped(), true, "Verify isPropagationStopped" );
363         equals( event.isImmediatePropagationStopped(), true, "Verify isPropagationStopped" );
364         
365         $parent.bind('foo',function(e){
366                 // Tries bubbling
367                 equals( e.type, 'foo', 'Verify event type when passed passing an event object' );
368                 equals( e.target.id, 'child', 'Verify event.target when passed passing an event object' );
369                 equals( e.currentTarget.id, 'par', 'Verify event.target when passed passing an event object' );
370                 equals( e.secret, 'boo!', 'Verify event object\'s custom attribute when passed passing an event object' );
371         });
372         
373         // test with an event object
374         event = new jQuery.Event("foo");
375         event.secret = 'boo!';
376         $child.trigger(event);
377         
378         // test with a literal object
379         $child.trigger({type:'foo', secret:'boo!'});
380         
381         $parent.unbind();
382
383         function error(){
384                 ok( false, "This assertion shouldn't be reached");
385         }
386         
387         $parent.bind('foo', error );
388         
389         $child.bind('foo',function(e, a, b, c ){
390                 equals( arguments.length, 4, "Check arguments length");
391                 equals( a, 1, "Check first custom argument");
392                 equals( b, 2, "Check second custom argument");
393                 equals( c, 3, "Check third custom argument");
394                 
395                 equals( e.isDefaultPrevented(), false, "Verify isDefaultPrevented" );
396                 equals( e.isPropagationStopped(), false, "Verify isPropagationStopped" );
397                 equals( e.isImmediatePropagationStopped(), false, "Verify isImmediatePropagationStopped" );
398                 
399                 // Skips both errors
400                 e.stopImmediatePropagation();
401                 
402                 return "result";
403         });
404         
405         // We should add this back in when we want to test the order
406         // in which event handlers are iterated.
407         //$child.bind('foo', error );
408         
409         event = new jQuery.Event("foo");
410         $child.trigger( event, [1,2,3] ).unbind();
411         equals( event.result, "result", "Check event.result attribute");
412         
413         // Will error if it bubbles
414         $child.triggerHandler('foo');
415         
416         $child.unbind();
417         $parent.unbind().remove();
418 });
419
420 test("jQuery.Event.currentTarget", function(){
421         expect(2);
422         
423         var counter = 0,
424                 $elem = jQuery('<button>a</button>').click(function(e){
425                 equals( e.currentTarget, this, "Check currentTarget on "+(counter++?"native":"fake") +" event" );
426         });
427         
428         // Fake event
429         $elem.trigger('click');
430         // Native event (#4033)
431         triggerEvent( $elem[0], 'click' );
432         
433         // Cleanup
434         $elem.unbind();
435 });
436
437 test("toggle(Function, Function, ...)", function() {
438         expect(11);
439         
440         var count = 0,
441                 fn1 = function(e) { count++; },
442                 fn2 = function(e) { count--; },
443                 preventDefault = function(e) { e.preventDefault() },
444                 link = jQuery('#mark');
445         link.click(preventDefault).click().toggle(fn1, fn2).click().click().click().click().click();
446         equals( count, 1, "Check for toggle(fn, fn)" );
447
448         jQuery("#firstp").toggle(function () {
449                 equals(arguments.length, 4, "toggle correctly passes through additional triggered arguments, see #1701" )
450         }, function() {}).trigger("click", [ 1, 2, 3 ]);
451
452         var first = 0;
453         jQuery("#simon1").one("click", function() {
454                 ok( true, "Execute event only once" );
455                 jQuery(this).toggle(function() {
456                         equals( first++, 0, "toggle(Function,Function) assigned from within one('xxx'), see #1054" );
457                 }, function() {
458                         equals( first, 1, "toggle(Function,Function) assigned from within one('xxx'), see #1054" );
459                 });
460                 return false;
461         }).click().click().click();
462         
463         var turn = 0;
464         var fns = [
465                 function(){
466                         turn = 1;
467                 },
468                 function(){
469                         turn = 2;
470                 },
471                 function(){
472                         turn = 3;
473                 }
474         ];
475         
476         var $div = jQuery("<div>&nbsp;</div>").toggle( fns[0], fns[1], fns[2] );
477         $div.click();
478         equals( turn, 1, "Trying toggle with 3 functions, attempt 1 yields 1");
479         $div.click();
480         equals( turn, 2, "Trying toggle with 3 functions, attempt 2 yields 2");
481         $div.click();
482         equals( turn, 3, "Trying toggle with 3 functions, attempt 3 yields 3");
483         $div.click();
484         equals( turn, 1, "Trying toggle with 3 functions, attempt 4 yields 1");
485         $div.click();
486         equals( turn, 2, "Trying toggle with 3 functions, attempt 5 yields 2");
487         
488         $div.unbind('click',fns[0]);
489         var data = jQuery.data( $div[0], 'events' );
490         ok( !data, "Unbinding one function from toggle unbinds them all");
491 });
492
493 test(".live()/.die()", function() {
494         expect(46);
495
496         var submit = 0, div = 0, livea = 0, liveb = 0;
497
498         jQuery("div").live("submit", function(){ submit++; return false; });
499         jQuery("div").live("click", function(){ div++; });
500         jQuery("div#nothiddendiv").live("click", function(){ livea++; });
501         jQuery("div#nothiddendivchild").live("click", function(){ liveb++; });
502
503         // Nothing should trigger on the body
504         jQuery("body").trigger("click");
505         equals( submit, 0, "Click on body" );
506         equals( div, 0, "Click on body" );
507         equals( livea, 0, "Click on body" );
508         equals( liveb, 0, "Click on body" );
509
510         // This should trigger two events
511         jQuery("div#nothiddendiv").trigger("click");
512         equals( submit, 0, "Click on div" );
513         equals( div, 1, "Click on div" );
514         equals( livea, 1, "Click on div" );
515         equals( liveb, 0, "Click on div" );
516
517         // This should trigger three events (w/ bubbling)
518         jQuery("div#nothiddendivchild").trigger("click");
519         equals( submit, 0, "Click on inner div" );
520         equals( div, 2, "Click on inner div" );
521         equals( livea, 2, "Click on inner div" );
522         equals( liveb, 1, "Click on inner div" );
523
524         // This should trigger one submit
525         jQuery("div#nothiddendivchild").trigger("submit");
526         equals( submit, 1, "Submit on div" );
527         equals( div, 2, "Submit on div" );
528         equals( livea, 2, "Submit on div" );
529         equals( liveb, 1, "Submit on div" );
530
531         // Make sure no other events were removed in the process
532         jQuery("div#nothiddendivchild").trigger("click");
533         equals( submit, 1, "die Click on inner div" );
534         equals( div, 3, "die Click on inner div" );
535         equals( livea, 3, "die Click on inner div" );
536         equals( liveb, 2, "die Click on inner div" );
537
538         // Now make sure that the removal works
539         jQuery("div#nothiddendivchild").die("click");
540         jQuery("div#nothiddendivchild").trigger("click");
541         equals( submit, 1, "die Click on inner div" );
542         equals( div, 4, "die Click on inner div" );
543         equals( livea, 4, "die Click on inner div" );
544         equals( liveb, 2, "die Click on inner div" );
545
546         // Make sure that the click wasn't removed too early
547         jQuery("div#nothiddendiv").trigger("click");
548         equals( submit, 1, "die Click on inner div" );
549         equals( div, 5, "die Click on inner div" );
550         equals( livea, 5, "die Click on inner div" );
551         equals( liveb, 2, "die Click on inner div" );
552
553         // Make sure that stopPropgation doesn't stop live events
554         jQuery("div#nothiddendivchild").live("click", function(e){ liveb++; e.stopPropagation(); });
555         jQuery("div#nothiddendivchild").trigger("click");
556         equals( submit, 1, "stopPropagation Click on inner div" );
557         equals( div, 6, "stopPropagation Click on inner div" );
558         equals( livea, 6, "stopPropagation Click on inner div" );
559         equals( liveb, 3, "stopPropagation Click on inner div" );
560
561         jQuery("div#nothiddendivchild").die("click");
562         jQuery("div#nothiddendiv").die("click");
563         jQuery("div").die("click");
564         jQuery("div").die("submit");
565
566         // Verify that return false prevents default action
567         jQuery("#anchor2").live("click", function(){ return false; });
568         var hash = window.location.hash;
569         jQuery("#anchor2").trigger("click");
570         equals( window.location.hash, hash, "return false worked" );
571         jQuery("#anchor2").die("click");
572
573         // Verify that .preventDefault() prevents default action
574         jQuery("#anchor2").live("click", function(e){ e.preventDefault(); });
575         var hash = window.location.hash;
576         jQuery("#anchor2").trigger("click");
577         equals( window.location.hash, hash, "e.preventDefault() worked" );
578         jQuery("#anchor2").die("click");
579
580         // Test binding the same handler to multiple points
581         var called = 0;
582         function callback(){ called++; return false; }
583
584         jQuery("#nothiddendiv").live("click", callback);
585         jQuery("#anchor2").live("click", callback);
586
587         jQuery("#nothiddendiv").trigger("click");
588         equals( called, 1, "Verify that only one click occurred." );
589
590         jQuery("#anchor2").trigger("click");
591         equals( called, 2, "Verify that only one click occurred." );
592
593         // Make sure that only one callback is removed
594         jQuery("#anchor2").die("click", callback);
595
596         jQuery("#nothiddendiv").trigger("click");
597         equals( called, 3, "Verify that only one click occurred." );
598
599         jQuery("#anchor2").trigger("click");
600         equals( called, 3, "Verify that no click occurred." );
601
602         // Make sure that it still works if the selector is the same,
603         // but the event type is different
604         jQuery("#nothiddendiv").live("foo", callback);
605
606         // Cleanup
607         jQuery("#nothiddendiv").die("click", callback);
608
609         jQuery("#nothiddendiv").trigger("click");
610         equals( called, 3, "Verify that no click occurred." );
611
612         jQuery("#nothiddendiv").trigger("foo");
613         equals( called, 4, "Verify that one foo occurred." );
614
615         // Cleanup
616         jQuery("#nothiddendiv").die("foo", callback);
617         
618         // Make sure we don't loose the target by DOM modifications
619         // after the bubble already reached the liveHandler
620         var livec = 0, elemDiv = jQuery("#nothiddendivchild").html('<span></span>').get(0);
621         
622         jQuery("#nothiddendivchild").live("click", function(e){ jQuery("#nothiddendivchild").html(''); });
623         jQuery("#nothiddendivchild").live("click", function(e){ if(e.target) {livec++;} });
624         
625         jQuery("#nothiddendiv span").click();
626         equals( jQuery("#nothiddendiv span").length, 0, "Verify that first handler occurred and modified the DOM." );
627         equals( livec, 1, "Verify that second handler occurred even with nuked target." );
628         
629         // Cleanup
630         jQuery("#nothiddendivchild").die("click");
631
632         // Verify that .live() ocurs and cancel buble in the same order as
633         // we would expect .bind() and .click() without delegation
634         var lived = 0, livee = 0;
635         
636         // bind one pair in one order
637         jQuery('span#liveSpan1 a').live('click', function(){ lived++; return false; });
638         jQuery('span#liveSpan1').live('click', function(){      livee++; });
639
640         jQuery('span#liveSpan1 a').click();
641         equals( lived, 1, "Verify that only one first handler occurred." );
642         equals( livee, 0, "Verify that second handler don't." );
643
644         // and one pair in inverse
645         jQuery('#liveHandlerOrder span#liveSpan2').live('click', function(){    livee++; });
646         jQuery('#liveHandlerOrder span#liveSpan2 a').live('click', function(){ lived++; return false; });
647
648         jQuery('span#liveSpan2 a').click();
649         equals( lived, 2, "Verify that only one first handler occurred." );
650         equals( livee, 0, "Verify that second handler don't." );
651         
652         // Cleanup
653         jQuery("span#liveSpan1 a, span#liveSpan1, span#liveSpan2 a, span#liveSpan2").die("click");
654 });
655
656 /*
657 test("jQuery(function($) {})", function() {
658         stop();
659         jQuery(function($) {
660                 equals(jQuery, $, "ready doesn't provide an event object, instead it provides a reference to the jQuery function, see http://docs.jquery.com/Events/ready#fn");
661                 start();
662         });
663 });
664
665 test("event properties", function() {
666         stop();
667         jQuery("#simon1").click(function(event) {
668                 ok( event.timeStamp, "assert event.timeStamp is present" );
669                 start();
670         }).click();
671 });
672 */