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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
|
QUnit.module( "data", { teardown: moduleTeardown } );
QUnit.test( "expando", function( assert ) {
assert.expect( 1 );
assert.equal(
jQuery.expando !== undefined, true, "jQuery is exposing the expando"
);
} );
function dataTests( elem, assert ) {
var dataObj, internalDataObj;
assert.equal(
jQuery.data( elem, "foo" ), undefined, "No data exists initially"
);
assert.strictEqual(
jQuery.hasData( elem ), false, "jQuery.hasData agrees no data exists initially"
);
dataObj = jQuery.data( elem );
assert.equal(
typeof dataObj, "object", "Calling data with no args gives us a data object reference"
);
assert.strictEqual(
jQuery.data( elem ), dataObj,
"Calling jQuery.data returns the same data object when called multiple times"
);
assert.strictEqual(
jQuery.hasData( elem ), false,
"jQuery.hasData agrees no data exists even when an empty data obj exists"
);
dataObj[ "foo" ] = "bar";
assert.equal(
jQuery.data( elem, "foo" ),
"bar",
"Data is readable by jQuery.data when set directly on a returned data object"
);
assert.strictEqual(
jQuery.hasData( elem ), true, "jQuery.hasData agrees data exists when data exists"
);
jQuery.data( elem, "foo", "baz" );
assert.equal(
jQuery.data( elem, "foo" ), "baz", "Data can be changed by jQuery.data"
);
assert.equal(
dataObj[ "foo" ],
"baz",
"Changes made through jQuery.data propagate to referenced data object"
);
jQuery.data( elem, "foo", undefined );
assert.equal(
jQuery.data( elem, "foo" ), "baz", "Data is not unset by passing undefined to jQuery.data"
);
jQuery.data( elem, "foo", null );
assert.strictEqual(
jQuery.data( elem, "foo" ), null, "Setting null using jQuery.data works OK"
);
jQuery.data( elem, "foo", "foo1" );
jQuery.data( elem, { "bar": "baz", "boom": "bloz" } );
assert.strictEqual(
jQuery.data( elem, "foo" ),
"foo1",
"Passing an object extends the data object instead of replacing it"
);
assert.equal(
jQuery.data( elem, "boom" ), "bloz", "Extending the data object works"
);
jQuery._data( elem, "foo", "foo2", true );
assert.equal(
jQuery._data( elem, "foo" ), "foo2", "Setting internal data works"
);
assert.equal(
jQuery.data( elem, "foo" ), "foo1", "Setting internal data does not override user data"
);
internalDataObj = jQuery._data( elem );
assert.ok(
internalDataObj, "Internal data object exists"
);
assert.notStrictEqual(
dataObj, internalDataObj, "Internal data object is not the same as user data object"
);
assert.strictEqual(
elem.boom, undefined, "Data is never stored directly on the object"
);
jQuery.removeData( elem, "foo" );
assert.strictEqual(
jQuery.data( elem, "foo" ), undefined, "jQuery.removeData removes single properties"
);
jQuery.removeData( elem );
assert.strictEqual(
jQuery._data( elem ),
internalDataObj,
"jQuery.removeData does not remove internal data if it exists"
);
jQuery.data( elem, "foo", "foo1" );
jQuery._data( elem, "foo", "foo2" );
assert.equal(
jQuery.data( elem, "foo" ), "foo1", "(sanity check) Ensure data is set in user data object"
);
assert.equal(
jQuery._data( elem, "foo" ),
"foo2",
"(sanity check) Ensure data is set in internal data object"
);
assert.strictEqual(
jQuery._data( elem, jQuery.expando ),
undefined,
"Removing the last item in internal data destroys the internal data object"
);
jQuery._data( elem, "foo", "foo2" );
assert.equal(
jQuery._data( elem, "foo" ),
"foo2",
"(sanity check) Ensure data is set in internal data object"
);
jQuery.removeData( elem, "foo" );
assert.equal(
jQuery._data( elem, "foo" ),
"foo2",
"(sanity check) jQuery.removeData for user data does not remove internal data"
);
}
QUnit.test( "jQuery.data(div)", function( assert ) {
assert.expect( 25 );
var div = document.createElement( "div" );
dataTests( div, assert );
// We stored one key in the private data
// assert that nothing else was put in there, and that that
// one stayed there.
QUnit.expectJqData( this, div, "foo" );
} );
QUnit.test( "jQuery.data({})", function( assert ) {
assert.expect( 25 );
dataTests( {}, assert );
} );
QUnit.test( "jQuery.data(window)", function( assert ) {
assert.expect( 25 );
// Remove bound handlers from window object to stop
// potential false positives caused by fix for #5280 in
// transports/xhr.js
jQuery( window ).off( "unload" );
dataTests( window, assert );
} );
QUnit.test( "jQuery.data(document)", function( assert ) {
assert.expect( 25 );
dataTests( document, assert );
QUnit.expectJqData( this, document, "foo" );
} );
QUnit.test( "Expando cleanup", function( assert ) {
assert.expect( 4 );
var div = document.createElement( "div" );
function assertExpandoAbsent( message ) {
assert.strictEqual(
div[ jQuery.expando ], undefined, message
);
}
assertExpandoAbsent( "There is no expando on new elements" );
jQuery.data( div, "foo", 100 );
jQuery.data( div, "bar", 200 );
assert.ok(
jQuery.expando in div, "There is an expando on the element after using $.data()"
);
jQuery.removeData( div, "foo" );
assert.ok(
jQuery.expando in div, "There is still an expando on the element after removing (some) of the data"
);
jQuery.removeData( div, "bar" );
assertExpandoAbsent( "Removing the last item in the data store deletes the expando" );
// Clean up unattached element
jQuery( div ).remove();
} );
QUnit.test( "Data is not being set on comment and text nodes", function( assert ) {
assert.expect( 2 );
assert.ok(
!jQuery.hasData( jQuery( "<!-- comment -->" ).data( "foo", 0 ) )
);
assert.ok(
!jQuery.hasData( jQuery( "<span>text</span>" ).contents().data( "foo", 0 ) )
);
} );
QUnit.test( "jQuery.acceptData", function( assert ) {
assert.expect( 10 );
var flash, pdf;
assert.ok(
jQuery.acceptData( document ), "document"
);
assert.ok(
jQuery.acceptData( document.documentElement ), "documentElement"
);
assert.ok(
jQuery.acceptData( {} ), "object"
);
assert.ok(
!jQuery.acceptData( document.createElement( "embed" ) ), "embed"
);
flash = document.createElement( "object" );
flash.setAttribute( "classid", "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" );
assert.ok(
jQuery.acceptData( flash ), "flash"
);
pdf = document.createElement( "object" );
pdf.setAttribute( "classid", "clsid:CA8A9780-280D-11CF-A24D-444553540000" );
assert.ok(
!jQuery.acceptData( pdf ), "pdf"
);
assert.ok(
!jQuery.acceptData( document.createComment( "" ) ), "comment"
);
assert.ok(
!jQuery.acceptData( document.createTextNode( "" ) ), "text"
);
assert.ok(
!jQuery.acceptData( document.createDocumentFragment() ), "documentFragment"
);
assert.ok(
jQuery.acceptData(
jQuery( "#form" ).append( "<input id='nodeType'/><input id='nodeName'/>" )[ 0 ]
),
"form with aliased DOM properties"
);
} );
// attempting to access the data of an undefined jQuery element should be undefined
QUnit.test( "jQuery().data() === undefined (#14101)", function( assert ) {
assert.expect( 2 );
assert.strictEqual(
jQuery().data(), undefined
);
assert.strictEqual(
jQuery().data( "key" ), undefined
);
} );
QUnit.test( ".data()", function( assert ) {
assert.expect( 5 );
var div, dataObj, nodiv, obj;
div = jQuery( "#foo" );
assert.strictEqual(
div.data( "foo" ), undefined, "Make sure that missing result is undefined"
);
div.data( "test", "success" );
dataObj = div.data();
assert.deepEqual(
dataObj, { test: "success" }, "data() returns entire data object with expected properties"
);
assert.strictEqual(
div.data( "foo" ), undefined, "Make sure that missing result is still undefined"
);
nodiv = jQuery( "#unfound" );
assert.equal(
nodiv.data(), null, "data() on empty set returns null"
);
obj = { foo: "bar" };
jQuery( obj ).data( "foo", "baz" );
dataObj = jQuery.extend( true, {}, jQuery( obj ).data() );
assert.deepEqual(
dataObj, { "foo": "baz" }, "Retrieve data object from a wrapped JS object (#7524)"
);
} );
function testDataTypes( $obj, assert ) {
jQuery.each( {
"null": null,
"true": true,
"false": false,
"zero": 0,
"one": 1,
"empty string": "",
"empty array": [],
"array": [ 1 ],
"empty object": {},
"object": { foo: "bar" },
"date": new Date(),
"regex": /test/,
"function": function() {}
}, function( type, value ) {
assert.strictEqual(
$obj.data( "test", value ).data( "test" ), value, "Data set to " + type
);
} );
}
QUnit.test( "jQuery(Element).data(String, Object).data(String)", function( assert ) {
assert.expect( 18 );
var parent = jQuery( "<div><div></div></div>" ),
div = parent.children();
assert.strictEqual(
div.data( "test" ), undefined, "No data exists initially"
);
assert.strictEqual(
div.data( "test", "success" ).data( "test" ), "success", "Data added"
);
assert.strictEqual(
div.data( "test", "overwritten" ).data( "test" ), "overwritten", "Data overwritten"
);
assert.strictEqual(
div.data( "test", undefined ).data( "test" ),
"overwritten",
".data(key,undefined) does nothing but is chainable (#5571)"
);
assert.strictEqual(
div.data( "notexist" ), undefined, "No data exists for unset key"
);
testDataTypes( div, assert );
parent.remove();
} );
QUnit.test( "jQuery(plain Object).data(String, Object).data(String)", function( assert ) {
assert.expect( 16 );
// #3748
var $obj = jQuery( { exists: true } );
assert.strictEqual(
$obj.data( "nothing" ), undefined, "Non-existent data returns undefined"
);
assert.strictEqual(
$obj.data( "exists" ), undefined, "Object properties are not returned as data"
);
testDataTypes( $obj, assert );
// Clean up
$obj.removeData();
assert.deepEqual(
$obj[ 0 ], { exists: true }, "removeData does not clear the object"
);
} );
QUnit.test( "data-* attributes", function( assert ) {
assert.expect( 46 );
var prop, i, l, metadata, elem,
obj, obj2, check, num, num2,
parseJSON = jQuery.parseJSON,
div = jQuery( "<div>" ),
child = jQuery(
"<div data-myobj='old data' data-ignored=\"DOM\"" +
" data-other='test' data-foo-42='boosh'></div>"
),
dummy = jQuery(
"<div data-myobj='old data' data-ignored=\"DOM\"" +
" data-other='test' data-foo-42='boosh'></div>"
);
assert.equal(
div.data( "attr" ), undefined, "Check for non-existing data-attr attribute"
);
div.attr( "data-attr", "exists" );
assert.equal(
div.data( "attr" ), "exists", "Check for existing data-attr attribute"
);
div.attr( "data-attr", "exists2" );
assert.equal(
div.data( "attr" ), "exists", "Check that updates to data- don't update .data()"
);
div.data( "attr", "internal" ).attr( "data-attr", "external" );
assert.equal(
div.data( "attr" ),
"internal",
"Check for .data('attr') precedence (internal > external data-* attribute)"
);
div.remove();
child.appendTo( "#qunit-fixture" );
assert.equal(
child.data( "myobj" ), "old data", "Value accessed from data-* attribute"
);
assert.equal(
child.data( "foo-42" ), "boosh", "camelCasing does not affect numbers (#1751)"
);
child.data( "myobj", "replaced" );
assert.equal(
child.data( "myobj" ), "replaced", "Original data overwritten"
);
child.data( "ignored", "cache" );
assert.equal(
child.data( "ignored" ), "cache", "Cached data used before DOM data-* fallback"
);
obj = child.data();
obj2 = dummy.data();
check = [ "myobj", "ignored", "other", "foo-42" ];
num = 0;
num2 = 0;
dummy.remove();
for ( i = 0, l = check.length; i < l; i++ ) {
assert.ok(
obj[ check[ i ] ], "Make sure data- property exists when calling data-."
);
assert.ok(
obj2[ check[ i ] ], "Make sure data- property exists when calling data-."
);
}
for ( prop in obj ) {
num++;
}
assert.equal(
num, check.length, "Make sure that the right number of properties came through."
);
for ( prop in obj2 ) {
num2++;
}
assert.equal(
num2, check.length, "Make sure that the right number of properties came through."
);
child.attr( "data-other", "newvalue" );
assert.equal(
child.data( "other" ), "test", "Make sure value was pulled in properly from a .data()."
);
// attribute parsing
i = 0;
jQuery.parseJSON = function() {
i++;
return parseJSON.apply( this, arguments );
};
child
.attr( "data-true", "true" )
.attr( "data-false", "false" )
.attr( "data-five", "5" )
.attr( "data-point", "5.5" )
.attr( "data-pointe", "5.5E3" )
.attr( "data-grande", "5.574E9" )
.attr( "data-hexadecimal", "0x42" )
.attr( "data-pointbad", "5..5" )
.attr( "data-pointbad2", "-." )
.attr( "data-bigassnum", "123456789123456789123456789" )
.attr( "data-badjson", "{123}" )
.attr( "data-badjson2", "[abc]" )
.attr( "data-notjson", " {}" )
.attr( "data-notjson2", "[] " )
.attr( "data-empty", "" )
.attr( "data-space", " " )
.attr( "data-null", "null" )
.attr( "data-string", "test" );
assert.strictEqual(
child.data( "true" ), true, "Primitive true read from attribute"
);
assert.strictEqual(
child.data( "false" ), false, "Primitive false read from attribute"
);
assert.strictEqual(
child.data( "five" ), 5, "Integer read from attribute"
);
assert.strictEqual(
child.data( "point" ), 5.5, "Floating-point number read from attribute"
);
assert.strictEqual(
child.data( "pointe" ), "5.5E3",
"Exponential-notation number read from attribute as string" );
assert.strictEqual(
child.data( "grande" ), "5.574E9",
"Big exponential-notation number read from attribute as string" );
assert.strictEqual(
child.data( "hexadecimal" ), "0x42",
"Hexadecimal number read from attribute as string" );
assert.strictEqual(
child.data( "pointbad" ), "5..5",
"Extra-point non-number read from attribute as string" );
assert.strictEqual(
child.data( "pointbad2" ), "-.",
"No-digit non-number read from attribute as string" );
assert.strictEqual(
child.data( "bigassnum" ), "123456789123456789123456789",
"Bad bigass number read from attribute as string" );
assert.strictEqual(
child.data( "badjson" ), "{123}", "Bad JSON object read from attribute as string"
);
assert.strictEqual(
child.data( "badjson2" ), "[abc]", "Bad JSON array read from attribute as string"
);
assert.strictEqual(
child.data( "notjson" ), " {}",
"JSON object with leading non-JSON read from attribute as string" );
assert.strictEqual(
child.data("notjson2"), "[] ",
"JSON array with trailing non-JSON read from attribute as string");
assert.strictEqual(
child.data( "empty" ), "", "Empty string read from attribute"
);
assert.strictEqual(
child.data( "space" ), " ", "Whitespace string read from attribute"
);
assert.strictEqual(
child.data( "null" ), null, "Primitive null read from attribute"
);
assert.strictEqual(
child.data( "string" ), "test", "Typical string read from attribute"
);
assert.equal(
i, 2, "Correct number of JSON parse attempts when reading from attributes"
);
jQuery.parseJSON = parseJSON;
child.remove();
// tests from metadata plugin
function testData( index, elem ) {
switch ( index ) {
case 0:
assert.equal(
jQuery( elem ).data( "foo" ), "bar", "Check foo property"
);
assert.equal(
jQuery( elem ).data( "bar" ), "baz", "Check baz property"
);
break;
case 1:
assert.equal(
jQuery( elem ).data( "test" ), "bar", "Check test property"
);
assert.equal(
jQuery( elem ).data( "bar" ), "baz", "Check bar property"
);
break;
case 2:
assert.equal(
jQuery( elem ).data( "zoooo" ), "bar", "Check zoooo property"
);
assert.deepEqual(
jQuery( elem ).data( "bar" ), { "test":"baz" }, "Check bar property"
);
break;
case 3:
assert.equal(
jQuery( elem ).data( "number" ), true, "Check number property"
);
assert.deepEqual(
jQuery( elem ).data( "stuff" ), [ 2,8 ], "Check stuff property"
);
break;
default:
assert.ok(
false, [ "Assertion failed on index ", index, ", with data" ].join( "" )
);
}
}
metadata = "<ol><li class='test test2' data-foo='bar' data-bar='baz' data-arr='[1,2]'>Some stuff</li><li class='test test2' data-test='bar' data-bar='baz'>Some stuff</li><li class='test test2' data-zoooo='bar' data-bar='{\"test\":\"baz\"}'>Some stuff</li><li class='test test2' data-number=true data-stuff='[2,8]'>Some stuff</li></ol>";
elem = jQuery( metadata ).appendTo( "#qunit-fixture" );
elem.find( "li" ).each( testData );
elem.remove();
} );
QUnit.test( ".data(Object)", function( assert ) {
assert.expect( 4 );
var obj, jqobj,
div = jQuery( "<div/>" );
div.data( { "test": "in", "test2": "in2" } );
assert.equal(
div.data( "test" ), "in", "Verify setting an object in data"
);
assert.equal(
div.data( "test2" ), "in2", "Verify setting an object in data"
);
obj = { test:"unset" };
jqobj = jQuery( obj );
jqobj.data( "test", "unset" );
jqobj.data( { "test": "in", "test2": "in2" } );
assert.equal(
jQuery.data( obj )[ "test" ], "in", "Verify setting an object on an object extends the data object"
);
assert.equal(
obj[ "test2" ], undefined, "Verify setting an object on an object does not extend the object"
);
// manually clean up detached elements
div.remove();
} );
QUnit.test( "jQuery.removeData", function( assert ) {
assert.expect( 10 );
var obj,
div = jQuery( "#foo" )[ 0 ];
jQuery.data( div, "test", "testing" );
jQuery.removeData( div, "test" );
assert.equal(
jQuery.data( div, "test" ), undefined, "Check removal of data"
);
jQuery.data( div, "test2", "testing" );
jQuery.removeData( div );
assert.ok(
!jQuery.data( div, "test2" ), "Make sure that the data property no longer exists."
);
assert.ok(
!div[ jQuery.expando ], "Make sure the expando no longer exists, as well."
);
jQuery.data( div, {
test3: "testing",
test4: "testing"
} );
jQuery.removeData( div, "test3 test4" );
assert.ok(
!jQuery.data( div, "test3" ) || jQuery.data( div, "test4" ), "Multiple delete with spaces."
);
jQuery.data( div, {
test3: "testing",
test4: "testing"
} );
jQuery.removeData( div, [ "test3", "test4" ] );
assert.ok(
!jQuery.data( div, "test3" ) || jQuery.data( div, "test4" ), "Multiple delete by array."
);
jQuery.data( div, {
"test3 test4": "testing",
"test3": "testing"
} );
jQuery.removeData( div, "test3 test4" );
assert.ok(
!jQuery.data( div, "test3 test4" ), "Multiple delete with spaces deleted key with exact name"
);
assert.ok(
jQuery.data( div, "test3" ), "Left the partial matched key alone"
);
obj = {};
jQuery.data( obj, "test", "testing" );
assert.equal(
jQuery( obj ).data( "test" ), "testing", "verify data on plain object"
);
jQuery.removeData( obj, "test" );
assert.equal(
jQuery.data( obj, "test" ), undefined, "Check removal of data on plain object"
);
jQuery.data( window, "BAD", true );
jQuery.removeData( window, "BAD" );
assert.ok(
!jQuery.data( window, "BAD" ), "Make sure that the value was not still set."
);
} );
QUnit.test( ".removeData()", function( assert ) {
assert.expect( 6 );
var div = jQuery( "#foo" );
div.data( "test", "testing" );
div.removeData( "test" );
assert.equal(
div.data( "test" ), undefined, "Check removal of data"
);
div.data( "test", "testing" );
div.data( "test.foo", "testing2" );
div.removeData( "test.bar" );
assert.equal(
div.data( "test.foo" ), "testing2", "Make sure data is intact"
);
assert.equal(
div.data( "test" ), "testing", "Make sure data is intact"
);
div.removeData( "test" );
assert.equal(
div.data( "test.foo" ), "testing2", "Make sure data is intact"
);
assert.equal(
div.data( "test" ), undefined, "Make sure data is intact"
);
div.removeData( "test.foo" );
assert.equal(
div.data( "test.foo" ), undefined, "Make sure data is intact"
);
} );
if ( window.JSON && window.JSON.stringify ) {
QUnit.test( "JSON serialization (#8108)", function( assert ) {
assert.expect( 1 );
var obj = { "foo": "bar" };
jQuery.data( obj, "hidden", true );
assert.equal(
JSON.stringify( obj ), "{\"foo\":\"bar\"}", "Expando is hidden from JSON.stringify"
);
} );
}
QUnit.test( "jQuery.data should follow html5 specification regarding camel casing", function( assert ) {
assert.expect( 10 );
var div = jQuery( "<div id='myObject' data-w-t-f='ftw' data-big-a-little-a='bouncing-b' data-foo='a' data-foo-bar='b' data-foo-bar-baz='c'></div>" )
.prependTo( "body" );
assert.equal(
div.data()[ "wTF" ], "ftw", "Verify single letter data-* key"
);
assert.equal(
div.data()[ "bigALittleA" ], "bouncing-b", "Verify single letter mixed data-* key"
);
assert.equal(
div.data()[ "foo" ], "a", "Verify single word data-* key"
);
assert.equal(
div.data()[ "fooBar" ], "b", "Verify multiple word data-* key"
);
assert.equal(
div.data()[ "fooBarBaz" ], "c", "Verify multiple word data-* key"
);
assert.equal(
div.data( "foo" ), "a", "Verify single word data-* key"
);
assert.equal(
div.data( "fooBar" ), "b", "Verify multiple word data-* key"
);
assert.equal(
div.data( "fooBarBaz" ), "c", "Verify multiple word data-* key"
);
div.data( "foo-bar", "d" );
assert.equal(
div.data( "fooBar" ), "d", "Verify updated data-* key"
);
assert.equal(
div.data( "foo-bar" ), "d", "Verify updated data-* key"
);
div.remove();
} );
QUnit.test( "jQuery.data should not miss data with preset hyphenated property names", function( assert ) {
assert.expect( 2 );
var div = jQuery( "<div/>", { id: "hyphened" } ).appendTo( "#qunit-fixture" ),
test = {
"camelBar": "camelBar",
"hyphen-foo": "hyphen-foo"
};
div.data( test );
jQuery.each( test, function( i, k ) {
assert.equal(
div.data( k ), k, "data with property '" + k + "' was correctly found"
);
} );
} );
QUnit.test( ".data should not miss attr() set data-* with hyphenated property names", function( assert ) {
assert.expect( 2 );
var a, b;
a = jQuery( "<div/>" ).appendTo( "#qunit-fixture" );
a.attr( "data-long-param", "test" );
a.data( "long-param", { a: 2 } );
assert.deepEqual(
a.data( "long-param" ), { a: 2 }, "data with property long-param was found, 1"
);
b = jQuery( "<div/>" ).appendTo( "#qunit-fixture" );
b.attr( "data-long-param", "test" );
b.data( "long-param" );
b.data( "long-param", { a: 2 } );
assert.deepEqual(
b.data( "long-param" ), { a: 2 }, "data with property long-param was found, 2"
);
} );
QUnit.test( ".data always sets data with the camelCased key (gh-2257)", function( assert ) {
assert.expect( 36 );
var div = jQuery( "<div>" ).appendTo( "#qunit-fixture" ),
datas = {
"non-empty": "a string",
"empty-string": "",
"one-value": 1,
"zero-value": 0,
"an-array": [],
"an-object": {},
"bool-true": true,
"bool-false": false,
// JSHint enforces double quotes,
// but JSON strings need double quotes to parse
// so we need escaped double quotes here
"some-json": "{ \"foo\": \"bar\" }"
};
jQuery.each( datas, function( key, val ) {
div.data( key, val );
var allData = div.data();
assert.equal(
allData[ key ], undefined, ".data(key, val) does not store with hyphenated keys"
);
assert.equal(
allData[ jQuery.camelCase( key ) ], val, ".data(key, val) stores the camelCased key"
);
} );
div.removeData();
div.data( datas );
jQuery.each( datas, function( key, val ) {
var allData = div.data();
assert.equal(
allData[ key ], undefined, ".data(object) does not store with hyphenated keys"
);
assert.equal(
allData[ jQuery.camelCase( key ) ], val, ".data(object) stores the camelCased key"
);
} );
} );
QUnit.test(
".data should not strip more than one hyphen when camelCasing (gh-2070)",
function( assert ) {
assert.expect( 3 );
var div = jQuery( "<div data-nested-single='single' data-nested--double='double' data-nested---triple='triple'></div>" ).appendTo( "#qunit-fixture" ),
allData = div.data();
assert.equal(
allData.nestedSingle, "single", "Key is correctly camelCased"
);
assert.equal(
allData[ "nested-Double" ], "double", "Key with double hyphens is correctly camelCased"
);
assert.equal(
allData[ "nested--Triple" ], "triple", "Key with triple hyphens is correctly camelCased"
);
}
);
QUnit.test(
".data supports interoperable hyphenated/camelCase get/set of" +
" properties with arbitrary non-null|NaN|undefined values",
function( assert ) {
var div = jQuery( "<div/>", { id: "hyphened" } ).appendTo( "#qunit-fixture" ),
datas = {
"non-empty": "a string",
"empty-string": "",
"one-value": 1,
"zero-value": 0,
"an-array": [],
"an-object": {},
"bool-true": true,
"bool-false": false,
// JSHint enforces double quotes,
// but JSON strings need double quotes to parse
// so we need escaped double quotes here
"some-json": "{ \"foo\": \"bar\" }",
"num-1-middle": true,
"num-end-2": true,
"2-num-start": true
};
assert.expect( 24 );
jQuery.each( datas, function( key, val ) {
div.data( key, val );
assert.deepEqual(
div.data( key ), val, "get: " + key
);
assert.deepEqual(
div.data( jQuery.camelCase( key ) ), val, "get: " + jQuery.camelCase( key )
);
} );
}
);
QUnit.test(
"jQuery.data supports interoperable removal of hyphenated/camelCase properties",
function( assert ) {
var div = jQuery( "<div/>", { id: "hyphened" } ).appendTo( "#qunit-fixture" ),
datas = {
"non-empty": "a string",
"empty-string": "",
"one-value": 1,
"zero-value": 0,
"an-array": [],
"an-object": {},
"bool-true": true,
"bool-false": false,
// JSHint enforces double quotes,
// but JSON strings need double quotes to parse
// so we need escaped double quotes here
"some-json": "{ \"foo\": \"bar\" }"
};
assert.expect( 27 );
jQuery.each( datas, function( key, val ) {
div.data( key, val );
assert.deepEqual(
div.data( key ), val, "get: " + key
);
assert.deepEqual(
div.data( jQuery.camelCase( key ) ), val, "get: " + jQuery.camelCase( key )
);
div.removeData( key );
assert.equal(
div.data( key ), undefined, "get: " + key
);
} );
}
);
QUnit.test(
".data supports interoperable removal of properties SET TWICE #13850",
function( assert ) {
var div = jQuery( "<div>" ).appendTo( "#qunit-fixture" ),
datas = {
"non-empty": "a string",
"empty-string": "",
"one-value": 1,
"zero-value": 0,
"an-array": [],
"an-object": {},
"bool-true": true,
"bool-false": false,
// JSHint enforces double quotes,
// but JSON strings need double quotes to parse
// so we need escaped double quotes here
"some-json": "{ \"foo\": \"bar\" }"
};
assert.expect( 9 );
jQuery.each( datas, function( key, val ) {
div.data( key, val );
div.data( key, val );
div.removeData( key );
assert.equal(
div.data( key ), undefined, "removal: " + key
);
} );
}
);
QUnit.test(
".removeData supports removal of hyphenated properties via array (#12786, gh-2257)",
function( assert ) {
assert.expect( 4 );
var div, plain, compare;
div = jQuery( "<div>" ).appendTo( "#qunit-fixture" );
plain = jQuery( {} );
// Properties should always be camelCased
compare = {
// From batch assignment .data({ "a-a": 1 })
"aA": 1,
// From property, value assignment .data( "b-b", 1 )
"bB": 1
};
// Mixed assignment
div.data( { "a-a": 1 } ).data( "b-b", 1 );
plain.data( { "a-a": 1 } ).data( "b-b", 1 );
assert.deepEqual(
div.data(), compare, "Data appears as expected. (div)"
);
assert.deepEqual(
plain.data(), compare, "Data appears as expected. (plain)"
);
div.removeData( [ "a-a", "b-b" ] );
plain.removeData( [ "a-a", "b-b" ] );
assert.deepEqual(
div.data(), {}, "Data is empty. (div)"
);
assert.deepEqual(
plain.data(), {}, "Data is empty. (plain)"
);
}
);
// Test originally by Moschel
QUnit.test( "Triggering the removeData should not throw exceptions. (#10080)", function( assert ) {
assert.expect( 1 );
QUnit.stop();
var frame = jQuery( "#loadediframe" );
jQuery( frame[ 0 ].contentWindow ).on( "unload", function() {
assert.ok(
true, "called unload"
);
QUnit.start();
} );
// change the url to trigger unload
frame.attr( "src", "data/iframe.html?param=true" );
} );
QUnit.test( "Only check element attributes once when calling .data() - #8909", function( assert ) {
assert.expect( 2 );
var testing = {
"test": "testing",
"test2": "testing"
},
element = jQuery( "<div data-test='testing'>" ),
node = element[ 0 ];
// set an attribute using attr to ensure it
node.setAttribute( "data-test2", "testing" );
assert.deepEqual(
element.data(), testing, "Sanity Check"
);
node.setAttribute( "data-test3", "testing" );
assert.deepEqual(
element.data(), testing, "The data didn't change even though the data-* attrs did"
);
// clean up data cache
element.remove();
} );
QUnit.test( "JSON data- attributes can have newlines", function( assert ) {
assert.expect( 1 );
var x = jQuery( "<div data-some='{\n\"foo\":\n\t\"bar\"\n}'></div>" );
assert.equal(
x.data( "some" ).foo, "bar", "got a JSON data- attribute with spaces"
);
x.remove();
} );
testIframeWithCallback(
"enumerate data attrs on body (#14894)",
"data/dataAttrs.html",
function( result, assert ) {
assert.expect( 1 );
assert.equal(
result, "ok", "enumeration of data- attrs on body"
);
}
);
|