Unit and Integration Testing of React/Redux Forms

Mar 25, 2024
/
13 min read
Unit and Integration Testing of React/Redux Forms
Alyona Pysarenko
Alyona Pysarenko
Frontend Engineer

After seeing the amazing feedback and requests that followed my latest article on What and How to Test with Jest and Enzyme, I’d love to share a couple of other test cases. Today, we’ll talk about testing React forms that are connected with Redux, considering both unit and integration testing. Hopefully, you’ll find something useful below.

By the way, Django Stars specialists have deep expertise in both software development and testing. Check out our case studies to learn more.

Unit vs. Integration Testing

Before we dive deep into the subject, let’s make sure we all understand the basics. There are many different types of app testing, but a 2018 survey shows that automated unit and integration tests are at the top of the list.
Unit and Integration Testing of React/Redux Forms 1
For a better comparison, I’m only picking the two main automated testing methods. Let’s look at the definitions and characteristics of unit and integration testing:
Unit and Integration Testing of React/Redux Forms 2

Test Preparations: Form Review

Before you start any job, you want to know all about it. You don’t want any surprises, and you do want the best results. This is also true for testing. Which is why it’s better to get all the available information on the form that should be tested, and its related conditions beforehand. And, of course, to make sure you know what exactly should be tested.

To show you how it goes, I chose a form that contains information on Property Evaluation. It’s a form that customers fill in to describe the property they would like to purchase. It’s quite simple – it doesn’t have any complex logic or mandatory fields, and a few fields to fill in.

Check out the image below:
Unit and Integration Testing of React/Redux Forms 3

The only logic you can’t see in the image are different fields that are set depending on the choice in the `Property type` field. For instance:

  • If a customer chooses ‘Apartment’, they get options like ‘floor’, ‘parking conditions’, etc.
  • If a customer chooses ‘House’, they get options like ‘floor area’, ‘building standard’, etc.

Money Park
The first independent provider of personalized financial advice on mortgage and insurance products in Switzerland

Next, let’s dive into the form’s code. The implementation of the form is divided into two parts:

  1. Template file – listing of all fields; we can also call it ‘view’ (Code Listing of PropertySelfOwnedForm.js on github)
  2. Container file – form logic, stored in one place (Code Listing of PropertySelfOwnedFormContainer.js on github)

Testing Forms Connected with Redux

Unit and Integration Testing of React/Redux Forms 4
Depending on the type of testing, I use different processes to test forms connected with Redux.

For unit tests, I use shallow rendering (as opposed to deep tree rendering) and the Redux-mock-store library. For integration tests, I use mount rendering (deep tree rendering) and an actual Redux store.

Unit Testing of Forms Connected with Redux

As I said above, for unit testing I use shallow rendering. It’s a one-level rendering that doesn’t take into account child components inside the component in question. On top of this, the tested component doesn’t indirectly affect its child components behavior.
Redux-mock-store is a library designed to test action logic, and provides a mocked Redux store. It’s easy to launch and to use, and doesn’t affect the Redux store itself.

Before you start Redux testing, be sure to configure the form.

These are my imports:

  • Rendering method: Enzyme’s shallow renderer
  • Include mocked data required for form rendering. In the example below it is json file djangoParamsChoices, containing mocked data for select options. This data is being passed to context on the backend side and fetched on the frontend side through the custom function `getDjangoParam`.
  • Include form view itself
  • Import additional tools for store mock
  • Import additional libraries for test needs (mainly required when writing the special test case)
  • Initialize mockstore with empty state:
  • Set default props (they vary from the tested form requirements):

The form view depends on the property type; that’s why I put in default props.

  • Mock store and render form before each test:

First, configure the mock store with the help of the redux-mock-store library.

  • Configure function for execution before each test run using the ‘beforeEach’ method.


Inside the function, don’t forget to:

  1. Reset the store after every test: `store = mockStore(initialState)` returns an instance of the configured mock store.
  2. Make Wrapper HOC to pass store, defaultProps and custom props for the special test case
  3. Do the form rendering using the `.dive()` method to receive the rendered form structure one level deeper.

Without the dive() method, ShallowWrapper looks like this:


Here’s what it looks like with the dive() method: ShallowWrapperWithDiveMethod.js

Writing Tests for Unit Testing

Now, you’re ready to write the test itself. Follow my process to see how you should proceed.

Check the Form Component that’s being rendered:


Check the list of fields rendered correctly for property type ‘House’:

Create a snapshot to check the user interface for property type ‘House’:

At this point, you must be asking yourself, “Why do we need two tests for one property type, both snapshot and field existence?” Here’s why: the two tests help us check logic and UI.

  • According to the logic, we should receive an expected list of fields
  • According to the UI, we should obtain a defined order of fields with its own design.

This is what we get from the two tests:

  • No changes in field list / UI -> Two tests passed
  • No changes in field list / Changes in UI -> Snapshot test failed, i.e., the UI changed.
  • Changes in field list / Changes in UI -> Both tests failed, i.e., the logic failed (or both logic and UI), as the field list differs from what was expected.

Having gone through two tests, I see exactly what the problem was and where I should look for reasons for failure. I repeat the process with another property type – ‘Apartment’ and its expected array of fields. I follow the same steps:

Check the list of fields rendered correctly for property type ‘Apartment’:


Create a snapshot to check fields for property type ‘Apartment’:

The next test is experimental. I decided to investigate a diffing snapshot utility for Jest that one reader of my recent article suggested.

First of all, let’s see how it works. It receives two rendered components with different states or props, and outputs their difference as a string. In the example below, I created a snapshot showing the difference between the forms with different property types – ‘House and ‘Apartment’.


This kind of test has its advantages. As you can see above, it covers two snapshots and minimizes code base – thus, instead of two snapshots, you can create just one showing the difference, and similarly, only write one test instead of two. It’s quite easy to use, and lets you cover different states with one test. But, looking at my case, I got a snapshot with 2841 rows, as shown on github. With a large amount of code like this, it’s too hard to see why the test had failed and where.

This only proves one thing: whatever you work with, use your tools and libraries wisely, and only in the places that really require it. This utility may be useful for testing differences in stateless components to find UI inconsistencies, and to define differences in simple functionality components that contain minimum logical conditions. But for testing large pieces of UI, it doesn’t seem to be appropriate.

Before we wrap up the part about unit testing of forms connected with Redux, there’s one more thing. There’s a reason why I didn’t include tests for events. Let’s look at the form structure PropertySelfOwnedForm.js that includes the ButtonsToolbar.js component.


This component contains three buttons: ‘Save’, ‘Save and Next’ and ‘Next’, and is used in many forms. Shallow rendering doesn’t include child components, and at this point, I don’t care about their functionality. And rendered `ButtonsToolbar`component looks like this:

The truth is, I don’t need to test it as a part of unit form tests. I will test the button events separately in ButtonsToolbar.test.js. You can find the full tests listing here: PropertySelfOwnedFormUnit.test.js

Integration Testing of Forms Connected with Redux

For integration testing – testing components in a working environment – I use mount rendering. Mount rendering is a type of deep level rendering that includes all the child components by mounting them all into the DOM.

This kind of rendering is actually quite similar to the real DOM tree, as its components’ behavior is interconnected. And the goal of the integration testing is to check this connection. Thus, an actual Redux store is in this case a great choice.

An actual Redux store is one created with the help of a `redux` library. In this case, there’s no need to mock anything, as you can use the real store the same way as in the app.

Next, I’m configuring my form for testing React components that connect to Redux.

Here’s the list of imports:

  • Rendering method: Enzyme’s mount renderer
  • Methods from Redux for creating a store and combining reducers into a single root reducer
  • Provider from react-redux library to make store available for nested components wrapped in the connect() function
  • Router from react-router-dom to provide React Router navigation
  • Redux-form for better managing the redux state of the form
  • propertyDetailsResource is an object with namespace and endpoint
  • Include json file djangoParamsChoices, containing mocked data passed from the backend
  • Include form view itself


Then, I prepare data for testing. To do so, it’s important to keep in mind that:

  • There’s a configuration difference between defaultProps for unit and integration tests:
    • With integration tests, a resource with an actual endpoint is added to defaultProps
    • Mocked function handleSubmit is provided by the ‘redux-form’, because Redux-Form decorates the component with the handleSubmit prop
    • Three mocked functions for custom buttons submit events.
  • The store is created the same way as in the app
  • The imported form is decorated with reduxForm
  • The decorated form is wrapped by Router and Provider.

If it makes it easier for you, the sequence of data preparation for integration testing is the same as it is for actions during the form integration with Redux.


Render form before each test:

Writing Tests for Integration Testing

Now, let’s do the actual writing. The first step is to create snapshots of both property types. This means that, first, you create a snapshot to check the fields for property type House’:


Next, create a snapshot to check fields for property type ‘Apartment’:

The form buttons are disabled if the form is a pristine or in submitting state. The following test checks if the ‘Save’ button reacts to form changes and becomes active after losing the pristine state:

The last three tests check events that are called by clicking on the onSubmit, onSubmitAndNavigate, or the onNavigate button.

Check if an onSubmit event was called:


Check if an onSubmitAndNavigate event was called:

Check if an onNavigate event was called:

Full tests listing: PropertySelfOwnedFormIntegration.test.js

Now the form is fully tested, including the inside components being rendered.

To conclude, I’d like to say that both unit and integration testing are equally important. Each type of testing does its own work and has its own purpose. Dismissing one can lead to a lot of troubleshooting work in the future.

React unit testing mainly covers the user interface, while integration tests dig deeper into functionality. Some people find it redundant to do both, but I’d say both are necessary if you want your product to look good to the user, be user-friendly, and also work smoothly. Unit testing alone will never cover the most important part of the product – the interactions among components. Besides, it’s better to be safe than sorry.

When it comes to testing, forms require special attention, as forms are an essential part of many projects and a way to communicate with customers. Which is why it’s vital to be properly prepared and carefully go through all the stages – imports, mocks preparation, store creation, form decoration with Redux, and correct wrapper creation. But the tests themselves are not complicated. In most cases, they follow form logic and reflect field changes and button simulations (in the case of integration testing).

Thank you for your time. I look forward to reading your feedback!

If you still have questions about unit testing of Redux components or are looking for an experienced team to develop and test your product at a professional level, let us know. Our specialists will gladly provide you with the advice and assistance you need.

Thank you for your message. We’ll contact you shortly.

Frequently Asked Questions
How do you test a Redux component?
Testing a Redux component involves testing both the component's behavior and its interactions with the Redux store. There are many different types of app testing, but automated unit and integration tests are at the top of the list. It's also important to get all the available information on the form that should be tested and its related conditions beforehand.
Why is it important to test Redux forms?
When it comes to testing, forms require special attention, as forms are an essential part of many projects and a way to communicate with customers. Which is why it’s vital to be properly prepared and carefully go through all the stages – imports, mocks preparation, store creation, form decoration with Redux, and correct wrapper creation.
Which is more suitable for integration and functional testing?
Depending on the type of testing, I use different processes to test forms connected with Redux. For unit tests, I use shallow rendering (as opposed to deep tree rendering) and the Redux-mock-store library. For integration tests, I use mount rendering (deep tree rendering) and an actual Redux store.
What is the difference between unit testing and integration testing?
Unit testing is focused on testing individual units of code or modules in isolation, while integration testing is focused on testing how several modules work together. Both testing types are important for ensuring the reliability and stability of a software application and are usually used in combination to provide a comprehensive testing strategy.
Which is better unit testing or integration testing for web development?
Both unit and integration testing are essential for web development and should be used in combination to provide a comprehensive testing strategy. Unit testing is helpful for catching bugs early in the development process and for ensuring that individual units of code are working as expected. Integration testing, on the other hand, is important for catching integration bugs and for ensuring that the entire application is working as expected in a production-like environment.

Have an idea? Let's discuss!

Contact Us
Rate this article!
0 ratings, average: 0 out of 5
Very bad
Very good

Всего комментариев: 0

Subscribe us

Latest articles right in
your inbox

Thanks for
subscribing.
We've sent a confirmation email to your inbox.

Subscribe to our newsletter

Thanks for joining us! 💚

Your email address *
By clicking “Subscribe” I allow Django Stars process my data for marketing purposes, including sending emails. To learn more about how we use your data, read our Privacy Policy .
We’ll let you know, when we got something for you.