-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathButton.test.tsx
More file actions
164 lines (137 loc) · 5.18 KB
/
Copy pathButton.test.tsx
File metadata and controls
164 lines (137 loc) · 5.18 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
import * as React from 'react';
import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { buttonAccessibilityBehaviorDefinition, validateBehavior, ComponentTestFacade } from '@fluentui/a11y-testing';
import { isConformant } from '../../testing/isConformant';
import { Button } from './Button';
import type { ButtonProps } from './Button.types';
describe('Button', () => {
isConformant({
Component: Button as React.FunctionComponent<ButtonProps>,
displayName: 'Button',
testOptions: {
'has-static-classnames': [
{
props: {
icon: 'Test Icon',
},
},
],
},
});
describe('meets accessibility requirements', () => {
const testFacade = new ComponentTestFacade(Button, {});
const errors = validateBehavior(buttonAccessibilityBehaviorDefinition, testFacade);
expect(errors).toEqual([]);
afterAll(() => {
// Reset body after behavioral checks are done
document.body.innerHTML = '';
});
});
describe('when rendered as a button', () => {
it('renders correctly', () => {
const { getByRole } = render(<Button>This is a button</Button>);
const button = getByRole('button');
expect(button.tagName).toBe('BUTTON');
});
it('can be focused', () => {
const { getByRole } = render(<Button>This is a button</Button>);
const button = getByRole('button');
expect(document.activeElement).not.toEqual(button);
userEvent.tab();
expect(document.activeElement).toEqual(button);
});
it('cannot be focused when disabled has been passed to the component', () => {
const { getByRole } = render(<Button disabled>This is a button</Button>);
const button = getByRole('button');
expect(document.activeElement).not.toEqual(button);
userEvent.tab();
expect(document.activeElement).not.toEqual(button);
});
it('can be focused when disabledFocusable has been passed to the component', () => {
const { getByRole } = render(<Button disabledFocusable>This is a button</Button>);
const button = getByRole('button');
expect(document.activeElement).not.toEqual(button);
userEvent.tab();
expect(document.activeElement).toEqual(button);
});
it('can trigger a function by being clicked', () => {
const onClick = jest.fn();
const { getByRole } = render(<Button onClick={onClick}>This is a button</Button>);
userEvent.click(getByRole('button'));
expect(onClick).toHaveBeenCalled();
});
it('does not trigger a function by being clicked when disabled has been passed to the component', () => {
const onClick = jest.fn();
const { getByRole } = render(
<Button disabled onClick={onClick}>
This is a button
</Button>,
);
userEvent.click(getByRole('button'));
expect(onClick).not.toHaveBeenCalled();
});
it('does not trigger a function by being clicked when disabledFocusable has been passed to the component', () => {
const onClick = jest.fn();
const { getByRole } = render(
<Button disabledFocusable onClick={onClick}>
This is a button
</Button>,
);
userEvent.click(getByRole('button'));
expect(onClick).not.toHaveBeenCalled();
});
});
describe('when rendered as an anchor', () => {
it('renders correctly', () => {
const { getByRole } = render(
<Button as="a" href="https://www.bing.com">
This is a button
</Button>,
);
const anchor = getByRole('link');
expect(anchor.tagName).toBe('A');
expect(anchor.getAttribute('role')).toBeFalsy();
});
it('applies role and tabindex with no href', () => {
const { getByRole } = render(<Button as="a">This is a button</Button>);
const anchor = getByRole('button');
expect(anchor.tagName).toBe('A');
expect(anchor.getAttribute('role')).toEqual('button');
expect(anchor.tabIndex).toEqual(0);
});
it('can be focused', () => {
const { getByRole } = render(
<Button as="a" href="https://www.bing.com">
This is a button
</Button>,
);
const anchor = getByRole('link');
expect(document.activeElement).not.toEqual(anchor);
userEvent.tab();
expect(document.activeElement).toEqual(anchor);
});
it('cannot be focused when disabled has been passed to the component', () => {
const { getByRole } = render(
<Button as="a" disabled href="https://www.bing.com">
This is a button
</Button>,
);
const anchor = getByRole('link');
expect(document.activeElement).not.toEqual(anchor);
userEvent.tab();
expect(document.activeElement).not.toEqual(anchor);
});
it('can be focused when disabledFocusable has been passed to the component', () => {
const { getByRole } = render(
<Button as="a" disabledFocusable href="https://www.bing.com">
This is a button
</Button>,
);
const anchor = getByRole('link');
expect(document.activeElement).not.toEqual(anchor);
userEvent.tab();
expect(document.activeElement).toEqual(anchor);
});
});
});