npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-component-driver

v0.11.0

Published

React Test Renderer utils to aid component tests and TDD cycle.

Downloads

2,929

Readme

  • React Component Driver

** About

Think about this package as friendly guide to help you black-box test React components. It evolved from real world experience writing applications in Angular, React, and React Native. It's a collection of best practices converted to a thin layer of utility functions.

** Overview

*** Rendering to JSON

Main concept that all utilities are built on is simple JSON tree derived (rendered) from React elements. At the core we have functions =render= and =toJSON=.

#+BEGIN_SRC js const assert = require('assert'); const {render, toJSON} = require('react-component-driver');

const json = toJSON(render(Wix));

assert.deepEqual(json, { type: 'a', props: { href: 'wix.com' }, children: [ 'Wix' ] }); #+END_SRC

There is also a =renderComponent= helper which accepts component class or function and props.

#+BEGIN_SRC js function Link({href, text}) { return {text}; }

const json = toJSON(renderComponent(Link, {href: 'wix.com', text: 'Wix'}));

assert.deepEqual(json, { type: 'a', props: { href: 'wix.com' }, children: [ 'Wix' ] }); #+END_SRC

*** Querying

To improve on snapshot testing we need to be able to assert on parts of component tree. There are multiple utilities that allow to filter JSON tree nodes.

Most general is =filterBy=.

#+BEGIN_SRC js function Links({hrefs}) { return {hrefs.map(([href, text]) => {text})}; }

const json = toJSON(renderComponent(Links, {hrefs: [ ['wix.com', 'Wix'], ['deviantart.com', 'DeviantArt'], ['flok.com', 'Flok'] ]}));

const result = filterBy((node) => node.props && node.props.href === 'wix.com', json);

assert.deepEqual(result, [{ type: 'a', props: { href: 'wix.com' }, children: [ 'wix.com' ] }]); #+END_SRC

Be aware that nodes that =filterBy= passes to filtering predicate can be =null= or of =string= type besides full nodes with type, props and children.

Two more filtering functions are available out of the box. Both of them based on =filterBy= -- =filterByTestID= and =filterByType=.

=filterByTestID= can find nodes that have prop =testID= (React Native) or =data-test-id= (React on Web) matching exact value or regular expression.

#+BEGIN_SRC js filterByTestID('exact-test-id', tree); filterByTestID(/^list-item-[0-9]+$/, tree); #+END_SRC

=filterByType= does exactly what you think -- filters by =type= field.

#+BEGIN_SRC js filterByType('a', tree); #+END_SRC

There is also another predefined helper =getTextNodes=. It allows to extract all text leaves.

#+BEGIN_SRC js

const json = toJSON(renderComponent(Links, {hrefs: [ ['wix.com', 'Wix'], ['deviantart.com', 'DeviantArt'], ['flok.com', 'Flok'] ]}));

const strings = getTextNodes(json);

assert.deepEqual(strings, [ 'Wix', 'DeviantArt', 'Flok' ]); #+END_SRC

*** Abstraction using Component Driver

It is beneficial to abstract queries as functions with descriptive names. Let's revisit example from before:

#+BEGIN_SRC js function Links({hrefs}) { return {hrefs.map(([href, text]) => {text})}; }

const json = toJSON(renderComponent(Links, {hrefs: [ ['wix.com', 'Wix'], ['deviantart.com', 'DeviantArt'], ['flok.com', 'Flok'] ]}));

const result = filterBy((node) => node.props && node.props.href === 'wix.com', json);

assert.ok(!!result[0], 'Has wix.com link.'); #+END_SRC

=ComponentDriver= can help make intention of above code clearer.

#+BEGIN_SRC js const {ComponentDriver} = require('react-component-driver');

class LinksDriver extends ComponentDriver { constructor() { super(Links); } hasWixLink() { return !!this.getBy((node) => node.props && node.props.href === 'wix.com'); } }

const hrefs = [['wix.com', 'Wix'], ['deviantart.com', 'DeviantArt'], ['flok.com', 'Flok']];

assert.ok(new LinksDriver().setProps({hrefs}).hasWixLink(), 'Has wix.com link.'); #+END_SRC

There is also a function interface if you prefer.

#+BEGIN_SRC js const {componentDriver} = require('react-component-driver');

function links() { return componentDriver(Links, { hasWixLink() { return !!this.getBy((node) => node.props && node.props.href === 'wix.com'); } }); }

assert.ok(links().setProps({hrefs}).hasWixLink(), 'Has wix.com link.'); #+END_SRC

=ComponentDriver= exposes methods similar to the ones described in Querying section. These methods are =filterBy=, =filterByType=, =filterByID=. There are also corresponding methods that return first matched node -- =getBy=, =getByType=, =getByID=. In addition, there is =getComponent= to retrieve root node, =render= -- to invoke =getComponent=, i.e. start React life-cycle, but discard result. =unmount= to initiate unmounting. To set props for rendering, use =setProps=. It's possible to attach driver to pre-rendered tree or sub-tree by using =attachTo= method.

Let's study example below to see example usages of =ComponentDriver= API.

**** Example Component: List of Links

We are going to define to components -- a link and a list of links.

#+BEGIN_SRC js class Link extends React.PureComponent { onPress = () => this.props.onPress(this.props.url); render() { return ( {this.props.title} ); } } #+END_SRC

=List= component depends on React Native =Linking= service and we make it clear by we declaring it as parameter. This will allow use to write tests and not depend on side effects.

#+BEGIN_SRC js const links = (Linking) => class Links extends React.PureComponent { keyExtractor = (link) => link.url; renderLink = (data) => <Link testID={'link-' + data.item.index} onPress={this.onLinkPress} url={data.item.url} text={data.item.title}/>; onLinkPress = (url) => Linking.openURL(url); render() { return ( ); } }; #+END_SRC

**** Link Test Driver

#+BEGIN_SRC js class LinkDriver extends ComponentDriver { constructor() { super(Link); } getTitle() { return getTextNodes(this.getComponent()).join(''); } tap() { this.getComponent().props.onPress(); } } #+END_SRC

**** Links Test Driver

Here you can find example of =attachTo=. Reusing =LinkDriver= removes dependency on concrete =Link= implementation.

#+BEGIN_SRC js class LinksDriver extends ComponentDriver { constructor(Linking) { super(links(Linking)); } getLinks() { return this.filterByID(/^link-[0-9]+$/) .map(link => new LinkDriver().attachTo(link)); } getLinkTitles() { return this.getLinks().map(link => link.getTitle()); } tapLink(title) { for (const link of this.getLinks()) { if (link.getTitle() === title) { link.tap(); break; } } return this; } } #+END_SRC

**** Integration Tests

=Link= tests are relatively simple as it's pure component and behaviour depends completely on what is passed via props.

#+BEGIN_SRC js describe('Link', () => { it('should render title', () => { const drv = new LinkDriver().setProps({title: 'A Link'}); expect(drv.getTitle()).to.equal('A Link'); });

it('should open URL on press', () => { const onPress = sinon.spy(); new LinkDriver() .setProps({url: 'wix://contacts/contact/123', onPress}) .tap(); expect(onPress).to.be.calledWith('wix://contacts/contact/123'); }); }); #+END_SRC

=Links= is a lot more interesting. It depends on a =Linking= service which has side-effects. Moreover, =LinksDriver= uses =LinkDriver= to query and control embedded =Link= components.

#+BEGIN_SRC js describe('Links', () => { const links = [{url: 'wix://a', title: 'A'}, {url: 'wix://b', title: 'B'}]; let Linking;

beforeEach(() => Linking = sinon.stub(require('react-native').Linking));

it('should render links', () => { const drv = new LinksDriver().setProps({links}); expect(drv.getLinkTitles()).to.deep.equal(['A', 'B']); });

it('should open URL on press', () => { new LinksDriver(Linking).setProps({links}).tapLink('A'); expect(Linking.openURL).to.be.calledWith('wix://a') }); }); #+END_SRC

** API

Detailed [[file:API.md][API]].