forked from alibaba-fusion/next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
a11y-spec.js
89 lines (79 loc) · 2.6 KB
/
a11y-spec.js
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
import React from 'react';
import Enzyme from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';
import Input from '../../src/input/index';
import '../../src/input/style';
import { unmount, testReact } from '../util/a11y/validate';
Enzyme.configure({ adapter: new Adapter() });
/* eslint-disable no-undef, react/jsx-filename-extension */
describe('Input A11y', () => {
let wrapper;
afterEach(() => {
if (wrapper) {
wrapper.unmount();
wrapper = null;
}
unmount();
});
it('should not have any violations', async () => {
wrapper = await testReact(
<Input aria-label="a11y input" defaultValue="123" />
);
return wrapper;
});
it('should not have any violations when value set', async () => {
wrapper = await testReact(
<div>
<Input aria-label="a11y input" defaultValue="123" />
<Input id="a11yTest2" label="a11y test value" value="123" />
</div>
);
return wrapper;
});
it('should not have any violations when clear button', async () => {
wrapper = await testReact(<Input aria-label="a11y input" hasClear />);
return wrapper;
});
it('should not have any violations when any state is set', async () => {
wrapper = await testReact(
<div>
<Input
aria-label="a11y input error"
defaultValue="123"
state="error"
/>
<Input
aria-label="a11y input loading"
defaultValue="123"
state="loading"
/>
<Input
aria-label="a11y input success"
defaultValue="123"
state="success"
/>
</div>
);
return wrapper;
});
it('should not have any violations when autoComplete', async () => {
wrapper = await testReact(
<Input aria-label="a11y input" autoComplete="on" />
);
return wrapper;
});
it('should not have any violations when autoFocus', async () => {
wrapper = await testReact(<Input aria-label="a11y input" autoFocus />);
return wrapper;
});
it('should not have any violations when using addons', async () => {
wrapper = await testReact(
<Input
addonTextAfter=".com"
addonBefore={<span>before</span>}
aria-label="a11y input"
/>
);
return wrapper;
});
});