1
0
mirror of synced 2024-11-22 13:26:06 +03:00

test: Improved test for validation interruption & code style

This commit is contained in:
Zaytsev Kirill 2021-05-24 20:07:28 +03:00
parent 4c3274e621
commit e55ea0c410

View File

@ -3,8 +3,8 @@ import flushPromises from 'flush-promises'
import { mount } from '@vue/test-utils' import { mount } from '@vue/test-utils'
import Formulario from '@/index.ts' import Formulario from '@/index.ts'
import FormularioForm from '@/FormularioForm.vue'
import FormularioField from '@/FormularioField.vue' import FormularioField from '@/FormularioField.vue'
import FormularioForm from '@/FormularioForm.vue'
const globalRule = jest.fn(() => false) const globalRule = jest.fn(() => false)
@ -151,32 +151,32 @@ describe('FormularioField', () => {
expect(wrapper.find('span').text()).toBe('failed the foobar check') expect(wrapper.find('span').text()).toBe('failed the foobar check')
}) })
it('Uses global custom validation rules', async () => { it('uses global custom validation rules', async () => {
const wrapper = mount(FormularioField, { mount(FormularioField, {
propsData: { propsData: {
name: 'test', name: 'test',
value: 'bar', value: 'bar',
validation: 'required|globalRule', validation: 'required|globalRule',
validationBehavior: 'live', validationBehavior: 'live',
} },
}) })
await flushPromises() await flushPromises()
expect(globalRule.mock.calls.length).toBe(1) expect(globalRule.mock.calls.length).toBe(1)
}) })
it('Emits correct validation event', async () => { it('emits correct validation event', async () => {
const wrapper = mount(FormularioField, { const wrapper = mount(FormularioField, {
propsData: { propsData: {
name: 'fieldName', name: 'fieldName',
value: '', value: '',
validation: 'required', validation: 'required',
validationBehavior: 'live', validationBehavior: 'live',
} },
}) })
await flushPromises() await flushPromises()
expect(wrapper.emitted('validation')).toBeTruthy() expect(wrapper.emitted('validation')).toEqual([[{
expect(wrapper.emitted('validation')[0][0]).toEqual({
name: 'fieldName', name: 'fieldName',
violations: [{ violations: [{
rule: expect.stringContaining('required'), rule: expect.stringContaining('required'),
@ -184,68 +184,55 @@ describe('FormularioField', () => {
context: expect.any(Object), context: expect.any(Object),
message: expect.any(String), message: expect.any(String),
}], }],
}) }]])
}) })
it('Can bail on validation when encountering the bail rule', async () => { test.each([
const wrapper = mount(FormularioField, { ['bail|required|in:xyz', 1],
propsData: { ['^required|in:xyz|min:10,length', 1],
name: 'test', ['required|^in:xyz|min:10,length', 2],
validation: 'bail|required|in:xyz', ['required|in:xyz|bail', 2],
validationBehavior: 'live', ])('prevents further validation if not passed a rule with bail modifier', async (
}, validation,
}) expectedViolationsCount
await flushPromises(); ) => {
expect(wrapper.vm.context.violations.length).toBe(1); const wrapper = mount({
data: () => ({ validation }),
template: `
<FormularioField
name="test"
:validation="validation"
validation-behavior="live"
v-slot="{ context }"
>
<div v-for="(_, index) in context.violations" :key="index" data-violation />
</FormularioField>
`
}) })
it('Can show multiple validation errors if they occur before the bail rule', async () => { await flushPromises()
const wrapper = mount(FormularioField, {
propsData: { expect(wrapper.findAll('[data-violation]').length).toBe(expectedViolationsCount)
name: 'test',
validation: 'required|in:xyz|bail',
validationBehavior: 'live',
},
})
await flushPromises();
expect(wrapper.vm.context.violations.length).toBe(2);
}) })
it('Can avoid bail behavior by using modifier', async () => { it('proceeds validation if passed a rule with bail modifier', async () => {
const wrapper = mount(FormularioField, { const wrapper = mount({
propsData: { template: `
name: 'test', <FormularioField
value: '123', name="test"
validation: '^required|in:xyz|min:10,length', value="123"
validationBehavior: 'live', validation="^required|in:xyz|min:10,length"
}, validation-behavior="live"
}) v-slot="{ context }"
await flushPromises(); >
expect(wrapper.vm.context.violations.length).toBe(2); <div v-for="(_, index) in context.violations" :key="index" data-violation />
</FormularioField>
`
}) })
it('Prevents later error messages when modified rule fails', async () => { await flushPromises()
const wrapper = mount(FormularioField, {
propsData: {
name: 'test',
validation: '^required|in:xyz|min:10,length',
validationBehavior: 'live',
},
})
await flushPromises();
expect(wrapper.vm.context.violations.length).toBe(1);
})
it('can bail in the middle of the rule set with a modifier', async () => { expect(wrapper.findAll('[data-violation]').length).toBe(2)
const wrapper = mount(FormularioField, {
propsData: {
name: 'test',
validation: 'required|^in:xyz|min:10,length',
validationBehavior: 'live',
},
})
await flushPromises();
expect(wrapper.vm.context.violations.length).toBe(2);
}) })
it('Displays errors when validation-behavior is submit and form is submitted', async () => { it('Displays errors when validation-behavior is submit and form is submitted', async () => {
@ -307,44 +294,52 @@ describe('FormularioField', () => {
it('Model setter for input', async () => { it('Model setter for input', async () => {
const wrapper = mount({ const wrapper = mount({
data: () => ({ values: { test: 'abcd' } }), data: () => ({ values: { date: 'not a date' } }),
template: ` template: `
<FormularioForm v-model="values"> <FormularioForm v-model="values">
<FormularioField v-slot="{ context }" :model-get-converter="onGet" :model-set-converter="onSet" name="test" > <FormularioField
v-slot="{ context }"
:model-get-converter="onGet"
:model-set-converter="onSet"
name="date"
>
<input type="text" v-model="context.model"> <input type="text" v-model="context.model">
</FormularioField> </FormularioField>
</FormularioForm> </FormularioForm>
`, `,
methods: { methods: {
onGet(source) { onGet (source) {
if (!(source instanceof Date)) { return source instanceof Date ? source.getDate() : source
return source
}
return source.getDate()
}, },
onSet(source) {
onSet (source) {
if (source instanceof Date) { if (source instanceof Date) {
return source return source
} }
if (isNaN(source)) { if (isNaN(source)) {
return undefined return undefined
} }
let result = new Date('2001-05-01') const result = new Date('2001-05-01')
result.setDate(source) result.setDate(source)
return result return result
} },
} }
}) })
await flushPromises() await flushPromises()
expect(wrapper.vm.values.test).toBe(undefined)
expect(wrapper.vm.values.date).toBe(undefined)
wrapper.find('input[type="text"]').element['value'] = '12' wrapper.find('input[type="text"]').element['value'] = '12'
wrapper.find('input[type="text"]').trigger('input') wrapper.find('input[type="text"]').trigger('input')
await flushPromises() await flushPromises()
expect(wrapper.vm.values.test.toISOString()).toBe((new Date('2001-05-12')).toISOString())
expect(wrapper.vm.values.date.toISOString()).toBe(
(new Date('2001-05-12')).toISOString()
)
}) })
}) })