Slide 1

Slide 1 text

Testing React components Andrei Picus

Slide 2

Slide 2 text

Who? andrei.picus@hootsuite.com github.com/NiGhTTraX Started with JS 10 years ago In love with TDD

Slide 3

Slide 3 text

What? 1. How to write good unit tests. 2. How to unit test a React component. 3. How to write the tests. 4. How to run the tests.

Slide 4

Slide 4 text

What’s a unit test? A test, whose result (pass or fail) depends on the correctness of only one interesting piece of behaviour.

Slide 5

Slide 5 text

Testing a client-server relation Do I ask the interface the right questions? Do I correctly handle all of the responses? Do I respond correctly to the questions? Do I try to respond to the questions? Contract C S INTERFACE Collaboration

Slide 6

Slide 6 text

The interface ● lifecycle methods ● callbacks ● public methods ● DOM event handlers

Slide 7

Slide 7 text

Inter-component communication Do I send the correct props? C Do I call the right callbacks? Do I react correctly to the new props? Do I implement the callback? API P

Slide 8

Slide 8 text

Intra-component communication Do I compute the correct state? render() Component Do I call the right callbacks? Do I render the right things? Do I implement the callback? API

Slide 9

Slide 9 text

Mocking component methods Component = React.createClass({}) Component._class.prototype .__reactAutoBindMap[method] // cb .constructor[method] // static [method] // public

Slide 10

Slide 10 text

Mocking component methods You need to do it on the component’s class before rendering.

Slide 11

Slide 11 text

Mocking children ● Mock the NodeJS module. ● Have a mixin/lib that loads a component and mock that. ● Shallow render.

Slide 12

Slide 12 text

SinonJS sinon.spy(Component, ‘updateFoo’) sinon.stub(Component, ‘render’) .returns(null) sinon.stub(Component, ‘loadChild’) .returns(null)

Slide 13

Slide 13 text

sinon-chai expect(stub) .to.have.been.called.and .to.have.been.calledWith(42);

Slide 14

Slide 14 text

Setup a component Put it into a certain state and then assert stuff on it. Don’t do two actions that mutate state in a single test => create another test where you load the component in the 2nd state

Slide 15

Slide 15 text

Running the tests Browserify (webpack doesn’t work with sinon) MochaJS ChaiJS SinonJS Karma Istanbul

Slide 16

Slide 16 text

Example config NiGhTTraX/react-test-buffet

Slide 17

Slide 17 text

That’s all folks