forked from testing-library/dom-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery-helpers.js
61 lines (55 loc) · 1.67 KB
/
query-helpers.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
import {prettyDOM} from './pretty-dom'
import {fuzzyMatches, matches} from './matches'
/* eslint-disable complexity */
function debugDOM(htmlElement) {
const limit = process.env.DEBUG_PRINT_LIMIT || 7000
const inNode =
typeof process !== 'undefined' &&
process.versions !== undefined &&
process.versions.node !== undefined
const window =
(htmlElement.ownerDocument && htmlElement.ownerDocument.defaultView) ||
undefined
const inCypress =
(typeof global !== 'undefined' && global.Cypress) ||
(typeof window !== 'undefined' && window.Cypress)
/* istanbul ignore else */
if (inCypress) {
return ''
} else if (inNode) {
return prettyDOM(htmlElement, limit)
} else {
return prettyDOM(htmlElement, limit, {highlight: false})
}
}
/* eslint-enable complexity */
function getElementError(message, container) {
return new Error([message, debugDOM(container)].filter(Boolean).join('\n\n'))
}
function firstResultOrNull(queryFunction, ...args) {
const result = queryFunction(...args)
if (result.length === 0) return null
return result[0]
}
function queryAllByAttribute(
attribute,
container,
text,
{exact = true, collapseWhitespace = true, trim = true, normalizer} = {},
) {
const matcher = exact ? matches : fuzzyMatches
const matchOpts = {collapseWhitespace, trim, normalizer}
return Array.from(container.querySelectorAll(`[${attribute}]`)).filter(node =>
matcher(node.getAttribute(attribute), node, text, matchOpts),
)
}
function queryByAttribute(...args) {
return firstResultOrNull(queryAllByAttribute, ...args)
}
export {
debugDOM,
getElementError,
firstResultOrNull,
queryAllByAttribute,
queryByAttribute,
}