mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
83 lines
2.9 KiB
TypeScript
83 lines
2.9 KiB
TypeScript
import 'jest-specific-snapshot';
|
|
import path from 'path';
|
|
import fs from 'fs';
|
|
import requireFromString from 'require-from-string';
|
|
import { transformFileSync, transformSync } from '@babel/core';
|
|
|
|
import { inferControls } from '@storybook/store';
|
|
import type { AnyFramework } from '@storybook/csf';
|
|
import { normalizeNewlines } from '@storybook/docs-tools';
|
|
|
|
import type { StoryContext } from '../../src/types';
|
|
import { extractProps } from '../../src/docs/extractProps';
|
|
import { extractArgTypes } from '../../src/docs/extractArgTypes';
|
|
|
|
// jest.mock('../imported', () => () => ({ imported: 'imported-value' }), { virtual: true });
|
|
|
|
// File hierarchy:
|
|
// __testfixtures__ / some-test-case / input.*
|
|
const inputRegExp = /^input\..*$/;
|
|
|
|
const transformToModule = (inputCode: string) => {
|
|
const options = {
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
targets: {
|
|
esmodules: true,
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|
|
const { code } = transformSync(inputCode, options) || {};
|
|
return normalizeNewlines(code || '');
|
|
};
|
|
|
|
const annotateWithDocgen = (inputPath: string) => {
|
|
const options = {
|
|
presets: ['@babel/typescript', '@babel/react'],
|
|
plugins: ['babel-plugin-react-docgen', '@babel/plugin-proposal-class-properties'],
|
|
babelrc: false,
|
|
};
|
|
const { code } = transformFileSync(inputPath, options) || {};
|
|
return normalizeNewlines(code || '');
|
|
};
|
|
|
|
describe('react component properties', () => {
|
|
const fixturesDir = path.join(__dirname, '__testfixtures__');
|
|
fs.readdirSync(fixturesDir, { withFileTypes: true }).forEach((testEntry) => {
|
|
if (testEntry.isDirectory()) {
|
|
const testDir = path.join(fixturesDir, testEntry.name);
|
|
const testFile = fs.readdirSync(testDir).find((fileName) => inputRegExp.test(fileName));
|
|
if (testFile) {
|
|
it(testEntry.name, () => {
|
|
const inputPath = path.join(testDir, testFile);
|
|
|
|
// snapshot the output of babel-plugin-react-docgen
|
|
const docgenPretty = annotateWithDocgen(inputPath);
|
|
expect(docgenPretty).toMatchSpecificSnapshot(path.join(testDir, 'docgen.snapshot'));
|
|
|
|
// transform into an uglier format that's works with require-from-string
|
|
const docgenModule = transformToModule(docgenPretty);
|
|
|
|
// snapshot the output of component-properties/react
|
|
const { component } = requireFromString(docgenModule, inputPath);
|
|
const properties = extractProps(component);
|
|
expect(properties).toMatchSpecificSnapshot(path.join(testDir, 'properties.snapshot'));
|
|
|
|
// snapshot the output of `extractArgTypes`
|
|
const argTypes = extractArgTypes(component);
|
|
const parameters = { __isArgsStory: true };
|
|
const rows = inferControls({
|
|
argTypes,
|
|
parameters,
|
|
} as unknown as StoryContext<AnyFramework>);
|
|
expect(rows).toMatchSpecificSnapshot(path.join(testDir, 'argTypes.snapshot'));
|
|
});
|
|
}
|
|
}
|
|
});
|
|
});
|