|
| 1 | +import { render, screen } from '@testing-library/react'; |
| 2 | +import { describe, expect, it, vi } from 'vitest'; |
| 3 | + |
| 4 | +import { DiscordButton } from './DiscordButton'; |
| 5 | + |
| 6 | +vi.mock('gsap', () => ({ |
| 7 | + default: { |
| 8 | + to: vi.fn(), |
| 9 | + }, |
| 10 | +})); |
| 11 | + |
| 12 | +vi.mock('framer-motion', () => ({ |
| 13 | + motion: { |
| 14 | + div: ({ children, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 15 | + <div {...props}>{children}</div> |
| 16 | + ), |
| 17 | + a: ({ children, ...props }: React.AnchorHTMLAttributes<HTMLAnchorElement>) => ( |
| 18 | + <a {...props}>{children}</a> |
| 19 | + ), |
| 20 | + }, |
| 21 | +})); |
| 22 | + |
| 23 | +describe('DiscordButton accessibility behavior', () => { |
| 24 | + it('renders as an accessible link with visible text', () => { |
| 25 | + render(<DiscordButton />); |
| 26 | + |
| 27 | + expect(screen.getByRole('link', { name: /join the core community on discord/i })).toBeDefined(); |
| 28 | + }); |
| 29 | + |
| 30 | + it('uses the correct Discord invite href', () => { |
| 31 | + render(<DiscordButton />); |
| 32 | + |
| 33 | + expect(screen.getByRole('link').getAttribute('href')).toBe('https://discord.gg/Cb73bS79j'); |
| 34 | + }); |
| 35 | + |
| 36 | + it('opens external Discord link safely in a new tab', () => { |
| 37 | + render(<DiscordButton />); |
| 38 | + |
| 39 | + const link = screen.getByRole('link'); |
| 40 | + |
| 41 | + expect(link.getAttribute('target')).toBe('_blank'); |
| 42 | + expect(link.getAttribute('rel')).toBe('noopener noreferrer'); |
| 43 | + }); |
| 44 | + |
| 45 | + it('is keyboard focusable through the anchor element', () => { |
| 46 | + render(<DiscordButton />); |
| 47 | + |
| 48 | + const link = screen.getByRole('link'); |
| 49 | + link.focus(); |
| 50 | + |
| 51 | + expect(document.activeElement).toBe(link); |
| 52 | + }); |
| 53 | + |
| 54 | + it('keeps only one accessible link target for screen readers', () => { |
| 55 | + render(<DiscordButton />); |
| 56 | + |
| 57 | + expect(screen.getAllByRole('link')).toHaveLength(1); |
| 58 | + }); |
| 59 | +}); |
0 commit comments