Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for storyshots to save files according to different patterns #2517

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 22 additions & 6 deletions addons/storyshots/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,18 @@ initStoryshots({

If you are running tests from outside of your app's directory, storyshots' detection of which framework you are using may fail. Pass `"react"` or `"react-native"` to short-circuit this.

### `filesPattern`

It allows you to generate separate snapshot files according to your needs. Please check [snapshotPerStoryFile](#snapshotPerStoryFile) and [snapshotPerStoryAdded](#snapshotPerStoryAdded) below.

```js
import initStoryshots, { snapshotPerStoryAdded } from '@storybook/addon-storyshots';

initStoryshots({
filesPattern: snapshotPerStoryAdded,
});
```

### `test`

Run a custom test function for each story, rather than the default (a vanilla snapshot test). Setting `test` will take precedence over the `renderer` option. See the exports section below for more details.
Expand Down Expand Up @@ -191,30 +203,34 @@ Just render the story, don't check the output at all (useful if you just want to

Like the default, but allows you to specify a set of options for the test renderer. [See for example here](https://github.com/storybooks/storybook/blob/b915b5439786e0edb17d7f5ab404bba9f7919381/examples/test-cra/src/storyshots.test.js#L14-L16).

### `multiSnapshotWithOptions(options)`
### `snapshotPerStoryFile`

It generates a separate snapshot file for each stories file rather than a single monolithic file (as is the convention in Jest). This makes it dramatically easier to review changes.

### `snapshotPerStoryAdded`

Like `snapshotWithOptions`, but generate a separate snapshot file for each stories file rather than a single monolithic file (as is the convention in Jest). This makes it dramatically easier to review changes.
Like `snapshotPerStoryFile`, but generate a separate snapshot file for each stories added, rather than a single file snapshopt per story file. This makes it even easier to review changes.

### `shallowSnapshot`

Take a snapshot of a shallow-rendered version of the component. Note that this option will be overriden if you pass a `renderer` option.

### `getSnapshotFileName`
### `filesPattern.getSnapshotFileName`

Utility function used in `multiSnapshotWithOptions`. This is made available for users who implement custom test functions that also want to take advantage of multi-file storyshots.
Utility function used in `snapshotWithOptions`. This is made available for users who implement custom test functions that also want to take advantage of multi-file storyshots.

###### Example:

Let's say we wanted to create a test function for shallow && multi-file snapshots:

```js
import initStoryshots, { getSnapshotFileName } from '@storybook/addon-storyshots';
import initStoryshots, { snapshotPerStoryFile } from '@storybook/addon-storyshots';
import { shallow } from 'enzyme';
import toJson from 'enzyme-to-json';

initStoryshots({
test: ({ story, context }) => {
const snapshotFileName = getSnapshotFileName(context);
const snapshotFileName = snapshotPerStoryFile.getSnapshotFileName(context);
const storyElement = story.render(context);
const shallowTree = shallow(storyElement);

Expand Down
3 changes: 2 additions & 1 deletion addons/storyshots/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"global": "^4.3.2",
"jest-specific-snapshot": "^0.2.0",
"prop-types": "^15.6.0",
"read-pkg-up": "^3.0.0"
"read-pkg-up": "^3.0.0",
"sanitize-filename": "^1.6.1"
},
"devDependencies": {
"@storybook/addons": "^3.3.0-alpha.4",
Expand Down
44 changes: 22 additions & 22 deletions addons/storyshots/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,10 @@ import addons from '@storybook/addons';
import runWithRequireContext from './require_context';
import createChannel from './storybook-channel-mock';
import { snapshotWithOptions } from './test-bodies';
import { getPossibleStoriesFiles, getSnapshotFileName } from './utils';

export {
snapshot,
multiSnapshotWithOptions,
snapshotWithOptions,
shallowSnapshot,
renderOnly,
} from './test-bodies';
export { snapshot, snapshotWithOptions, shallowSnapshot, renderOnly } from './test-bodies';

export { getSnapshotFileName };
export { snapshotPerStoryFile, snapshotPerStoryAdded } from './utils';

let storybook;
let configPath;
Expand All @@ -36,6 +29,8 @@ const hasDependency = name =>
export default function testStorySnapshots(options = {}) {
addons.setChannel(createChannel());

const filesPattern = options.filesPattern || {};

const isStorybook =
options.framework === 'react' || (!options.framework && hasDependency('@storybook/react'));
const isRNStorybook =
Expand Down Expand Up @@ -90,6 +85,23 @@ export default function testStorySnapshots(options = {}) {
options.test =
options.test || snapshotWithOptions({ options: snapshotOptions });

const storyFileExists = fileName =>
filesPattern.getPossibleStoriesFiles(fileName).some(fs.existsSync);

if (filesPattern.getPossibleStoriesFiles) {
describe('Storyshots Integrity', () => {
describe('Abandoned Storyshots', () => {
const storyshots = glob.sync('**/*.storyshot');

const abandonedStoryshots = storyshots.filter(fileName => !storyFileExists(fileName));

expect(abandonedStoryshots).toHaveLength(0);
});
});
}

const { getSnapshotFileName } = filesPattern;

// eslint-disable-next-line
for (const group of stories) {
const { fileName, kind } = group;
Expand All @@ -113,23 +125,11 @@ export default function testStorySnapshots(options = {}) {
return options.test({
story,
context,
getSnapshotFileName,
});
});
}
});
});
}
}

describe('Storyshots Integrity', () => {
describe('Abandoned Storyshots', () => {
const storyshots = glob.sync('**/*.storyshot');

const abandonedStoryshots = storyshots.filter(fileName => {
const possibleStoriesFiles = getPossibleStoriesFiles(fileName);
return !possibleStoriesFiles.some(fs.existsSync);
});

expect(abandonedStoryshots).toHaveLength(0);
});
});
11 changes: 5 additions & 6 deletions addons/storyshots/src/test-bodies.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import reactTestRenderer from 'react-test-renderer';
import shallow from 'react-test-renderer/shallow';
import 'jest-specific-snapshot';
import { getSnapshotFileName } from './utils';

function getRenderedTree(story, context, { renderer, serializer, ...rendererOptions }) {
const currentRenderer = renderer || reactTestRenderer.create;
Expand All @@ -10,10 +9,14 @@ function getRenderedTree(story, context, { renderer, serializer, ...rendererOpti
return serializer ? serializer(tree) : tree;
}

export const snapshotWithOptions = options => ({ story, context, snapshotFileName }) => {
export const snapshotWithOptions = options => ({ story, context, snapshotFileName, getSnapshotFileName }) => {
const tree = getRenderedTree(story, context, options);

if (snapshotFileName) {
expect(tree).toMatchSpecificSnapshot(snapshotFileName);
} else if (getSnapshotFileName) {
snapshotFileName = getSnapshotFileName(context);

expect(tree).toMatchSpecificSnapshot(snapshotFileName);
} else {
expect(tree).toMatchSnapshot();
Expand All @@ -24,10 +27,6 @@ export const snapshotWithOptions = options => ({ story, context, snapshotFileNam
}
};

export const multiSnapshotWithOptions = options => ({ story, context }) => {
snapshotWithOptions(options)({ story, context, snapshotFileName: getSnapshotFileName(context) });
};

export const snapshot = snapshotWithOptions({});

export function shallowSnapshot({ story, context, options: { renderer, serializer } }) {
Expand Down
58 changes: 40 additions & 18 deletions addons/storyshots/src/utils.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,47 @@
import path from 'path';
import sanitize from 'sanitize-filename';

function getStoryshotFile(fileName) {
const { dir, name } = path.parse(fileName);
return path.format({ dir: path.join(dir, '__snapshots__'), name, ext: '.storyshot' });
}
export const snapshotPerStoryFile = {
getSnapshotFileName(context) {
const { fileName } = context;

export function getPossibleStoriesFiles(storyshotFile) {
const { dir, name } = path.parse(storyshotFile);
if (!fileName) {
return null;
}

return [
path.format({ dir: path.dirname(dir), name, ext: '.js' }),
path.format({ dir: path.dirname(dir), name, ext: '.jsx' }),
];
}
const { dir, name } = path.parse(fileName);
return path.format({ dir: path.join(dir, '__snapshots__'), name, ext: '.storyshot' });
},
getPossibleStoriesFiles(storyshotFile) {
const { dir, name } = path.parse(storyshotFile);

export function getSnapshotFileName(context) {
const { fileName } = context;

if (!fileName) {
return null;
return [
path.format({ dir: path.dirname(dir), name, ext: '.js' }),
path.format({ dir: path.dirname(dir), name, ext: '.jsx' }),
];
}
};

export const snapshotPerStoryAdded = {
getSnapshotFileName(context) {
const { fileName, kind, story } = context;

if (!fileName) {
return null;
}

return getStoryshotFile(fileName);
}
const { dir } = path.parse(fileName);
const name = sanitize(`${kind}--${story}`)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is -- the separator we want to use?

return path.format({ dir: path.join(dir, '__snapshots__'), name, ext: '.storyshot' });
},
getPossibleStoriesFiles(storyshotFile) {
const { dir } = path.parse(storyshotFile);

return [
path.format({ dir: path.dirname(dir), name: 'stories', ext: '.js' }),
path.format({ dir: path.dirname(dir), name: 'stories', ext: '.js' }),
path.format({ dir: path.dirname(dir), name: '.stories', ext: '.jsx' }),
path.format({ dir: path.dirname(dir), name: '.stories', ext: '.jsx' }),
];
}
};
16 changes: 16 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11872,6 +11872,12 @@ sane@~1.6.0:
walker "~1.0.5"
watch "~0.10.0"

sanitize-filename@^1.6.1:
version "1.6.1"
resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.1.tgz#612da1c96473fa02dccda92dcd5b4ab164a6772a"
dependencies:
truncate-utf8-bytes "^1.0.0"

sass-graph@^2.2.4:
version "2.2.4"
resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49"
Expand Down Expand Up @@ -13124,6 +13130,12 @@ trough@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.1.tgz#a9fd8b0394b0ae8fff82e0633a0a36ccad5b5f86"

truncate-utf8-bytes@^1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b"
dependencies:
utf8-byte-length "^1.0.1"

try-catch@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/try-catch/-/try-catch-1.0.0.tgz#3797dab39a266775f4d0da5cbf42aca3f03608e6"
Expand Down Expand Up @@ -13583,6 +13595,10 @@ useragent@^2.1.12:
lru-cache "2.2.x"
tmp "0.0.x"

utf8-byte-length@^1.0.1:
version "1.0.4"
resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz#f45f150c4c66eee968186505ab93fcbb8ad6bf61"

[email protected], util-deprecate@^1.0.2, util-deprecate@~1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
Expand Down