chore(vue): prefer test id directive

This commit is contained in:
Danila Poyarkov 2026-05-15 12:47:01 +03:00
parent 744f0a0f42
commit 5f3a4f7816
2 changed files with 52 additions and 0 deletions

View file

@ -239,6 +239,54 @@ const noRawTestIdStringProps = {
}
}
const noDynamicDataTestIdInVue = {
meta: {
docs: {
description: 'Disallow dynamic :data-test-id in Vue components — use v-test-id'
}
},
create(context) {
const file = normalizedFilename(context)
if (!file.endsWith('.vue')) return {}
return {
Program(node) {
const source = context.sourceCode.getText()
if (/\B:data-test-id\s*=|\bv-bind:data-test-id\s*=/.test(source)) {
context.report({
node,
message: 'Use v-test-id for dynamic/configurable test ids instead of :data-test-id.'
})
}
}
}
}
}
const noTestIdHelperBindInVue = {
meta: {
docs: {
description: 'Prefer v-test-id over v-bind="testId(...)" in Vue templates'
}
},
create(context) {
const file = normalizedFilename(context)
if (!file.endsWith('.vue')) return {}
return {
Program(node) {
const source = context.sourceCode.getText()
if (/\bv-bind\s*=\s*"testId(?:Attr)?\(/.test(source)) {
context.report({
node,
message: 'Use v-test-id instead of v-bind="testId(...)" in Vue templates.'
})
}
}
}
}
}
const noInvalidTestIdAttributes = {
meta: {
docs: {
@ -1362,6 +1410,8 @@ const plugin = {
'no-structuredclone-scene-arrays': noStructuredCloneSceneArrays,
'no-vue-style-blocks': noVueStyleBlocks,
'no-raw-test-id-string-props': noRawTestIdStringProps,
'no-dynamic-data-test-id-in-vue': noDynamicDataTestIdInVue,
'no-test-id-helper-bind-in-vue': noTestIdHelperBindInVue,
'no-invalid-test-id-attributes': noInvalidTestIdAttributes,
'no-document-query-selector-in-vue': noDocumentQuerySelectorInVue,
'no-direct-selection-tool-state-mutation': noDirectSelectionToolStateMutation,

View file

@ -113,6 +113,8 @@
"open-pencil/no-structuredclone-scene-arrays": "error",
"open-pencil/no-vue-style-blocks": "error",
"open-pencil/no-raw-test-id-string-props": "error",
"open-pencil/no-dynamic-data-test-id-in-vue": "error",
"open-pencil/no-test-id-helper-bind-in-vue": "error",
"open-pencil/no-invalid-test-id-attributes": "error",
"open-pencil/no-document-query-selector-in-vue": "error",
"open-pencil/no-direct-selection-tool-state-mutation": "error",