mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:01:09 +08:00
Fixed client_api tests
This commit is contained in:
parent
29d7dd0bee
commit
4e7269ee93
@ -5,16 +5,12 @@ import ClientApi from './client_api';
|
|||||||
import ConfigApi from './config_api';
|
import ConfigApi from './config_api';
|
||||||
import StoryStore from './story_store';
|
import StoryStore from './story_store';
|
||||||
|
|
||||||
const getContext = ({
|
const getContext = (clientApiOptions = {}) => {
|
||||||
decorateStory = undefined,
|
|
||||||
noStoryModuleAddMethodHotDispose = false,
|
|
||||||
} = {}) => {
|
|
||||||
const channel = mockChannel();
|
const channel = mockChannel();
|
||||||
addons.setChannel(channel);
|
addons.setChannel(channel);
|
||||||
const storyStore = new StoryStore({ channel });
|
const storyStore = new StoryStore({ channel });
|
||||||
const clientApi = new ClientApi({ storyStore, decorateStory, noStoryModuleAddMethodHotDispose });
|
const clientApi = new ClientApi({ storyStore, ...clientApiOptions });
|
||||||
const { clearDecorators } = clientApi;
|
const configApi = new ConfigApi({ storyStore });
|
||||||
const configApi = new ConfigApi({ clearDecorators, storyStore, channel, clientApi });
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
configApi,
|
configApi,
|
||||||
@ -391,7 +387,7 @@ describe('preview.client_api', () => {
|
|||||||
} = getContext();
|
} = getContext();
|
||||||
|
|
||||||
const fn = jest.fn();
|
const fn = jest.fn();
|
||||||
storiesOf('kind', { id: 'foo.js' }).add('name', fn);
|
storiesOf('kind', { id: 'foo.js' } as NodeModule).add('name', fn);
|
||||||
|
|
||||||
const storybook = getStorybook();
|
const storybook = getStorybook();
|
||||||
|
|
||||||
@ -415,7 +411,7 @@ describe('preview.client_api', () => {
|
|||||||
} = getContext();
|
} = getContext();
|
||||||
|
|
||||||
const fn = jest.fn();
|
const fn = jest.fn();
|
||||||
storiesOf('kind', { id: 1211 }).add('name', fn);
|
storiesOf('kind', { id: 1211 } as NodeModule).add('name', fn);
|
||||||
|
|
||||||
const storybook = getStorybook();
|
const storybook = getStorybook();
|
||||||
|
|
||||||
@ -454,13 +450,13 @@ describe('preview.client_api', () => {
|
|||||||
storyStore,
|
storyStore,
|
||||||
clientApi: { storiesOf },
|
clientApi: { storiesOf },
|
||||||
} = getContext();
|
} = getContext();
|
||||||
const module = new MockModule();
|
const mod = new MockModule();
|
||||||
|
|
||||||
expect(storyStore.getRevision()).toEqual(0);
|
expect(storyStore.getRevision()).toEqual(0);
|
||||||
|
|
||||||
storiesOf('kind', module);
|
storiesOf('kind', (mod as unknown) as NodeModule);
|
||||||
|
|
||||||
module.hot.reload();
|
mod.hot.reload();
|
||||||
|
|
||||||
expect(storyStore.getRevision()).toEqual(1);
|
expect(storyStore.getRevision()).toEqual(1);
|
||||||
});
|
});
|
||||||
@ -469,13 +465,13 @@ describe('preview.client_api', () => {
|
|||||||
const {
|
const {
|
||||||
clientApi: { storiesOf, getStorybook },
|
clientApi: { storiesOf, getStorybook },
|
||||||
} = getContext();
|
} = getContext();
|
||||||
const module = new MockModule();
|
const mod = new MockModule();
|
||||||
|
|
||||||
const stories = [jest.fn(), jest.fn()];
|
const stories = [jest.fn(), jest.fn()];
|
||||||
|
|
||||||
expect(getStorybook()).toEqual([]);
|
expect(getStorybook()).toEqual([]);
|
||||||
|
|
||||||
storiesOf('kind', module).add('story', stories[0]);
|
storiesOf('kind', (mod as unknown) as NodeModule).add('story', stories[0]);
|
||||||
|
|
||||||
const firstStorybook = getStorybook();
|
const firstStorybook = getStorybook();
|
||||||
expect(firstStorybook).toEqual([
|
expect(firstStorybook).toEqual([
|
||||||
@ -489,7 +485,7 @@ describe('preview.client_api', () => {
|
|||||||
firstStorybook[0].stories[0].render();
|
firstStorybook[0].stories[0].render();
|
||||||
expect(stories[0]).toHaveBeenCalled();
|
expect(stories[0]).toHaveBeenCalled();
|
||||||
|
|
||||||
module.hot.reload();
|
mod.hot.reload();
|
||||||
expect(getStorybook()).toEqual([]);
|
expect(getStorybook()).toEqual([]);
|
||||||
|
|
||||||
storiesOf('kind', module).add('story', stories[1]);
|
storiesOf('kind', module).add('story', stories[1]);
|
||||||
@ -510,67 +506,82 @@ describe('preview.client_api', () => {
|
|||||||
it('should maintain kind order when the module reloads', async () => {
|
it('should maintain kind order when the module reloads', async () => {
|
||||||
const {
|
const {
|
||||||
clientApi: { storiesOf, getStorybook },
|
clientApi: { storiesOf, getStorybook },
|
||||||
|
storyStore,
|
||||||
channel,
|
channel,
|
||||||
} = getContext();
|
} = getContext();
|
||||||
const module0 = new MockModule();
|
const module0 = new MockModule();
|
||||||
const module1 = new MockModule();
|
const module1 = new MockModule();
|
||||||
const module2 = new MockModule();
|
const module2 = new MockModule();
|
||||||
channel.emit = jest.fn();
|
|
||||||
|
const mockChannelEmit = jest.fn();
|
||||||
|
channel.emit = mockChannelEmit;
|
||||||
|
|
||||||
expect(getStorybook()).toEqual([]);
|
expect(getStorybook()).toEqual([]);
|
||||||
|
|
||||||
storiesOf('kind0', module0).add('story0-docs-only', jest.fn(), { docsOnly: true });
|
storyStore.startConfiguring();
|
||||||
storiesOf('kind1', module1).add('story1', jest.fn());
|
storiesOf('kind0', (module0 as unknown) as NodeModule).add('story0-docs-only', jest.fn(), {
|
||||||
storiesOf('kind2', module2).add('story2', jest.fn());
|
docsOnly: true,
|
||||||
|
});
|
||||||
|
storiesOf('kind1', (module1 as unknown) as NodeModule).add('story1', jest.fn());
|
||||||
|
storiesOf('kind2', (module2 as unknown) as NodeModule).add('story2', jest.fn());
|
||||||
|
storyStore.finishConfiguring();
|
||||||
|
|
||||||
// storyStore debounces so we need to wait for the next tick
|
let [event, args] = mockChannelEmit.mock.calls[0];
|
||||||
await new Promise(r => setTimeout(r, 0));
|
|
||||||
|
|
||||||
let [event, args] = channel.emit.mock.calls[0];
|
|
||||||
expect(event).toEqual(Events.SET_STORIES);
|
expect(event).toEqual(Events.SET_STORIES);
|
||||||
expect(Object.values(args.stories).map(v => v.kind)).toEqual(['kind0', 'kind1', 'kind2']);
|
expect(Object.values(args.stories as [{ kind: string }]).map(v => v.kind)).toEqual([
|
||||||
|
'kind0',
|
||||||
|
'kind1',
|
||||||
|
'kind2',
|
||||||
|
]);
|
||||||
expect(getStorybook().map(story => story.kind)).toEqual(['kind1', 'kind2']);
|
expect(getStorybook().map(story => story.kind)).toEqual(['kind1', 'kind2']);
|
||||||
|
|
||||||
channel.emit.mockClear();
|
mockChannelEmit.mockClear();
|
||||||
|
|
||||||
// simulate an HMR of kind1, which would cause it to go to the end
|
// simulate an HMR of kind1, which would cause it to go to the end
|
||||||
// if the original order is not maintainaed
|
// if the original order is not maintainaed
|
||||||
module1.hot.reload();
|
module1.hot.reload();
|
||||||
storiesOf('kind1', module1).add('story1', jest.fn());
|
storyStore.startConfiguring();
|
||||||
|
storiesOf('kind1', (module1 as unknown) as NodeModule).add('story1', jest.fn());
|
||||||
|
storyStore.finishConfiguring();
|
||||||
|
|
||||||
await new Promise(r => setTimeout(r, 0));
|
|
||||||
// eslint-disable-next-line prefer-destructuring
|
// eslint-disable-next-line prefer-destructuring
|
||||||
[event, args] = channel.emit.mock.calls[0];
|
[event, args] = mockChannelEmit.mock.calls[0];
|
||||||
|
|
||||||
expect(event).toEqual(Events.SET_STORIES);
|
expect(event).toEqual(Events.SET_STORIES);
|
||||||
expect(Object.values(args.stories).map(v => v.kind)).toEqual(['kind0', 'kind1', 'kind2']);
|
expect(Object.values(args.stories as [{ kind: string }]).map(v => v.kind)).toEqual([
|
||||||
|
'kind0',
|
||||||
|
'kind1',
|
||||||
|
'kind2',
|
||||||
|
]);
|
||||||
expect(getStorybook().map(story => story.kind)).toEqual(['kind1', 'kind2']);
|
expect(getStorybook().map(story => story.kind)).toEqual(['kind1', 'kind2']);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should call `module.hot.dispose` inside add and soriesOf by default', () => {
|
it('should call `module.hot.dispose` inside add and soriesOf by default', () => {
|
||||||
const module = new MockModule();
|
const mod = (new MockModule() as unknown) as NodeModule;
|
||||||
module.hot.dispose = jest.fn();
|
const mockHotDispose = jest.fn();
|
||||||
|
mod.hot.dispose = mockHotDispose;
|
||||||
|
|
||||||
const {
|
const {
|
||||||
clientApi: { storiesOf, getStorybook },
|
clientApi: { storiesOf, getStorybook },
|
||||||
} = getContext();
|
} = getContext();
|
||||||
|
|
||||||
storiesOf('kind', module).add('story', jest.fn());
|
storiesOf('kind', mod).add('story', jest.fn());
|
||||||
|
|
||||||
expect(module.hot.dispose.mock.calls.length).toEqual(2);
|
expect(mockHotDispose.mock.calls.length).toEqual(2);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should not call `module.hot.dispose` inside add when noStoryModuleAddMethodHotDispose is true', () => {
|
it('should not call `module.hot.dispose` inside add when noStoryModuleAddMethodHotDispose is true', () => {
|
||||||
const module = new MockModule();
|
const mod = (new MockModule() as unknown) as NodeModule;
|
||||||
module.hot.dispose = jest.fn();
|
const mockHotDispose = jest.fn();
|
||||||
|
mod.hot.dispose = mockHotDispose;
|
||||||
|
|
||||||
const {
|
const {
|
||||||
clientApi: { storiesOf, getStorybook },
|
clientApi: { storiesOf, getStorybook },
|
||||||
} = getContext({ noStoryModuleAddMethodHotDispose: true });
|
} = getContext({ noStoryModuleAddMethodHotDispose: true });
|
||||||
|
|
||||||
storiesOf('kind', module).add('story', jest.fn());
|
storiesOf('kind', mod).add('story', jest.fn());
|
||||||
|
|
||||||
expect(module.hot.dispose.mock.calls.length).toEqual(1);
|
expect(mockHotDispose.mock.calls.length).toEqual(1);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -124,6 +124,7 @@ export default class ClientApi {
|
|||||||
if (m && m.hot && m.hot.dispose) {
|
if (m && m.hot && m.hot.dispose) {
|
||||||
m.hot.dispose(() => {
|
m.hot.dispose(() => {
|
||||||
const { _storyStore } = this;
|
const { _storyStore } = this;
|
||||||
|
_storyStore.startConfiguring();
|
||||||
_storyStore.removeStoryKind(kind);
|
_storyStore.removeStoryKind(kind);
|
||||||
_storyStore.incrementRevision();
|
_storyStore.incrementRevision();
|
||||||
});
|
});
|
||||||
@ -162,6 +163,7 @@ export default class ClientApi {
|
|||||||
if (!this._noStoryModuleAddMethodHotDispose && m && m.hot && m.hot.dispose) {
|
if (!this._noStoryModuleAddMethodHotDispose && m && m.hot && m.hot.dispose) {
|
||||||
m.hot.dispose(() => {
|
m.hot.dispose(() => {
|
||||||
const { _storyStore } = this;
|
const { _storyStore } = this;
|
||||||
|
_storyStore.startConfiguring();
|
||||||
_storyStore.remove(id);
|
_storyStore.remove(id);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user