-
Notifications
You must be signed in to change notification settings - Fork 664
Expand file tree
/
Copy pathGithubAuthButton.accessibility.test.tsx
More file actions
98 lines (75 loc) · 2.6 KB
/
Copy pathGithubAuthButton.accessibility.test.tsx
File metadata and controls
98 lines (75 loc) · 2.6 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
import { render, screen } from '@testing-library/react';
import '@testing-library/jest-dom/vitest';
import { describe, it, expect, vi, beforeEach } from 'vitest';
import { GitHubAuthButton } from './GithubAuthButton';
vi.mock('next-auth/react', () => ({
signIn: vi.fn(),
signOut: vi.fn(),
useSession: vi.fn(),
}));
import { useSession } from 'next-auth/react';
describe('GitHubAuthButton Accessibility Standards & ARIA Compliance', () => {
beforeEach(() => {
vi.clearAllMocks();
});
it('renders a native <button> element — keyboard and screen reader accessible by default', () => {
vi.mocked(useSession).mockReturnValue({
data: null,
status: 'unauthenticated',
update: vi.fn(),
});
render(<GitHubAuthButton />);
const button = screen.getByRole('button');
expect(button).toBeInTheDocument();
expect(button.tagName).toBe('BUTTON');
});
it('"Sign in with GitHub" button has accessible text for screen readers', () => {
vi.mocked(useSession).mockReturnValue({
data: null,
status: 'unauthenticated',
update: vi.fn(),
});
render(<GitHubAuthButton />);
expect(screen.getByRole('button', { name: /sign in with github/i })).toBeInTheDocument();
});
it('"Sign out" button has accessible text for screen readers', () => {
vi.mocked(useSession).mockReturnValue({
data: { user: { name: 'Nishu' }, expires: '9999' },
status: 'authenticated',
update: vi.fn(),
});
render(<GitHubAuthButton />);
expect(screen.getByRole('button', { name: /sign out/i })).toBeInTheDocument();
});
it('button is keyboard focusable when unauthenticated', () => {
vi.mocked(useSession).mockReturnValue({
data: null,
status: 'unauthenticated',
update: vi.fn(),
});
render(<GitHubAuthButton />);
const button = screen.getByRole('button');
button.focus();
expect(document.activeElement).toBe(button);
});
it('button is keyboard focusable when authenticated', () => {
vi.mocked(useSession).mockReturnValue({
data: { user: { name: 'Nishu' }, expires: '9999' },
status: 'authenticated',
update: vi.fn(),
});
render(<GitHubAuthButton />);
const button = screen.getByRole('button');
button.focus();
expect(document.activeElement).toBe(button);
});
it('renders exactly one button at a time — no duplicate controls', () => {
vi.mocked(useSession).mockReturnValue({
data: null,
status: 'unauthenticated',
update: vi.fn(),
});
render(<GitHubAuthButton />);
expect(screen.getAllByRole('button')).toHaveLength(1);
});
});