From c208016a43aa42224c21eb4ae29b4897189f759b Mon Sep 17 00:00:00 2001 From: igor Date: Tue, 26 Dec 2017 18:44:36 +0200 Subject: [PATCH] Refactor test-bodies --- addons/storyshots/src/angular/loader.js | 1 + addons/storyshots/src/angular/renderTree.js | 61 +++++++++++++ addons/storyshots/src/index.js | 18 ++-- addons/storyshots/src/react/loader.js | 1 + addons/storyshots/src/react/renderTree.js | 10 +++ addons/storyshots/src/react/test-bodies.js | 14 +++ addons/storyshots/src/rn/loader.js | 2 + addons/storyshots/src/test-bodies.js | 99 ++++----------------- 8 files changed, 112 insertions(+), 94 deletions(-) create mode 100644 addons/storyshots/src/angular/renderTree.js create mode 100644 addons/storyshots/src/react/renderTree.js create mode 100644 addons/storyshots/src/react/test-bodies.js diff --git a/addons/storyshots/src/angular/loader.js b/addons/storyshots/src/angular/loader.js index 14de8b4d4cb..6c84e35b5b8 100644 --- a/addons/storyshots/src/angular/loader.js +++ b/addons/storyshots/src/angular/loader.js @@ -28,6 +28,7 @@ function load(options) { runWithRequireContext(content, contextOpts); return { + renderTree: require('./renderTree').default, framework: 'angular', storybook, }; diff --git a/addons/storyshots/src/angular/renderTree.js b/addons/storyshots/src/angular/renderTree.js new file mode 100644 index 00000000000..f871d495faa --- /dev/null +++ b/addons/storyshots/src/angular/renderTree.js @@ -0,0 +1,61 @@ +import 'jest-preset-angular/setupJest'; +import AngularSnapshotSerializer from 'jest-preset-angular/AngularSnapshotSerializer'; +import HTMLCommentSerializer from 'jest-preset-angular/HTMLCommentSerializer'; +import { TestBed } from '@angular/core/testing'; +import { NO_ERRORS_SCHEMA } from '@angular/core'; +import { addSerializer } from 'jest-specific-snapshot'; +import { createAnnotatedComponent } from './helpers'; + +addSerializer(HTMLCommentSerializer); +addSerializer(AngularSnapshotSerializer); + +function getRenderedTree(story, context) { + const storyElement = story.render(context); + + const { + // props, + // component, + moduleMetadata = { imports: [], schemas: [], declarations: [], providers: [] }, + } = storyElement; + + const moduleMeta = { + imports: [], + schemas: [], + declarations: [], + providers: [], + ...moduleMetadata, + }; + + const { component: annotatedComponent } = createAnnotatedComponent(storyElement); + + TestBed.configureTestingModule({ + imports: [...moduleMeta.imports], + declarations: [annotatedComponent, ...moduleMeta.declarations], + providers: [...moduleMeta.providers], + schemas: [NO_ERRORS_SCHEMA, ...moduleMeta.schemas], + }); + + // this is async. Should be somehow called in beforeEach + TestBed.compileComponents(); + + const tree = TestBed.createComponent(annotatedComponent); + tree.detectChanges(); + + return tree; + + // TestBed.configureTestingModule({ + // imports: [...moduleMeta.imports], + // declarations: [component, ...moduleMeta.declarations], + // providers: [...moduleMeta.providers], + // schemas: [NO_ERRORS_SCHEMA, ...moduleMeta.schemas], + // }); + // + // TestBed.compileComponents(); + // + // const tree = TestBed.createComponent(component); + // tree.detectChanges(); + // + // return tree; +} + +export default getRenderedTree; diff --git a/addons/storyshots/src/index.js b/addons/storyshots/src/index.js index 1683d78d2f0..fe169f0106a 100644 --- a/addons/storyshots/src/index.js +++ b/addons/storyshots/src/index.js @@ -1,27 +1,24 @@ /* eslint-disable no-loop-func */ - import fs from 'fs'; import glob from 'glob'; import global, { describe, it } from 'global'; - import addons from '@storybook/addons'; - import loadFramework from './frameworkLoader'; import createChannel from './storybook-channel-mock'; -import { snapshotWithOptions } from './test-bodies'; import { getPossibleStoriesFiles, getSnapshotFileName } from './utils'; +import { multiSnapshotWithOptions, snapshotWithOptions, snapshot } from './test-bodies'; +import { shallowSnapshot, renderOnly } from './react/test-bodies'; + +global.STORYBOOK_REACT_CLASSES = global.STORYBOOK_REACT_CLASSES || {}; export { + getSnapshotFileName, snapshot, multiSnapshotWithOptions, snapshotWithOptions, shallowSnapshot, renderOnly, -} from './test-bodies'; - -export { getSnapshotFileName }; - -global.STORYBOOK_REACT_CLASSES = global.STORYBOOK_REACT_CLASSES || {}; +}; export default function testStorySnapshots(options = {}) { if (typeof describe !== 'function') { @@ -30,7 +27,7 @@ export default function testStorySnapshots(options = {}) { addons.setChannel(createChannel()); - const { framework, storybook } = loadFramework(options); + const { framework, storybook, renderTree } = loadFramework(options); // NOTE: keep `suit` typo for backwards compatibility const suite = options.suite || options.suit || 'Storyshots'; @@ -73,6 +70,7 @@ export default function testStorySnapshots(options = {}) { return testMethod({ story, context, + renderTree, }); }); } diff --git a/addons/storyshots/src/react/loader.js b/addons/storyshots/src/react/loader.js index 53c128a66cd..dc1ac6d065b 100644 --- a/addons/storyshots/src/react/loader.js +++ b/addons/storyshots/src/react/loader.js @@ -26,6 +26,7 @@ function load(options) { runWithRequireContext(content, contextOpts); return { + renderTree: require('./renderTree').default, framework: 'react', storybook, }; diff --git a/addons/storyshots/src/react/renderTree.js b/addons/storyshots/src/react/renderTree.js new file mode 100644 index 00000000000..4d35e7dff84 --- /dev/null +++ b/addons/storyshots/src/react/renderTree.js @@ -0,0 +1,10 @@ +import reactTestRenderer from 'react-test-renderer'; + +function getRenderedTree(story, context, { renderer, serializer, ...rendererOptions }) { + const storyElement = story.render(context); + const currentRenderer = renderer || reactTestRenderer.create; + const tree = currentRenderer(storyElement, rendererOptions); + return serializer ? serializer(tree) : tree; +} + +export default getRenderedTree; diff --git a/addons/storyshots/src/react/test-bodies.js b/addons/storyshots/src/react/test-bodies.js new file mode 100644 index 00000000000..e100771499d --- /dev/null +++ b/addons/storyshots/src/react/test-bodies.js @@ -0,0 +1,14 @@ +import reactTestRenderer from 'react-test-renderer'; +import shallow from 'react-test-renderer/shallow'; + +export function shallowSnapshot({ story, context, options: { renderer, serializer } }) { + const shallowRenderer = renderer || shallow.createRenderer(); + const tree = shallowRenderer.render(story.render(context)); + const serializedTree = serializer ? serializer(tree) : tree; + expect(serializedTree).toMatchSnapshot(); +} + +export function renderOnly({ story, context }) { + const storyElement = story.render(context); + reactTestRenderer.create(storyElement); +} diff --git a/addons/storyshots/src/rn/loader.js b/addons/storyshots/src/rn/loader.js index f5f28b430c2..eaddd550bb4 100644 --- a/addons/storyshots/src/rn/loader.js +++ b/addons/storyshots/src/rn/loader.js @@ -1,3 +1,4 @@ +/* eslint-disable global-require */ import path from 'path'; import hasDependency from '../hasDependency'; @@ -15,6 +16,7 @@ function load(options) { require.requireActual(configPath); return { + renderTree: require('../react/renderTree').default, framework: 'rn', storybook, }; diff --git a/addons/storyshots/src/test-bodies.js b/addons/storyshots/src/test-bodies.js index ba2bc96c0d3..951f24e7edc 100644 --- a/addons/storyshots/src/test-bodies.js +++ b/addons/storyshots/src/test-bodies.js @@ -1,75 +1,13 @@ -import 'jest-preset-angular/setupJest'; -import AngularSnapshotSerializer from 'jest-preset-angular/AngularSnapshotSerializer'; -import HTMLCommentSerializer from 'jest-preset-angular/HTMLCommentSerializer'; -import { TestBed } from '@angular/core/testing'; -import { NO_ERRORS_SCHEMA } from '@angular/core'; - -import reactTestRenderer from 'react-test-renderer'; -import shallow from 'react-test-renderer/shallow'; -import { addSerializer } from 'jest-specific-snapshot'; +import 'jest-specific-snapshot'; import { getSnapshotFileName } from './utils'; -import { createAnnotatedComponent } from './angular/helpers'; -addSerializer(HTMLCommentSerializer); -addSerializer(AngularSnapshotSerializer); - -function getRenderedTree(story, context, { renderer, serializer, ...rendererOptions }) { - const storyElement = story.render(context); - - if (context.framework === 'angular') { - const { - // props, - // component, - moduleMetadata = { imports: [], schemas: [], declarations: [], providers: [] }, - } = storyElement; - - const moduleMeta = { - imports: [], - schemas: [], - declarations: [], - providers: [], - ...moduleMetadata, - }; - - const { component: annotatedComponent } = createAnnotatedComponent(storyElement); - - TestBed.configureTestingModule({ - imports: [...moduleMeta.imports], - declarations: [annotatedComponent, ...moduleMeta.declarations], - providers: [...moduleMeta.providers], - schemas: [NO_ERRORS_SCHEMA, ...moduleMeta.schemas], - }); - - // this is async. Should be somehow called in beforeEach - TestBed.compileComponents(); - - const tree = TestBed.createComponent(annotatedComponent); - tree.detectChanges(); - - return tree; - - // TestBed.configureTestingModule({ - // imports: [...moduleMeta.imports], - // declarations: [component, ...moduleMeta.declarations], - // providers: [...moduleMeta.providers], - // schemas: [NO_ERRORS_SCHEMA, ...moduleMeta.schemas], - // }); - // - // TestBed.compileComponents(); - // - // const tree = TestBed.createComponent(component); - // tree.detectChanges(); - // - // return tree; - } - - const currentRenderer = renderer || reactTestRenderer.create; - const tree = currentRenderer(storyElement, rendererOptions); - return serializer ? serializer(tree) : tree; -} - -export const snapshotWithOptions = options => ({ story, context, snapshotFileName }) => { - const tree = getRenderedTree(story, context, options); +export const snapshotWithOptions = options => ({ + story, + context, + renderTree, + snapshotFileName, +}) => { + const tree = renderTree(story, context, options); if (snapshotFileName) { expect(tree).toMatchSpecificSnapshot(snapshotFileName); @@ -82,20 +20,13 @@ export const snapshotWithOptions = options => ({ story, context, snapshotFileNam } }; -export const multiSnapshotWithOptions = options => ({ story, context }) => { - snapshotWithOptions(options)({ story, context, snapshotFileName: getSnapshotFileName(context) }); +export const multiSnapshotWithOptions = options => ({ story, context, renderTree }) => { + snapshotWithOptions(options)({ + story, + context, + renderTree, + snapshotFileName: getSnapshotFileName(context), + }); }; export const snapshot = snapshotWithOptions({}); - -export function shallowSnapshot({ story, context, options: { renderer, serializer } }) { - const shallowRenderer = renderer || shallow.createRenderer(); - const tree = shallowRenderer.render(story.render(context)); - const serializedTree = serializer ? serializer(tree) : tree; - expect(serializedTree).toMatchSnapshot(); -} - -export function renderOnly({ story, context }) { - const storyElement = story.render(context); - reactTestRenderer.create(storyElement); -}