跳到主要内容

自定义查询

DOM Testing Library 暴露了许多用于实现默认查询的辅助函数。你可以使用这些辅助函 数来建立自定义查询。例如,下面的代码演示了一种覆盖默认 testId 查询的方法,以使用 不同的 data-* 属性。(注意:测试文件将导入 test-utils.js 而不是直接使用 DOM 测试 库)。

注意

自定义查询可以通过向 React Testing Library 的 选项配置对象添加查询实现。参 考渲染选项

自定义查询不同于 自定义渲染 方法.

test-utils.js
const domTestingLib = require('@testing-library/dom')
const {queryHelpers} = domTestingLib

export const queryByTestId = queryHelpers.queryByAttribute.bind(
null,
'data-test-id',
)
export const queryAllByTestId = queryHelpers.queryAllByAttribute.bind(
null,
'data-test-id',
)

export function getAllByTestId(container, id, ...rest) {
const els = queryAllByTestId(container, id, ...rest)
if (!els.length) {
throw queryHelpers.getElementError(
`Unable to find an element by: [data-test-id="${id}"]`,
container,
)
}
return els
}

export function getByTestId(container, id, ...rest) {
// result >= 1
const result = getAllByTestId(container, id, ...rest)
if (result.length > 1) {
throw queryHelpers.getElementError(
`Found multiple elements with the [data-test-id="${id}"]`,
container,
)
}
return result[0]
}

// re-export with overrides
module.exports = {
...domTestingLib,
getByTestId,
getAllByTestId,
queryByTestId,
queryAllByTestId,
}

buildQueries

buildQueries 允许你用 testing-library 中的所有标准查询来 创建自定义查询。

请参阅自定义渲染指南中 的添加自定义查询 部分,获 得更多示例用法。

使用其它断言库

如果你不使用 Jest,你也许可以找到一套类似的自定义断言库。下面是其它可以替代 jest-dom 的流行断言库列表:

如果你知道一些其他的替代方案,请提一个 pull request , 添加到这里!

getNodeText

getNodeText(node: HTMLElement)

返回一个 HTML 元素的完整文本内容,去除任何多余的空白。这样做的目的是将节点中的文 本与用户在浏览器中的感知方式完全一样,在 html 代码中的任何额外的空格在文本被渲染 时是没有意义的。

// <div>
// Hello
// World !
// </div>
const text = getNodeText(container.querySelector('div')) // "Hello World !"

当通过文本内容查询节点时,这个函数也被内部使用,这使得像 getByTextqueryByText 这样的函数能够像预期的那样工作,类似于用户在 DOM 中寻找元素。

该函数对某些输入元素有一个特殊的行为:

// <input type="submit" value="Send data" />
// <input type="button" value="Push me" />
const submitText = getNodeText(container.querySelector('input[type=submit]')) // "Send data"
const buttonText = getNodeText(container.querySelector('input[type=button]')) // "Push me"

这些元素使用属性 `value` 并向用户显示其值。