-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathmenu-bar-tooltip.test.js
More file actions
418 lines (340 loc) · 11.8 KB
/
menu-bar-tooltip.test.js
File metadata and controls
418 lines (340 loc) · 11.8 KB
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
import { expect } from '@vaadin/chai-plugins';
import { resetMouse, sendKeys, sendMouseToElement } from '@vaadin/test-runner-commands';
import {
arrowDown,
arrowRight,
escKeyDown,
fire,
fixtureSync,
focusout,
mousedown,
nextRender,
tabKeyDown,
} from '@vaadin/testing-helpers';
import sinon from 'sinon';
import './not-animated-styles.js';
import '@vaadin/menu-bar/test/menu-bar-test-styles.js';
import '@vaadin/menu-bar/src/vaadin-menu-bar.js';
import { Tooltip } from '@vaadin/tooltip/src/vaadin-tooltip.js';
import { mouseenter, mouseleave } from '@vaadin/tooltip/test/helpers.js';
export function mouseover(target) {
fire(target, 'mouseover');
}
describe('menu-bar with tooltip', () => {
let menuBar, tooltip, buttons;
before(() => {
Tooltip.setDefaultFocusDelay(0);
Tooltip.setDefaultHoverDelay(0);
Tooltip.setDefaultHideDelay(0);
});
describe('default', () => {
beforeEach(async () => {
menuBar = fixtureSync(`
<vaadin-menu-bar>
<vaadin-tooltip slot="tooltip"></vaadin-tooltip>
</vaadin-menu-bar>
`);
menuBar.items = [
{ text: 'Edit', tooltip: 'Edit tooltip' },
{
text: 'Share',
children: [{ text: 'By email' }],
},
{
text: 'Move',
tooltip: 'Move tooltip',
children: [{ text: 'To folder' }],
},
];
await nextRender();
buttons = menuBar._buttons;
tooltip = menuBar.querySelector('vaadin-tooltip');
});
it('should set manual on the tooltip to true', () => {
expect(tooltip.manual).to.be.true;
});
it('should show tooltip on menu button mouseover', () => {
mouseover(buttons[0]);
expect(tooltip.opened).to.be.true;
});
it('should use the tooltip property of an item as tooltip', () => {
mouseover(buttons[0]);
expect(tooltip.textContent).to.equal('Edit tooltip');
});
it('should not show tooltip for an item which has no tooltip', () => {
mouseover(buttons[1]);
expect(tooltip.textContent).not.to.be.ok;
});
it('should not show tooltip on another parent menu button mouseover when open', async () => {
mouseover(buttons[1]);
buttons[1].click();
await nextRender();
mouseover(buttons[2]);
await nextRender();
expect(tooltip.opened).to.be.false;
});
it('should hide tooltip on menu bar mouseleave', () => {
mouseover(buttons[0]);
mouseleave(menuBar);
expect(tooltip.opened).to.be.false;
});
it('should hide tooltip on menu bar container mouseover', () => {
mouseover(buttons[0]);
mouseover(menuBar._container);
expect(tooltip.opened).to.be.false;
});
it('should show tooltip again on menu bar button mouseover', () => {
mouseover(buttons[0]);
mouseover(menuBar._container);
mouseover(buttons[1]);
expect(tooltip.opened).to.be.true;
});
it('should set tooltip target on menu button mouseover', () => {
mouseover(buttons[0]);
expect(tooltip.target).to.be.equal(buttons[0]);
});
it('should set tooltip context on menu button mouseover', () => {
mouseover(buttons[0]);
expect(tooltip.context).to.be.instanceOf(Object);
expect(tooltip.context.item.text).to.equal('Edit');
});
it('should change tooltip context on another menu button mouseover', () => {
mouseover(buttons[0]);
mouseover(buttons[1]);
expect(tooltip.context.item.text).to.equal('Share');
});
it('should hide tooltip on menu button mousedown', () => {
mouseover(buttons[0]);
mousedown(buttons[0]);
expect(tooltip.opened).to.be.false;
});
it('should hide tooltip on mouseleave from overlay to outside', () => {
const overlay = tooltip._overlayElement;
mouseover(buttons[0]);
mouseenter(overlay);
mouseleave(overlay);
expect(overlay.opened).to.be.false;
});
it('should not show tooltip on focus without keyboard interaction', async () => {
buttons[0].focus();
await nextRender();
expect(tooltip.opened).to.be.false;
});
it('should show tooltip on menu button keyboard focus', () => {
tabKeyDown(document.body);
buttons[0].focus();
expect(tooltip.opened).to.be.true;
});
it('should not show tooltip on another parent menu button focus when open', async () => {
buttons[0].focus();
arrowRight(buttons[0]);
arrowDown(buttons[1]);
arrowRight(buttons[1]);
await nextRender();
expect(tooltip.opened).to.be.false;
});
it('should set tooltip target on menu button keyboard focus', () => {
tabKeyDown(document.body);
buttons[0].focus();
expect(tooltip.target).to.be.equal(buttons[0]);
});
it('should set tooltip context on menu button keyboard focus', () => {
tabKeyDown(document.body);
buttons[0].focus();
expect(tooltip.context).to.be.instanceOf(Object);
expect(tooltip.context.item.text).to.equal('Edit');
});
it('should hide tooltip on menu-bar focusout', () => {
tabKeyDown(document.body);
buttons[0].focus();
focusout(menuBar);
expect(tooltip.opened).to.be.false;
});
it('should hide tooltip on menuBar menu button content Esc', () => {
tabKeyDown(document.body);
buttons[0].focus();
escKeyDown(buttons[0]);
expect(tooltip.opened).to.be.false;
});
it('should set tooltip opened to false when the menuBar is removed', () => {
mouseover(buttons[0]);
menuBar.remove();
expect(tooltip.opened).to.be.false;
});
it('should not set tooltip properties if there is no tooltip', async () => {
const spyTarget = sinon.spy(menuBar._tooltipController, 'setTarget');
const spyContent = sinon.spy(menuBar._tooltipController, 'setContext');
tooltip.remove();
await nextRender();
mouseover(buttons[0]);
expect(spyTarget.called).to.be.false;
expect(spyContent.called).to.be.false;
});
it('should not override a custom generator', () => {
tooltip.generator = () => 'Custom tooltip';
mouseover(buttons[0]);
expect(tooltip.textContent).to.equal('Custom tooltip');
});
describe('overflow button', () => {
beforeEach(async () => {
// Reduce the width by the width of the last visible button
menuBar.style.display = 'inline-block';
menuBar.style.width = `${menuBar.offsetWidth - buttons[2].offsetWidth}px`;
await nextRender();
await nextRender();
// Increase the width by the width of the overflow button
menuBar.style.width = `${menuBar.offsetWidth + menuBar._overflow.offsetWidth}px`;
await nextRender();
await nextRender();
});
it('should not show tooltip on overflow button mouseover', () => {
mouseover(buttons[buttons.length - 1]);
expect(tooltip.opened).to.be.false;
});
it('should close tooltip on overflow button mouseover', () => {
mouseover(buttons[0]);
mouseover(buttons[buttons.length - 1]);
expect(tooltip.opened).to.be.false;
});
it('should close tooltip on overflow button keyboard navigation', () => {
buttons[0].focus();
arrowRight(buttons[0]);
expect(tooltip.opened).to.be.true;
arrowRight(buttons[1]);
expect(tooltip.opened).to.be.false;
});
it('should not show tooltip on overflow button keyboard focus', () => {
buttons[0].focus();
arrowRight(buttons[0]);
arrowRight(buttons[1]);
tabKeyDown(document.body);
menuBar._overflow.focus();
expect(tooltip.opened).to.be.false;
});
});
describe('open on hover', () => {
beforeEach(() => {
menuBar.openOnHover = true;
});
it('should show tooltip on mouseover for button without children', () => {
menuBar.openOnHover = true;
mouseover(buttons[0]);
expect(tooltip.opened).to.be.true;
});
it('should not show tooltip on mouseover for button with children', () => {
menuBar.openOnHover = true;
mouseover(buttons[1]);
expect(tooltip.opened).to.be.false;
});
});
describe('delay', () => {
const DEFAULT_DELAY = 500;
let clock;
beforeEach(() => {
clock = sinon.useFakeTimers({
shouldClearNativeTimers: true,
});
});
afterEach(() => {
// Wait for cooldown
clock.tick(DEFAULT_DELAY);
clock.restore();
});
it('should use hover delay on menu button mouseover', () => {
tooltip.hoverDelay = 100;
mouseover(buttons[0]);
expect(tooltip.opened).to.be.false;
clock.tick(100);
expect(tooltip.opened).to.be.true;
});
it('should use hide delay on menu button mouseleave', () => {
tooltip.hideDelay = 100;
mouseover(buttons[0]);
clock.tick(DEFAULT_DELAY);
mouseleave(menuBar);
expect(tooltip.opened).to.be.true;
clock.tick(100);
expect(tooltip.opened).to.be.false;
});
it('should not use hide delay on menu button mousedown', () => {
tooltip.hideDelay = 100;
mouseover(buttons[0]);
clock.tick(DEFAULT_DELAY);
mousedown(buttons[0]);
expect(tooltip.opened).to.be.false;
});
it('should use focus delay on menu button keyboard focus', () => {
tooltip.focusDelay = 100;
tabKeyDown(document.body);
buttons[0].focus();
expect(tooltip.opened).to.be.false;
clock.tick(100);
expect(tooltip.opened).to.be.true;
});
it('should not use hide delay on menu button Esc', () => {
tooltip.hideDelay = 100;
tabKeyDown(document.body);
buttons[0].focus();
clock.tick(DEFAULT_DELAY);
escKeyDown(buttons[0]);
expect(tooltip.opened).to.be.false;
});
});
});
describe('accessible disabled button', () => {
before(() => {
window.Vaadin.featureFlags ??= {};
window.Vaadin.featureFlags.accessibleDisabledButtons = true;
});
after(() => {
window.Vaadin.featureFlags.accessibleDisabledButtons = false;
});
beforeEach(async () => {
menuBar = fixtureSync(
`<div>
<vaadin-menu-bar>
<vaadin-tooltip slot="tooltip"></vaadin-tooltip>
</vaadin-menu-bar>
<input id="last-global-focusable" />
</div>`,
).firstElementChild;
menuBar.items = [
{ text: 'Edit' },
{
text: 'Copy',
tooltip: 'Copy tooltip',
disabled: true,
},
];
await nextRender();
buttons = menuBar._buttons;
tooltip = menuBar.querySelector('vaadin-tooltip');
});
afterEach(async () => {
await resetMouse();
});
it('should toggle tooltip on disabled button hover', async () => {
await sendMouseToElement({ type: 'move', element: buttons[1] });
expect(tooltip.textContent).to.equal('Copy tooltip');
await resetMouse();
expect(tooltip.textContent).to.equal('');
});
it('should toggle tooltip on disabled button focus when navigating with arrow keys', async () => {
await sendKeys({ press: 'Tab' });
expect(tooltip.textContent).to.equal('');
await sendKeys({ press: 'ArrowRight' });
expect(tooltip.textContent).to.equal('Copy tooltip');
await sendKeys({ press: 'ArrowLeft' });
expect(tooltip.textContent).to.equal('');
});
it('should toggle tooltip on disabled button focus when navigating with Tab', async () => {
menuBar.tabNavigation = true;
await sendKeys({ press: 'Tab' });
expect(tooltip.textContent).to.equal('');
await sendKeys({ press: 'Tab' });
expect(tooltip.textContent).to.equal('Copy tooltip');
await sendKeys({ press: 'Shift+Tab' });
expect(tooltip.textContent).to.equal('');
});
});
});