Let’s make it a little easier to test components which have been wrapped by our Higher Order Component by exposing the underlying component. Inside of our Higher Order Component, we will assign a WrappedComponent
property to our Component that we passed in.
Instructor: [00:00] Here, I have a basic test function. In here, I create a div. I append it to the body. I create a mock function for the toggle behavior, and then I use ReactDOM render to render to that div myToggleWrapper.
[00:12] Here, I'm going to pass the toggle information I initialize onto true and pass the toggle functionality. This way, I can test that this component is functioning properly. I ensure that the div in our HTML includes on rather than off, and that when the button is clicked, the toggle function is called.
[00:35] Here's the problem that I'm having. We're failing because the toggle context that's marked as required is not provided. That's an issue because we're rendering the myToggleWrapper, which is going to give us back this wrapper, which defines context types to have the toggle context be required.
[00:53] We could get around this a couple different ways. First of all, we could simply just render the myToggleComponent, the underlying component itself, and that'll make our test pass.
[01:02] That's fine, although it's not entirely ergonomic, because people who are using our higher order component will normally only want to export the wrapped version of that component and use that render throughout their application.
[01:16] If we require that they test the functionality with the underlying component, then that requires that they will export this also. That's a pretty common pattern in Redux applications. There's another way to do this, and that would be to wrap everything in a toggle component, and then pass props to the toggle component to initialize the toggle component state.
[01:36] That's not entirely ergonomic, either. Our tests are going to fail, because currently, the toggle component doesn't support any way to initialize the state, anyway. Let's go ahead and look at another alternative way that we could do this.
[01:47] What if our higher order component were to somehow give us access to the underlying component that it represents? We could do something simple like this. We'd say wrapper.wrappedComponent equals that component that we're given.
[02:03] Then we can take that wrapped component, and on our myToggleWrapper, just reference the wrapped component, and render that instead. That will get our test to pass. This is effectively the same thing as what we had here, however this time, people aren't going to have to export the myToggleComponent themselves.
[02:20] They can simply export default this component, and then they can reference that component.wrappedComponent to make things a little bit easier for testing. This also could make things a little bit nicer if we wanted to use this in something like Storybook.
[02:34] In review, all that we really need to do to give our wrappers a reference to the wrapped component is simply take the wrapper, add a wrapped component property on it, and assign it to the component that we're given.