forked from twitter/typeahead.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataset_view_spec.js
222 lines (173 loc) · 6.07 KB
/
dataset_view_spec.js
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
describe('Dataset', function() {
beforeEach(function() {
this.dataset = new Dataset({
name: 'test',
source: this.source = jasmine.createSpy('source')
});
});
it('should throw an error if source is missing', function() {
expect(noSource).toThrow();
function noSource() { new Dataset(); }
});
it('should throw an error if the name is not a valid class name', function() {
expect(fn).toThrow();
function fn() {
var d = new Dataset({ name: 'a space', source: $.noop });
}
});
describe('#getRoot', function() {
it('should return the root element', function() {
expect(this.dataset.getRoot()).toBe('div.tt-dataset-test');
});
});
describe('#update', function() {
it('should render suggestions', function() {
this.source.andCallFake(fakeGetWithSyncResults);
this.dataset.update('woah');
expect(this.dataset.getRoot()).toContainText('one');
expect(this.dataset.getRoot()).toContainText('two');
expect(this.dataset.getRoot()).toContainText('three');
});
it('should allow custom display functions', function() {
this.dataset = new Dataset({
name: 'test',
display: function(o) { return o.display; },
source: this.source = jasmine.createSpy('source')
});
this.source.andCallFake(fakeGetForDisplayFn);
this.dataset.update('woah');
expect(this.dataset.getRoot()).toContainText('4');
expect(this.dataset.getRoot()).toContainText('5');
expect(this.dataset.getRoot()).toContainText('6');
});
it('should render empty when no suggestions are available', function() {
this.dataset = new Dataset({
source: this.source,
templates: {
empty: '<h2>empty</h2>'
}
});
this.source.andCallFake(fakeGetWithSyncEmptyResults);
this.dataset.update('woah');
expect(this.dataset.getRoot()).toContainText('empty');
});
it('should render header', function() {
this.dataset = new Dataset({
source: this.source,
templates: {
header: '<h2>header</h2>'
}
});
this.source.andCallFake(fakeGetWithSyncResults);
this.dataset.update('woah');
expect(this.dataset.getRoot()).toContainText('header');
});
it('should render footer', function() {
this.dataset = new Dataset({
source: this.source,
templates: {
footer: function(c) { return '<p>' + c.query + '</p>'; }
}
});
this.source.andCallFake(fakeGetWithSyncResults);
this.dataset.update('woah');
expect(this.dataset.getRoot()).toContainText('woah');
});
it('should not render header/footer if there is no content', function() {
this.dataset = new Dataset({
source: this.source,
templates: {
header: '<h2>header</h2>',
footer: '<h2>footer</h2>'
}
});
this.source.andCallFake(fakeGetWithSyncEmptyResults);
this.dataset.update('woah');
expect(this.dataset.getRoot()).not.toContainText('header');
expect(this.dataset.getRoot()).not.toContainText('footer');
});
it('should not render stale suggestions', function() {
this.source.andCallFake(fakeGetWithAsyncResults);
this.dataset.update('woah');
this.source.andCallFake(fakeGetWithSyncResults);
this.dataset.update('nelly');
waits(100);
runs(function() {
expect(this.dataset.getRoot()).toContainText('one');
expect(this.dataset.getRoot()).toContainText('two');
expect(this.dataset.getRoot()).toContainText('three');
expect(this.dataset.getRoot()).not.toContainText('four');
expect(this.dataset.getRoot()).not.toContainText('five');
});
});
it('should not render suggestions if update was canceled', function() {
this.source.andCallFake(fakeGetWithAsyncResults);
this.dataset.update('woah');
this.dataset.cancel();
waits(100);
runs(function() { expect(this.dataset.getRoot()).toBeEmpty(); });
});
it('should trigger rendered after suggestions are rendered', function() {
var spy;
this.dataset.onSync('rendered', spy = jasmine.createSpy());
this.source.andCallFake(fakeGetWithSyncResults);
this.dataset.update('woah');
waitsFor(function() { return spy.callCount; });
});
});
describe('#clear', function() {
it('should clear suggestions', function() {
this.source.andCallFake(fakeGetWithSyncResults);
this.dataset.update('woah');
this.dataset.clear();
expect(this.dataset.getRoot()).toBeEmpty();
});
it('should cancel pending updates', function() {
var spy = spyOn(this.dataset, 'cancel');
this.source.andCallFake(fakeGetWithSyncResults);
this.dataset.update('woah');
expect(this.dataset.canceled).toBe(false);
this.dataset.clear();
expect(spy).toHaveBeenCalled();
});
});
describe('#isEmpty', function() {
it('should return true when empty', function() {
expect(this.dataset.isEmpty()).toBe(true);
});
it('should return false when not empty', function() {
this.source.andCallFake(fakeGetWithSyncResults);
this.dataset.update('woah');
expect(this.dataset.isEmpty()).toBe(false);
});
});
describe('#destroy', function() {
it('should null out the reference to the dataset element', function() {
this.dataset.destroy();
expect(this.dataset.$el).toBeNull();
});
});
// helper functions
// ----------------
function fakeGetWithSyncResults(query, cb) {
cb([
{ value: 'one', raw: { value: 'one' } },
{ value: 'two', raw: { value: 'two' } },
{ value: 'three', raw: { value: 'three' } }
]);
}
function fakeGetForDisplayFn(query, cb) {
cb([{ display: '4' }, { display: '5' }, { display: '6' } ]);
}
function fakeGetWithSyncEmptyResults(query, cb) {
cb();
}
function fakeGetWithAsyncResults(query, cb) {
setTimeout(function() {
cb([
{ value: 'four', raw: { value: 'four' } },
{ value: 'five', raw: { value: 'five' } },
]);
}, 0);
}
});