-
Notifications
You must be signed in to change notification settings - Fork 472
/
Copy pathjest-extensions.js
169 lines (157 loc) · 4.24 KB
/
jest-extensions.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
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
import {
matcherHint,
printExpected,
stringify,
RECEIVED_COLOR as receivedColor,
EXPECTED_COLOR as expectedColor,
} from 'jest-matcher-utils'
import {matches} from './matches'
function getDisplayName(subject) {
if (subject && subject.constructor) {
return subject.constructor.name
} else {
return typeof subject
}
}
function checkHtmlElement(htmlElement) {
if (!(htmlElement instanceof HTMLElement)) {
throw new Error(
`The given subject is a ${getDisplayName(
htmlElement,
)}, not an HTMLElement`,
)
}
}
function getMessage(
matcher,
expectedLabel,
expectedValue,
receivedLabel,
receivedValue,
) {
return [
`${matcher}\n`,
`${expectedLabel}:\n ${expectedColor(expectedValue)}`,
`${receivedLabel}:\n ${receivedColor(receivedValue)}`,
].join('\n')
}
function printAttribute(name, value) {
return value === undefined ? name : `${name}=${stringify(value)}`
}
function getAttributeComment(name, value) {
return value === undefined
? `element.hasAttribute(${stringify(name)})`
: `element.getAttribute(${stringify(name)}) === ${stringify(value)}`
}
function splitClassNames(str) {
if (!str) {
return []
}
return str.split(/\s+/).filter(s => s.length > 0)
}
function isSubset(subset, superset) {
return subset.every(item => superset.includes(item))
}
const extensions = {
toBeInTheDOM(received) {
if (received) {
checkHtmlElement(received)
}
return {
pass: !!received,
message: () => {
const to = this.isNot ? 'not to' : 'to'
return getMessage(
matcherHint(
`${this.isNot ? '.not' : ''}.toBeInTheDOM`,
'element',
'',
),
'Expected',
`element ${to} be present`,
'Received',
received,
)
},
}
},
toHaveTextContent(htmlElement, checkWith) {
checkHtmlElement(htmlElement)
const textContent = htmlElement.textContent
return {
pass: matches(textContent, htmlElement, checkWith),
message: () => {
const to = this.isNot ? 'not to' : 'to'
return getMessage(
matcherHint(
`${this.isNot ? '.not' : ''}.toHaveTextContent`,
'element',
'',
),
`Expected element ${to} have text content`,
checkWith,
'Received',
textContent,
)
},
}
},
toHaveAttribute(htmlElement, name, expectedValue) {
checkHtmlElement(htmlElement)
const isExpectedValuePresent = expectedValue !== undefined
const hasAttribute = htmlElement.hasAttribute(name)
const receivedValue = htmlElement.getAttribute(name)
return {
pass: isExpectedValuePresent
? hasAttribute && receivedValue === expectedValue
: hasAttribute,
message: () => {
const to = this.isNot ? 'not to' : 'to'
const receivedAttribute = hasAttribute
? printAttribute(name, receivedValue)
: null
const matcher = matcherHint(
`${this.isNot ? '.not' : ''}.toHaveAttribute`,
'element',
printExpected(name),
{
secondArgument: isExpectedValuePresent
? printExpected(expectedValue)
: undefined,
comment: getAttributeComment(name, expectedValue),
},
)
return getMessage(
matcher,
`Expected the element ${to} have attribute`,
printAttribute(name, expectedValue),
'Received',
receivedAttribute,
)
},
}
},
toHaveClass(htmlElement, expectedClassNames) {
checkHtmlElement(htmlElement)
const received = splitClassNames(htmlElement.getAttribute('class'))
const expected = splitClassNames(expectedClassNames)
return {
pass: isSubset(expected, received),
message: () => {
const to = this.isNot ? 'not to' : 'to'
return getMessage(
matcherHint(
`${this.isNot ? '.not' : ''}.toHaveClass`,
'element',
printExpected(expected.join(' ')),
),
`Expected the element ${to} have class`,
expected.join(' '),
'Received',
received.join(' '),
)
},
}
},
}
export default extensions