私は問題なく動作するかなり基本的なお問い合わせフォームをまとめました。しかし、私は今、単体テストの作成を開始する必要があり、大量の問題に遭遇しました(文字通り、これまでのところスナップショットテストに合格することができただけです)。
まず、必要なセクションすべてに入力しなかった場合に、送信ボタンをクリックしたときにフォームが検証メッセージを表示するかどうかをテストしようとしています。
handleSubmit()
関数を呼び出すことでこれを達成できると思いました。例:componentRender.find('Formik').instance().props.handleSubmit(badFormValues, { resetForm });
ただし、componentRender.debug()
を実行すると、検証メッセージが表示されません。 validationSchema関数が呼び出されていないようですか?
やらなければならない特別なことはありますか? mapPropsToValues()
関数が機能しているように感じます。フォームに渡している値が入力されている状態オブジェクトを見ると、検証がスキップされているように見える理由がわかりませんか?
私はこれに2日間滞在していて、google(おそらく私のせい)を介して良い例を見つけることができません。
参考までに、これまでのテストファイルを次に示します。
_import React from 'react';
import { shallow, mount } from 'enzyme';
import { BrowserRouter as Router } from 'react-router-dom';
import PartnerRegistrationForm from 'Components/partner-registration-form/PartnerRegistrationForm';
describe('PartnerRegistrationForm component', () => {
const formValues = {
companyName: 'some company',
countryCode: 'GB +44',
telNumber: 12345678,
selectCountry: 'United Kingdom',
postcode: 'ABC1 234',
addressSelect: '123 street',
siteName: 'blah',
siteURL: 'https://www.blah.com',
contactName: 'Me',
email: '[email protected]',
};
const componentShallow = shallow(<PartnerRegistrationForm {...formValues} />);
describe('Component Snapshot', () => {
it('should match stored snapshot', () => {
expect(componentShallow).toMatchSnapshot();
});
});
describe('Component functionality', () => {
it('should not submit if required fields are empty', () => {
const badFormValues = {
companyName: 'some company',
countryCode: 'GB +44',
telNumber: 12345678,
};
const resetForm = jest.fn();
const componentRender = mount(
<Router>
<PartnerRegistrationForm {...badFormValues} />
</Router>,
);
componentRender.find('Formik').instance().props.handleSubmit(badFormValues, { resetForm });
// console.log(componentRender.update().find('.validation-error'));
// console.log(componentRender.find('Formik').instance());
// expect(componentRender.find('.validation-error').text()).toEqual('Company Name is required');
});
});
});
_
そして、これが私のwithFormik()
関数です:
_const WrappedFormWithFormik = withFormik({
mapPropsToValues({
companyName,
countryCode,
telNumber,
selectCountry,
postcode,
addressSelect,
siteName,
siteURL,
contactName,
email,
}) {
return {
companyName: companyName || '',
countryCode: countryCode || '',
telNumber: telNumber || '',
selectCountry: selectCountry || '',
postcode: postcode || '',
addressSelect: addressSelect || '',
siteName: siteName || '',
siteURL: siteURL || '',
contactName: contactName || '',
email: email || '',
};
},
validationSchema, // This is a standard Yup.object(), just importing it from a separate file
handleSubmit: (values, { resetForm }) => {
console.log('submitting');
const {
companyName,
countryCode,
telNumber,
selectCountry,
postcode,
addressSelect,
siteName,
siteURL,
contactName,
email,
} = values;
const emailBody = `Name: ${contactName},`
+ `Email: ${email},`
+ `Company Name: ${companyName},`
+ `Country Code: ${countryCode},`
+ `Telephone Number: ${telNumber},`
+ `Country: ${selectCountry},`
+ `Postcode: ${postcode},`
+ `Address: ${addressSelect},`
+ `Website Name: ${siteName},`
+ `Website URL: ${siteURL}`;
// TODO set up actual contact submit logic
window.location.href = `mailto:[email protected]?subject=New partner request&body=${emailBody}`;
resetForm();
},
})(PartnerRegistrationForm);
_
_type="submit"
_のボタンをクリックしてフォームを送信しようとすると、機能しない場合があります
私はそれを提出させる(そして検証を実行する)唯一の方法はそれを直接シミュレーションすることでした:
_const form = wrapper.find('form');
form.simulate('submit', { preventDefault: () => {} });
_
...さらに、次のようなものを使用して、formikの非同期検証と状態変更の後にラッパーを更新する必要がある場合があります。
_setTimeout(() => {
wrapper.update();
}, 0);
_
テストが早期に終了しないように、 done()
を使用するか、非同期で待機することを忘れないでください。