2019-10-31 17:24:18 +03:00
|
|
|
|
import Vue from 'vue'
|
|
|
|
|
import { mount, shallowMount } from '@vue/test-utils'
|
|
|
|
|
import flushPromises from 'flush-promises'
|
2019-11-01 23:08:18 +03:00
|
|
|
|
import Formulate from '../src/Formulate.js'
|
2020-02-26 01:32:40 +03:00
|
|
|
|
import FormSubmission from '../src/FormSubmission.js'
|
2019-11-01 23:01:42 +03:00
|
|
|
|
import FormulateForm from '@/FormulateForm.vue'
|
|
|
|
|
import FormulateInput from '@/FormulateInput.vue'
|
2019-10-31 17:24:18 +03:00
|
|
|
|
|
|
|
|
|
Vue.use(Formulate)
|
|
|
|
|
|
|
|
|
|
describe('FormulateForm', () => {
|
|
|
|
|
it('render a form DOM element', () => {
|
|
|
|
|
const wrapper = mount(FormulateForm)
|
|
|
|
|
expect(wrapper.find('form').exists()).toBe(true)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('accepts a default slot', () => {
|
|
|
|
|
const wrapper = mount(FormulateForm, {
|
|
|
|
|
slots: {
|
|
|
|
|
default: '<div class="default-slot-item" />'
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
expect(wrapper.find('form div.default-slot-item').exists()).toBe(true)
|
|
|
|
|
})
|
|
|
|
|
|
2020-02-26 18:11:34 +03:00
|
|
|
|
|
2019-10-31 17:24:18 +03:00
|
|
|
|
it('intercepts submit event', () => {
|
|
|
|
|
const formSubmitted = jest.fn()
|
|
|
|
|
const wrapper = mount(FormulateForm, {
|
|
|
|
|
slots: {
|
|
|
|
|
default: "<button type='submit' />"
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
formSubmitted
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
wrapper.find('form').trigger('submit')
|
|
|
|
|
expect(formSubmitted).toBeCalled()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('registers its subcomponents', () => {
|
|
|
|
|
const wrapper = mount(FormulateForm, {
|
|
|
|
|
propsData: { formulateValue: { testinput: 'has initial value' } },
|
|
|
|
|
slots: { default: '<FormulateInput type="text" name="subinput1" /><FormulateInput type="checkbox" name="subinput2" />' }
|
|
|
|
|
})
|
|
|
|
|
expect(Object.keys(wrapper.vm.registry)).toEqual(['subinput1', 'subinput2'])
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('can set a field’s initial value', () => {
|
|
|
|
|
const wrapper = mount(FormulateForm, {
|
|
|
|
|
propsData: { formulateValue: { testinput: 'has initial value' } },
|
|
|
|
|
slots: { default: '<FormulateInput type="text" name="testinput" />' }
|
|
|
|
|
})
|
|
|
|
|
expect(wrapper.find('input').element.value).toBe('has initial value')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('lets individual fields override form initial value', () => {
|
|
|
|
|
const wrapper = mount(FormulateForm, {
|
|
|
|
|
propsData: { formulateValue: { testinput: 'has initial value' } },
|
|
|
|
|
slots: { default: '<FormulateInput type="text" formulate-value="123" name="testinput" />' }
|
|
|
|
|
})
|
|
|
|
|
expect(wrapper.find('input').element.value).toBe('123')
|
|
|
|
|
})
|
|
|
|
|
|
2020-02-26 08:21:10 +03:00
|
|
|
|
it('lets fields set form initial value with value prop', () => {
|
|
|
|
|
const wrapper = mount({
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
formValues: {}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
template: `<FormulateForm v-model="formValues">
|
|
|
|
|
<FormulateInput name="name" value="123" />
|
|
|
|
|
</FormulateForm>`
|
|
|
|
|
})
|
|
|
|
|
expect(wrapper.vm.formValues).toEqual({ name: '123' })
|
|
|
|
|
})
|
|
|
|
|
|
2019-10-31 17:24:18 +03:00
|
|
|
|
it('receives updates to form model when individual fields are edited', () => {
|
|
|
|
|
const wrapper = mount({
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
formValues: {
|
|
|
|
|
testinput: '',
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
template: `
|
|
|
|
|
<FormulateForm v-model="formValues">
|
|
|
|
|
<FormulateInput type="text" name="testinput" />
|
|
|
|
|
</FormulateForm>
|
|
|
|
|
`
|
|
|
|
|
})
|
|
|
|
|
wrapper.find('input').setValue('edited value')
|
|
|
|
|
expect(wrapper.vm.formValues).toEqual({ testinput: 'edited value' })
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ===========================================================================
|
|
|
|
|
/**
|
|
|
|
|
* @todo in vue-test-utils version 1.0.0-beta.29 has some bugs related to
|
|
|
|
|
* synchronous updating. Some details are here:
|
|
|
|
|
*
|
2020-02-26 01:32:40 +03:00
|
|
|
|
* @update this test was re-implemented in version 1.0.0-beta.31 and seems to
|
|
|
|
|
* be workign now with flushPromises(). Leaving these docs here for now.
|
|
|
|
|
*
|
2019-10-31 17:24:18 +03:00
|
|
|
|
* https://github.com/vuejs/vue-test-utils/issues/1130
|
|
|
|
|
*
|
|
|
|
|
* This test is being commented out until there is a resolution on this issue,
|
|
|
|
|
* and instead being replaced with a mock call.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-26 01:32:40 +03:00
|
|
|
|
it('updates initial form values when input contains a populated v-model', async () => {
|
|
|
|
|
const wrapper = mount({
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
formValues: {
|
|
|
|
|
testinput: '',
|
|
|
|
|
},
|
|
|
|
|
fieldValue: '123'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
template: `
|
|
|
|
|
<FormulateForm v-model="formValues">
|
|
|
|
|
<FormulateInput type="text" name="testinput" v-model="fieldValue" />
|
|
|
|
|
</FormulateForm>
|
|
|
|
|
`
|
|
|
|
|
})
|
|
|
|
|
await flushPromises()
|
|
|
|
|
expect(wrapper.vm.formValues).toEqual({ testinput: '123' })
|
|
|
|
|
})
|
2019-10-31 17:24:18 +03:00
|
|
|
|
|
|
|
|
|
// ===========================================================================
|
|
|
|
|
|
|
|
|
|
// Replacement test for the above test - not quite as good of a test.
|
|
|
|
|
it('updates calls setFieldValue on form when a field contains a populated v-model on registration', () => {
|
|
|
|
|
const wrapper = mount(FormulateForm, {
|
|
|
|
|
propsData: {
|
|
|
|
|
formulateValue: { testinput: '123' }
|
|
|
|
|
},
|
|
|
|
|
slots: {
|
|
|
|
|
default: '<FormulateInput type="text" name="testinput" formulate-value="override-data" />'
|
|
|
|
|
}
|
|
|
|
|
})
|
2019-11-05 18:52:05 +03:00
|
|
|
|
expect(wrapper.emitted().input[wrapper.emitted().input.length - 1]).toEqual([{ testinput: 'override-data' }])
|
2019-10-31 17:24:18 +03:00
|
|
|
|
})
|
2020-02-26 01:32:40 +03:00
|
|
|
|
|
|
|
|
|
|
2020-02-26 08:21:10 +03:00
|
|
|
|
it('emits an instance of FormSubmission', async () => {
|
2020-02-26 01:32:40 +03:00
|
|
|
|
const wrapper = mount(FormulateForm, {
|
|
|
|
|
slots: { default: '<FormulateInput type="text" formulate-value="123" name="testinput" />' }
|
|
|
|
|
})
|
|
|
|
|
wrapper.find('form').trigger('submit')
|
|
|
|
|
await flushPromises()
|
|
|
|
|
expect(wrapper.emitted('submit-raw')[0][0]).toBeInstanceOf(FormSubmission)
|
|
|
|
|
})
|
|
|
|
|
|
2020-02-27 09:18:51 +03:00
|
|
|
|
it('resolves hasValidationErrors to true', async () => {
|
|
|
|
|
const wrapper = mount(FormulateForm, {
|
|
|
|
|
slots: { default: '<FormulateInput type="text" validation="required" name="testinput" />' }
|
|
|
|
|
})
|
|
|
|
|
wrapper.find('form').trigger('submit')
|
|
|
|
|
await flushPromises()
|
|
|
|
|
const submission = wrapper.emitted('submit-raw')[0][0]
|
|
|
|
|
expect(await submission.hasValidationErrors()).toBe(true)
|
|
|
|
|
})
|
2020-02-26 08:21:10 +03:00
|
|
|
|
|
|
|
|
|
it('resolves submitted form values to an object', async () => {
|
|
|
|
|
const wrapper = mount(FormulateForm, {
|
|
|
|
|
slots: { default: '<FormulateInput type="text" validation="required" name="testinput" value="Justin" />' }
|
|
|
|
|
})
|
|
|
|
|
const submission = await wrapper.vm.formSubmitted()
|
|
|
|
|
expect(submission).toEqual({testinput: 'Justin'})
|
|
|
|
|
})
|
2019-10-31 17:24:18 +03:00
|
|
|
|
})
|