1
0
mirror of synced 2024-11-25 23:06:02 +03:00
vue-formulario/test/unit/FormularioField.test.js

346 lines
12 KiB
JavaScript
Raw Normal View History

import Vue from 'vue'
2020-05-22 14:22:16 +03:00
import flushPromises from 'flush-promises'
import { mount } from '@vue/test-utils'
2020-10-09 22:58:28 +03:00
import Formulario from '@/index.ts'
import FormularioField from '@/FormularioField.vue'
import FormularioForm from '@/FormularioForm.vue'
2020-05-22 14:22:16 +03:00
const globalRule = jest.fn(() => false)
2020-05-22 14:22:16 +03:00
Vue.use(Formulario, {
validationRules: { globalRule },
validationMessages: {
required: () => 'required',
'in': () => 'in',
min: () => 'min',
globalRule: () => 'globalRule',
},
2020-05-22 14:22:16 +03:00
})
describe('FormularioField', () => {
it('Allows custom field-rule level validation strings', async () => {
const wrapper = mount(FormularioField, {
2020-05-22 14:22:16 +03:00
propsData: {
name: 'test',
value: 'other value',
2020-05-22 14:22:16 +03:00
validation: 'required|in:abcdef',
validationMessages: { in: 'the value was different than expected' },
validationBehavior: 'live',
2020-05-22 14:22:16 +03:00
},
scopedSlots: {
default: `<div><span v-for="violation in props.context.violations">{{ violation.message }}</span></div>`
2020-10-09 22:58:28 +03:00
},
2020-05-22 14:22:16 +03:00
})
await flushPromises()
expect(wrapper.find('span').text()).toBe('the value was different than expected')
})
it('No validation on created when validationBehavior is not live', async () => {
const wrapper = mount(FormularioField, {
propsData: {
name: 'test',
validation: 'required|in:abcdef',
validationMessages: {in: 'the value was different than expected'},
value: 'other value'
},
scopedSlots: {
default: `<div><span v-for="error in props.context.violations">{{ error.message }}</span></div>`
}
})
await flushPromises()
expect(wrapper.find('span').exists()).toBe(false)
})
it('No validation on value change when validationBehavior is "submit"', async () => {
const wrapper = mount(FormularioField, {
propsData: {
name: 'test',
validation: 'required|in:abcdef',
validationMessages: {in: 'the value was different than expected'},
validationBehavior: 'submit',
value: 'Initial'
},
scopedSlots: {
default: `<div>
<input type="text" v-model="props.context.model">
<span v-for="error in props.context.violations">{{ error.message }}</span>
</div>`
}
})
await flushPromises()
expect(wrapper.find('span').exists()).toBe(false)
wrapper.find('input[type="text"]').element['value'] = 'Test'
wrapper.find('input[type="text"]').trigger('change')
await flushPromises()
expect(wrapper.find('input[type="text"]').element['value']).toBe('Test')
expect(wrapper.find('span').exists()).toBe(false)
})
it('Allows custom field-rule level validation functions', async () => {
const wrapper = mount(FormularioField, {
2020-05-22 14:22:16 +03:00
propsData: {
name: 'test',
validation: 'required|in:abcdef',
validationMessages: { in: ({ value }) => `The string ${value} is not correct.` },
validationBehavior: 'live',
2020-05-22 14:22:16 +03:00
value: 'other value'
},
scopedSlots: {
default: `<div><span v-for="error in props.context.violations">{{ error.message }}</span></div>`
2020-05-22 14:22:16 +03:00
}
})
await flushPromises()
expect(wrapper.find('span').text()).toBe('The string other value is not correct.')
})
it('No validation on created when validationBehavior is default', async () => {
const wrapper = mount(FormularioField, {
2020-10-18 20:45:18 +03:00
propsData: {
name: 'test',
validation: 'required|in:abcdef',
validationMessages: { in: 'the value was different than expected' },
2020-10-18 20:45:18 +03:00
value: 'other value'
},
scopedSlots: {
default: `<div><span v-for="error in props.context.violations">{{ error.message }}</span></div>`
2020-10-18 20:45:18 +03:00
}
})
await flushPromises()
expect(wrapper.find('span').exists()).toBe(false)
})
it('Uses custom async validation rules on defined on the field', async () => {
const wrapper = mount(FormularioField, {
2020-05-22 14:22:16 +03:00
propsData: {
name: 'test',
validation: 'required|foobar',
validationRules: { foobar: async ({ value }) => value === 'foo' },
validationMessages: { foobar: 'failed the foobar check' },
validationBehavior: 'live',
2020-05-22 14:22:16 +03:00
value: 'bar'
},
scopedSlots: {
default: `<div><span v-for="error in props.context.violations">{{ error.message }}</span></div>`
2020-05-22 14:22:16 +03:00
}
})
await flushPromises()
expect(wrapper.find('span').text()).toBe('failed the foobar check')
})
it('Uses custom sync validation rules on defined on the field', async () => {
const wrapper = mount(FormularioField, {
2020-05-22 14:22:16 +03:00
propsData: {
name: 'test',
value: 'bar',
2020-05-22 14:22:16 +03:00
validation: 'required|foobar',
validationRules: { foobar: ({ value }) => value === 'foo' },
validationMessages: { foobar: 'failed the foobar check' },
validationBehavior: 'live',
2020-05-22 14:22:16 +03:00
},
scopedSlots: {
default: `<div><span v-for="error in props.context.violations">{{ error.message }}</span></div>`
2020-05-22 14:22:16 +03:00
}
})
await flushPromises()
expect(wrapper.find('span').text()).toBe('failed the foobar check')
})
it('uses global custom validation rules', async () => {
mount(FormularioField, {
2020-05-22 14:22:16 +03:00
propsData: {
name: 'test',
value: 'bar',
2020-05-22 14:22:16 +03:00
validation: 'required|globalRule',
validationBehavior: 'live',
},
2020-05-22 14:22:16 +03:00
})
await flushPromises()
expect(globalRule.mock.calls.length).toBe(1)
})
it('emits correct validation event', async () => {
const wrapper = mount(FormularioField, {
2020-10-09 22:58:28 +03:00
propsData: {
name: 'fieldName',
value: '',
validation: 'required',
validationBehavior: 'live',
},
2020-10-09 22:58:28 +03:00
})
2020-05-22 14:22:16 +03:00
await flushPromises()
expect(wrapper.emitted('validation')).toEqual([[{
name: 'fieldName',
violations: [{
rule: expect.stringContaining('required'),
args: expect.any(Array),
context: expect.any(Object),
message: expect.any(String),
}],
}]])
2020-05-22 14:22:16 +03:00
})
test.each([
['bail|required|in:xyz', 1],
['^required|in:xyz|min:10,length', 1],
['required|^in:xyz|min:10,length', 2],
['required|in:xyz|bail', 2],
])('prevents further validation if not passed a rule with bail modifier', async (
validation,
expectedViolationsCount
) => {
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>
`
2020-05-22 14:22:16 +03:00
})
await flushPromises()
2020-05-22 14:22:16 +03:00
expect(wrapper.findAll('[data-violation]').length).toBe(expectedViolationsCount)
2020-05-22 14:22:16 +03:00
})
it('proceeds validation if passed a rule with bail modifier', async () => {
const wrapper = mount({
template: `
<FormularioField
name="test"
value="123"
validation="^required|in:xyz|min:10,length"
validation-behavior="live"
v-slot="{ context }"
>
<div v-for="(_, index) in context.violations" :key="index" data-violation />
</FormularioField>
`
2020-05-22 14:22:16 +03:00
})
await flushPromises()
expect(wrapper.findAll('[data-violation]').length).toBe(2)
2020-05-22 14:22:16 +03:00
})
it('Displays errors when validation-behavior is submit and form is submitted', async () => {
2020-05-22 14:22:16 +03:00
const wrapper = mount(FormularioForm, {
propsData: { name: 'test' },
2020-05-22 14:22:16 +03:00
slots: {
default: `
<FormularioField
v-slot="{ context }"
name="testinput"
validation="required"
validation-behavior="submit"
>
<span v-for="error in context.violations">{{ error.message }}</span>
</FormularioField>
2020-05-22 14:22:16 +03:00
`
}
})
2020-10-18 20:45:18 +03:00
await flushPromises()
expect(wrapper.find('span').exists()).toBe(false)
2020-05-22 14:22:16 +03:00
wrapper.trigger('submit')
2020-10-18 20:45:18 +03:00
await flushPromises()
2020-05-22 14:22:16 +03:00
expect(wrapper.find('span').exists()).toBe(true)
})
it('Model getter for input', async () => {
const wrapper = mount({
data: () => ({ values: { test: 'abcd' } }),
template: `
<FormularioForm v-model="values">
<FormularioField v-slot="{ context }" :model-get-converter="onGet" name="test" >
<span>{{ context.model }}</span>
</FormularioField>
</FormularioForm>
`,
methods: {
onGet(source) {
if (!(source instanceof Date)) {
return 'invalid date'
}
return source.getDate()
}
}
})
await flushPromises()
expect(wrapper.find('span').text()).toBe('invalid date')
wrapper.vm.values = { test: new Date('1995-12-17') }
await flushPromises()
expect(wrapper.find('span').text()).toBe('17')
})
it('Model setter for input', async () => {
const wrapper = mount({
data: () => ({ values: { date: 'not a date' } }),
template: `
<FormularioForm v-model="values">
<FormularioField
v-slot="{ context }"
:model-get-converter="onGet"
:model-set-converter="onSet"
name="date"
>
<input type="text" v-model="context.model">
</FormularioField>
</FormularioForm>
`,
methods: {
onGet (source) {
return source instanceof Date ? source.getDate() : source
},
onSet (source) {
if (source instanceof Date) {
return source
}
if (isNaN(source)) {
return undefined
}
const result = new Date('2001-05-01')
result.setDate(source)
return result
},
}
})
await flushPromises()
expect(wrapper.vm.values.date).toBe(undefined)
wrapper.find('input[type="text"]').element['value'] = '12'
wrapper.find('input[type="text"]').trigger('input')
await flushPromises()
expect(wrapper.vm.values.date.toISOString()).toBe(
(new Date('2001-05-12')).toISOString()
)
})
2020-05-22 14:22:16 +03:00
})