うまく機能する非常に基本的なお問い合わせフォームをまとめました。しかし、ユニットテストの作成を開始する必要があり、多くの問題に遭遇しました (これまでのところ、文字通りスナップショットテストに合格することしかできなかったなど)。
まず、必要なセクションをすべて入力していない場合に、送信ボタンをクリックしたときにフォームが検証メッセージをレンダリングする必要があることをテストしようとしています。
handleSubmit()
関数
を呼び出すことでこれを達成できると思いました。componentRender.find('Formik').instance().props.handleSubmit(badFormValues, { resetForm });
ただし、実行するcomponentRender.debug()
と、検証メッセージがレンダリングされません。validationSchema関数が呼び出されていないようですか?
何か特別なことをしなければならないことはありますか? 関数が機能しているように感じmapPropsToValues()
ます。状態オブジェクトを見ると、フォームに渡す値が入力されています。検証がスキップされているように見える理由がわかりませんか?
私はこれに2日間携わってきましたが、グーグルで良い例を見つけることができません(おそらく私のせいです)ので、どんな助けも大歓迎です。
参考までに、これまでのテストファイルは次のとおりです。
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: 'me@me.com',
};
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:test@test.com?subject=New partner request&body=${emailBody}`;
resetForm();
},
})(PartnerRegistrationForm);