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
|
/*
* droppable unit tests
*/
(function($) {
//
// Droppable Test Helper Functions
//
var defaults = {
accept: null,
activeClass: null,
cssNamespace: "ui",
disabled: false,
greedy: false,
hoverClass: null,
scope: "default",
tolerance: "intersect"
};
var el, drg;
function shouldBeDroppable() {
ok(false, "missing test - should be droppable");
}
function shouldNotBeDroppable() {
ok(false, "missing test - should not be droppable");
}
// Droppable Tests
module("droppable");
test("init", function() {
expect(6);
$("<div></div>").appendTo('body').droppable().remove();
ok(true, '.droppable() called on element');
$([]).droppable();
ok(true, '.droppable() called on empty collection');
$("<div></div>").droppable();
ok(true, '.droppable() called on disconnected DOMElement');
$("<div></div>").droppable().droppable("foo");
ok(true, 'arbitrary method called after init');
$("<div></div>").droppable().data("foo.droppable");
ok(true, 'arbitrary option getter after init');
$("<div></div>").droppable().data("foo.droppable", "bar");
ok(true, 'arbitrary option setter after init');
});
test("destroy", function() {
expect(6);
$("<div></div>").appendTo('body').droppable().droppable("destroy").remove();
ok(true, '.droppable("destroy") called on element');
$([]).droppable().droppable("destroy");
ok(true, '.droppable("destroy") called on empty collection');
$("<div></div>").droppable().droppable("destroy");
ok(true, '.droppable("destroy") called on disconnected DOMElement');
$("<div></div>").droppable().droppable("destroy").droppable("foo");
ok(true, 'arbitrary method called after destroy');
$("<div></div>").droppable().droppable("destroy").data("foo.droppable");
ok(true, 'arbitrary option getter after destroy');
$("<div></div>").droppable().droppable("destroy").data("foo.droppable", "bar");
ok(true, 'arbitrary option setter after destroy');
});
test("enable", function() {
expect(6);
el = $("#droppable1").droppable({ disabled: true });
shouldNotBeDroppable();
el.droppable("enable");
shouldBeDroppable();
equals(el.data("disabled.droppable"), false, "disabled.droppable getter");
el.droppable("destroy");
el.droppable({ disabled: true });
shouldNotBeDroppable();
el.data("disabled.droppable", false);
equals(el.data("disabled.droppable"), false, "disabled.droppable setter");
shouldBeDroppable();
});
test("disable", function() {
expect(6);
el = $("#droppable1").droppable({ disabled: false });
shouldBeDroppable();
el.droppable("disable");
shouldNotBeDroppable();
equals(el.data("disabled.droppable"), true, "disabled.droppable getter");
el.droppable("destroy");
el.droppable({ disabled: false });
shouldBeDroppable();
el.data("disabled.droppable", true);
equals(el.data("disabled.droppable"), true, "disabled.droppable setter");
shouldNotBeDroppable();
});
test("element types", function() {
var typeNames = ('p,h1,h2,h3,h4,h5,h6,blockquote,ol,ul,dl,div,form'
+ ',table,fieldset,address,ins,del,em,strong,q,cite,dfn,abbr'
+ ',acronym,code,samp,kbd,var,img,object,hr'
+ ',input,button,label,select,iframe').split(',');
$.each(typeNames, function(i) {
var typeName = typeNames[i];
el = $(document.createElement(typeName)).appendTo('body');
(typeName == 'table' && el.append("<tr><td>content</td></tr>"));
el.droppable();
shouldBeDroppable();
el.droppable("destroy");
el.remove();
});
});
test("defaults", function() {
el = $("<div></div>").droppable();
$.each(defaults, function(key, val) {
var actual = el.data(key + ".droppable"), expected = val;
same(actual, expected, key);
});
el.remove();
});
test("option setting", function() {
// The plugin shouldn't modify an option value set by the user
$.each(defaults, function(key, val) {
el = $("<div></div>").droppable();
el.data(key + ".droppable", val);
var actual = el.data(key + ".droppable"), expected = val;
same(actual, expected, key);
el.remove();
});
});
module("droppable: Options");
test("accept, selector", function() {
ok(false, "missing test");
});
test("accept, fn", function() {
ok(false, "missing test");
});
test("activeClass", function() {
ok(false, "missing test");
});
test("cssNamespace", function() {
//cssNamespace should be appended with '-droppable' and added as className
el = $("<div></div>").droppable({ cssNamespace: "ui" });
equals(el[0].className, "ui-droppable");
el.droppable("destroy");
//no className should be added if cssNamepsace is null
el = $("<div></div>").droppable({ cssNamespace: null });
equals(el[0].className, "");
el.droppable("destroy");
});
test("greedy", function() {
ok(false, "missing test");
});
test("hoverClass", function() {
ok(false, "missing test");
});
test("scope", function() {
ok(false, "missing test");
});
test("tolerance, fit", function() {
ok(false, "missing test");
});
test("tolerance, intersect", function() {
ok(false, "missing test");
});
test("tolerance, pointer", function() {
ok(false, "missing test");
});
test("tolerance, touch", function() {
ok(false, "missing test");
});
module("droppable: Callbacks");
test("activate", function() {
ok(false, "missing test");
});
test("deactivate", function() {
ok(false, "missing test");
});
test("over", function() {
ok(false, "missing test");
});
test("out", function() {
ok(false, "missing test");
});
test("drop", function() {
ok(false, "missing test");
});
module("droppable: Tickets");
})(jQuery);
|