-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy patha11y-link-in-text-block.test.js
More file actions
208 lines (204 loc) · 5.13 KB
/
Copy patha11y-link-in-text-block.test.js
File metadata and controls
208 lines (204 loc) · 5.13 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
const rule = require('../a11y-link-in-text-block')
const {RuleTester} = require('eslint')
const ruleTester = new RuleTester({
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
})
ruleTester.run('a11y-link-in-text-block', rule, {
valid: [
`import {Link} from '@primer/react';
<Box>
<Link href="something">
Blah blah
</Link>{' '}
.
</Box>
`,
`import {Text, Link} from '@primer/react';
<Something>
<Link href='blah'>
blah
</Link>
</Something>
`,
`import {Link} from '@primer/react';
<p>bla blah <Link inline={true}>Link level 1</Link></p>;
`,
`import {Link} from '@primer/react';
<p>bla blah<Link inline>Link level 1</Link></p>;
`,
`import {Link} from '@primer/react';
<><span>something</span><Link inline={true}>Link level 1</Link></>;
`,
`import {Link} from '@primer/react';
<Link>Link level 1</Link>;
`,
`import {Heading, Link} from '@primer/react';
<Heading>
<Link>Link level 1</Link>
hello
</Heading>
`,
`import {Heading, Link} from '@primer/react';
<Heading as="h2">
<Link href={somePath}>
Breadcrumb
</Link>
Create a thing
</Heading>
`,
`import {Link} from '@primer/react';
<div>
<h2>
<Link href={somePath}>
Breadcrumb
</Link>
</h2>
Create a thing
</div>
`,
`import {Link} from '@primer/react';
<div>
<Link href={somePath}>
<GitHubAvatar />{owner}
</Link>{' '}
last edited{' '}
</div>
`,
`import {Link} from '@primer/react';
<span>
by
<Link href="something" sx={{p: 2, fontWeight: 'bold'}}>
Blah blah
</Link>
</span>
`,
`import {Link} from '@primer/react';
<span>
by
<Link href="something" sx={{fontWeight: 'bold'}}>
Blah blah
</Link>
</span>
`,
`import {Link} from '@primer/react';
<span>
by
<Link href="something" sx={{fontFamily: 'mono'}}>
Blah blah
</Link>
</span>
`,
`import {Link} from '@primer/react';
<Box>
<Link href="something">
Blah blah
</Link>{' '}
.
</Box>
`,
`import {Link} from '@primer/react';
<Heading sx={{fontSize: 1, mb: 3}} as="h3">
In addition,{' '}
<Link href="https://github.com/pricing" target="_blank">
GitHub Team
</Link>{' '}
includes:
</Heading>
`,
`import {Link} from '@primer/react';
<p>bla blah
<Link className={styles.someClass}>Link text</Link>
</p>
`,
`import {Link} from '@primer/react';
<p>bla blah
<Link className='some-class'>Link text</Link>
</p>
`,
// Valid HTML anchor examples
`<h1>
<a href="/home">Home</a>
</h1>`,
`<p>
<a href="/about" className="custom-link">About us</a>
</p>`,
`<div>
<a href="/contact"><CustomIcon /> Contact</a>
</div>`,
`<div>
<a href="/link">Link</a>.
</div>`,
`<div>
<a href="/link" id="custom-link">Link</a>.
</div>`,
],
invalid: [
{
code: `import {Link} from '@primer/react';
<p>bla blah<Link>Link level 1</Link></p>
`,
errors: [{messageId: 'linkInTextBlock'}],
},
{
code: `import {Link} from '@primer/react';
<p><Link>Link level 1</Link> something something</p>
`,
errors: [{messageId: 'linkInTextBlock'}],
},
{
code: `import {Link} from '@primer/react';
<p>bla blah<Link inline={false}>Link level 1</Link></p>
`,
errors: [{messageId: 'linkInTextBlock'}],
},
{
code: `import {Link} from '@primer/react';
<Box>Something something{' '}
<Link>Link level 1</Link>
</Box>
`,
errors: [{messageId: 'linkInTextBlock'}],
},
{
code: `import {Link} from '@primer/react';
<>blah blah blah{' '}
<Link>Link level 1</Link></>;
`,
errors: [{messageId: 'linkInTextBlock'}],
},
{
code: `import {Link} from '@primer/react';
<>blah blah blah{' '}
<Link underline>Link level 1</Link></>;
`,
errors: [{messageId: 'linkInTextBlock'}],
},
// HTML anchor element tests
{
code: `<p>Please <a href="https://github.com">visit our site</a> for more information.</p>`,
errors: [{messageId: 'htmlAnchorInTextBlock'}],
output: `<p>Please <Link href="https://github.com">visit our site</Link> for more information.</p>`,
},
{
code: `<div>Learn more about <a href="/pricing">pricing</a> options.</div>`,
errors: [{messageId: 'htmlAnchorInTextBlock'}],
output: `<div>Learn more about <Link href="/pricing">pricing</Link> options.</div>`,
},
{
code: `<span>Check out <a href="https://github.com" target="_blank">GitHub</a> today!</span>`,
errors: [{messageId: 'htmlAnchorInTextBlock'}],
output: `<span>Check out <Link href="https://github.com" target="_blank">GitHub</Link> today!</span>`,
},
{
code: `<p><a href="/home">Home page</a> has been updated.</p>`,
errors: [{messageId: 'htmlAnchorInTextBlock'}],
output: `<p><Link href="/home">Home page</Link> has been updated.</p>`,
},
],
})