| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- // @vitest-environment jsdom
- import { act, cleanup, fireEvent, render, screen } from '@testing-library/react'
- import { afterEach, describe, expect, it, vi } from 'vitest'
- import { Tooltip } from '@deepseek-ai/dsh-client-ui-primitives'
- afterEach(cleanup)
- describe('Tooltip', () => {
- it('resolves lazy labels only after the bubble becomes visible', () => {
- vi.useFakeTimers()
- try {
- const label = vi.fn(() => 'Timing details')
- render(
- <Tooltip label={label} delayMs={500}>
- <button type="button">anchor</button>
- </Tooltip>,
- )
- expect(label).not.toHaveBeenCalled()
- fireEvent.mouseEnter(screen.getByText('anchor'))
- act(() => { vi.advanceTimersByTime(499) })
- expect(label).not.toHaveBeenCalled()
- act(() => { vi.advanceTimersByTime(1) })
- expect(screen.getByRole('tooltip').textContent).toBe('Timing details')
- expect(label).toHaveBeenCalledOnce()
- } finally {
- vi.useRealTimers()
- }
- })
- it('can delay pointer hover without delaying keyboard focus', () => {
- vi.useFakeTimers()
- try {
- render(
- <Tooltip label="Timing details" delayMs={500}>
- <button type="button">anchor</button>
- </Tooltip>,
- )
- const anchor = screen.getByText('anchor')
- fireEvent.mouseEnter(anchor)
- act(() => { vi.advanceTimersByTime(499) })
- expect(screen.queryByRole('tooltip')).toBeNull()
- fireEvent.mouseLeave(anchor)
- act(() => { vi.advanceTimersByTime(1) })
- expect(screen.queryByRole('tooltip')).toBeNull()
- fireEvent.mouseEnter(anchor)
- act(() => { vi.advanceTimersByTime(500) })
- expect(screen.getByRole('tooltip').textContent).toBe('Timing details')
- fireEvent.mouseLeave(anchor)
- fireEvent.focus(anchor)
- expect(screen.getByRole('tooltip').textContent).toBe('Timing details')
- } finally {
- vi.useRealTimers()
- }
- })
- it('shows the bubble to the right on hover and hides it on leave', () => {
- render(
- <Tooltip label="Open sidebar">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- const anchor = screen.getByText('anchor')
- fireEvent.mouseEnter(anchor)
- const bubble = screen.getByRole('tooltip')
- expect(bubble.textContent).toBe('Open sidebar')
- expect(bubble.getAttribute('data-side')).toBe('right')
- // jsdom rects are all-zero: right placement lands at the +10 gutter, then
- // the zero-width measured rect clamps to the 12px edge margin (10 + 12).
- expect(bubble.style.left).toBe('22px')
- expect(bubble.style.top).toBe('0px')
- fireEvent.mouseLeave(anchor)
- expect(screen.queryByRole('tooltip')).toBeNull()
- })
- it('supports bottom placement and the focus/blur channel', () => {
- render(
- <Tooltip label="Below" side="bottom">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- const anchor = screen.getByText('anchor')
- fireEvent.focus(anchor)
- const bubble = screen.getByRole('tooltip')
- expect(bubble.getAttribute('data-side')).toBe('bottom')
- // Zero-width jsdom rect at x=0 clamps to the 12px edge margin.
- expect(bubble.style.left).toBe('12px')
- expect(bubble.style.top).toBe('8px')
- fireEvent.blur(anchor)
- expect(screen.queryByRole('tooltip')).toBeNull()
- })
- // jsdom's default rects are all-zero, so the clamp tests stub the measured
- // rect (anchor and bubble share the prototype stub) and derive expectations
- // from it: pos.x = anchor center, then shifted by the measured overflow.
- const rect = (left: number, right: number): DOMRect =>
- ({ left, right, top: 0, bottom: 20, width: right - left, height: 20, x: left, y: 0, toJSON: () => ({}) })
- it('caps the bubble width where the label would otherwise slab across the surface', () => {
- render(
- <Tooltip label="A description long enough to need a cap" side="bottom" maxWidth={360}>
- <button type="button">anchor</button>
- </Tooltip>,
- )
- fireEvent.mouseEnter(screen.getByText('anchor'))
- // The stylesheet's half-viewport cap stays the default; this one overrides it.
- expect(screen.getByRole('tooltip').style.maxWidth).toBe('360px')
- })
- it('clamps a bubble overflowing the right viewport edge back inside', () => {
- const spy = vi.spyOn(Element.prototype, 'getBoundingClientRect').mockReturnValue(rect(900, 1100))
- try {
- render(
- <Tooltip label="Wide" side="bottom">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- fireEvent.mouseEnter(screen.getByText('anchor'))
- // pos.x = 1000 (anchor center); measured right edge 1100 overflows the
- // 1024 viewport's 12px safe margin (limit 1012) by 88, so the clamp
- // shifts left to 912.
- expect(screen.getByRole('tooltip').style.left).toBe('912px')
- } finally {
- spy.mockRestore()
- }
- })
- it('reclamps after label and viewport width changes', () => {
- const originalWidth = window.innerWidth
- const spy = vi.spyOn(Element.prototype, 'getBoundingClientRect').mockImplementation(function (this: Element) {
- if (this.getAttribute('role') !== 'tooltip') return rect(900, 1000)
- return this.textContent === 'Wide' ? rect(900, 1100) : rect(850, 950)
- })
- try {
- const view = render(
- <Tooltip label="Wide" side="bottom">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- fireEvent.mouseEnter(screen.getByText('anchor'))
- expect(screen.getByRole('tooltip').style.left).toBe('862px')
- view.rerender(
- <Tooltip label="Short" side="bottom">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- expect(screen.getByRole('tooltip').style.left).toBe('950px')
- Object.defineProperty(window, 'innerWidth', { configurable: true, value: 900 })
- fireEvent(window, new Event('resize'))
- expect(screen.getByRole('tooltip').style.left).toBe('888px')
- } finally {
- Object.defineProperty(window, 'innerWidth', { configurable: true, value: originalWidth })
- spy.mockRestore()
- }
- })
- it('clamps a bubble past the left viewport edge back inside', () => {
- const spy = vi.spyOn(Element.prototype, 'getBoundingClientRect').mockReturnValue(rect(-20, 80))
- try {
- render(
- <Tooltip label="Wide" side="bottom">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- fireEvent.mouseEnter(screen.getByText('anchor'))
- // pos.x = 30 (anchor center); measured left edge -20 underflows the
- // 12px safe margin by 32, so the clamp shifts right to 62.
- expect(screen.getByRole('tooltip').style.left).toBe('62px')
- } finally {
- spy.mockRestore()
- }
- })
- /** Anchor and bubble rects, so a placement test measures real room rather than jsdom's all-zero boxes. */
- const placed = (anchorTop: number, anchorBottom: number, bubbleHeight: number) =>
- vi.spyOn(Element.prototype, 'getBoundingClientRect').mockImplementation(function (this: Element) {
- const [top, bottom] = this.getAttribute('role') === 'tooltip'
- ? [0, bubbleHeight]
- : [anchorTop, anchorBottom]
- return {
- left: 100, right: 200, top, bottom, width: 100, height: bottom - top, x: 100, y: top, toJSON: () => ({}),
- }
- })
- it('supports top placement for anchors at the viewport bottom', () => {
- const spy = placed(700, 720, 20)
- try {
- render(
- <Tooltip label="Above" side="top">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- fireEvent.mouseEnter(screen.getByText('anchor'))
- const bubble = screen.getByRole('tooltip')
- // There is room above, so the requested side stands: the bubble's own
- // top sits at the anchor's top less the 8px gutter.
- expect(bubble.getAttribute('data-side')).toBe('top')
- expect(bubble.style.top).toBe('692px')
- expect(bubble.style.left).toBe('150px')
- } finally {
- spy.mockRestore()
- }
- })
- it('flips a bottom bubble above an anchor with no room below', () => {
- // jsdom's viewport is 768 tall: a 300px bubble under an anchor ending at
- // 700 would run off, and there is room for it above.
- const spy = placed(600, 700, 300)
- try {
- render(
- <Tooltip label="Tall" side="bottom">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- fireEvent.mouseEnter(screen.getByText('anchor'))
- const bubble = screen.getByRole('tooltip')
- expect(bubble.getAttribute('data-side')).toBe('top')
- expect(bubble.style.top).toBe('592px')
- } finally {
- spy.mockRestore()
- }
- })
- it('flips a top bubble below an anchor with no room above', () => {
- const spy = placed(10, 40, 100)
- try {
- render(
- <Tooltip label="Tall" side="top">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- fireEvent.mouseEnter(screen.getByText('anchor'))
- const bubble = screen.getByRole('tooltip')
- expect(bubble.getAttribute('data-side')).toBe('bottom')
- expect(bubble.style.top).toBe('48px')
- } finally {
- spy.mockRestore()
- }
- })
- it('keeps the requested side when neither side fits', () => {
- // A bubble taller than the viewport has no home; oscillating between the
- // two would be worse than honouring the request.
- const spy = placed(300, 400, 900)
- try {
- render(
- <Tooltip label="Huge" side="bottom">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- fireEvent.mouseEnter(screen.getByText('anchor'))
- expect(screen.getByRole('tooltip').getAttribute('data-side')).toBe('bottom')
- } finally {
- spy.mockRestore()
- }
- })
- it('chains the anchor\'s own handlers ahead of the tooltip\'s', () => {
- const onMouseEnter = vi.fn()
- const onMouseLeave = vi.fn()
- const onFocus = vi.fn()
- const onBlur = vi.fn()
- render(
- <Tooltip label="Chained">
- <button type="button" onMouseEnter={onMouseEnter} onMouseLeave={onMouseLeave} onFocus={onFocus} onBlur={onBlur}>anchor</button>
- </Tooltip>,
- )
- const anchor = screen.getByText('anchor')
- fireEvent.mouseEnter(anchor)
- fireEvent.mouseLeave(anchor)
- fireEvent.focus(anchor)
- fireEvent.blur(anchor)
- expect(onMouseEnter).toHaveBeenCalledOnce()
- expect(onMouseLeave).toHaveBeenCalledOnce()
- expect(onFocus).toHaveBeenCalledOnce()
- expect(onBlur).toHaveBeenCalledOnce()
- })
- it('suppresses the bubble while disabled without remounting the anchor', () => {
- const { rerender } = render(
- <Tooltip label="Rail" disabled>
- <button type="button">anchor</button>
- </Tooltip>,
- )
- const anchor = screen.getByText('anchor')
- fireEvent.mouseEnter(anchor)
- expect(screen.queryByRole('tooltip')).toBeNull()
- rerender(
- <Tooltip label="Rail">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- // Same DOM node: toggling disabled never remounted the anchor.
- expect(screen.getByText('anchor')).toBe(anchor)
- fireEvent.mouseEnter(anchor)
- expect(screen.getByRole('tooltip')).toBeTruthy()
- })
- it('mouse leave hides the bubble immediately, even while the anchor stays focused', () => {
- render(
- <Tooltip label="Sticky">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- const anchor = screen.getByText('anchor')
- // Focused AND hovered: leaving with the mouse drops the bubble at once.
- fireEvent.focus(anchor)
- fireEvent.mouseEnter(anchor)
- fireEvent.mouseLeave(anchor)
- expect(screen.queryByRole('tooltip')).toBeNull()
- // Re-entering shows it again; blurring while still hovered keeps it.
- fireEvent.mouseEnter(anchor)
- fireEvent.blur(anchor)
- expect(screen.getByRole('tooltip')).toBeTruthy()
- fireEvent.mouseLeave(anchor)
- expect(screen.queryByRole('tooltip')).toBeNull()
- })
- it('forwards the anchor element to the child ref (object and callback)', () => {
- const objectRef = { current: null as HTMLButtonElement | null }
- const callbackRef = vi.fn()
- const { rerender } = render(
- <Tooltip label="Add">
- <button type="button" ref={objectRef}>anchor</button>
- </Tooltip>,
- )
- expect(objectRef.current).toBe(screen.getByText('anchor'))
- // Tooltip's own positioning still works through the merged ref.
- fireEvent.mouseEnter(screen.getByText('anchor'))
- expect(screen.getByRole('tooltip')).toBeTruthy()
- rerender(
- <Tooltip label="Add">
- <button type="button" ref={callbackRef}>anchor</button>
- </Tooltip>,
- )
- expect(callbackRef).toHaveBeenCalledWith(screen.getByText('anchor'))
- })
- it('drops an already-visible bubble when disabled flips mid-hover', () => {
- const { rerender } = render(
- <Tooltip label="Rail">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- fireEvent.mouseEnter(screen.getByText('anchor'))
- expect(screen.getByRole('tooltip')).toBeTruthy()
- // e.g. clicking a rail control expands the sidebar: no mouseleave fires.
- rerender(
- <Tooltip label="Rail" disabled>
- <button type="button">anchor</button>
- </Tooltip>,
- )
- expect(screen.queryByRole('tooltip')).toBeNull()
- })
- it('withdraws the enclosing bubble while a nested tooltip shows its own', () => {
- render(
- <Tooltip label="Open sidebar">
- <button type="button">
- anchor
- <Tooltip label="Update — V1.2.3">
- <span data-testid="badge" />
- </Tooltip>
- </button>
- </Tooltip>,
- )
- const anchor = screen.getByText('anchor')
- const badge = screen.getByTestId('badge')
- fireEvent.mouseEnter(anchor)
- expect(screen.getByRole('tooltip').textContent).toBe('Open sidebar')
- // Entering the nested anchor withdraws the enclosing bubble instead of
- // stacking both; the enclosing anchor stays hovered, so nothing is lost.
- fireEvent.mouseEnter(badge)
- expect(screen.getAllByRole('tooltip').map(bubble => bubble.textContent)).toEqual(['Update — V1.2.3'])
- // Leaving the nested anchor for the enclosing one restores its bubble;
- // the pointer never left the enclosing anchor, so only the badge is left.
- fireEvent.mouseLeave(badge, { relatedTarget: anchor })
- expect(screen.getByRole('tooltip').textContent).toBe('Open sidebar')
- fireEvent.mouseLeave(anchor)
- expect(screen.queryByRole('tooltip')).toBeNull()
- })
- it('releases the enclosing bubble when a shown nested tooltip unmounts', () => {
- const view = render(
- <Tooltip label="Open sidebar">
- <button type="button">
- anchor
- <Tooltip label="Update"><span data-testid="badge" /></Tooltip>
- </button>
- </Tooltip>,
- )
- fireEvent.mouseEnter(screen.getByText('anchor'))
- fireEvent.mouseEnter(screen.getByTestId('badge'))
- expect(screen.getAllByRole('tooltip').map(bubble => bubble.textContent)).toEqual(['Update'])
- view.rerender(
- <Tooltip label="Open sidebar">
- <button type="button">anchor</button>
- </Tooltip>,
- )
- expect(screen.getByRole('tooltip').textContent).toBe('Open sidebar')
- })
- })
|