mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 00:01:17 +08:00
Tests
This commit is contained in:
parent
80496a3e66
commit
98c7c573d6
@ -7,19 +7,6 @@ jest.useFakeTimers();
|
|||||||
describe('initial state', () => {
|
describe('initial state', () => {
|
||||||
const viewMode = 'story';
|
const viewMode = 'story';
|
||||||
|
|
||||||
it('redirects to /story/* if path is blank', () => {
|
|
||||||
const navigate = jest.fn();
|
|
||||||
const location = { search: null };
|
|
||||||
const {
|
|
||||||
state: { layout },
|
|
||||||
} = initURL({ navigate, state: { location, viewMode } });
|
|
||||||
|
|
||||||
// Nothing unexpected in layout
|
|
||||||
expect(layout).toEqual({});
|
|
||||||
jest.runAllTimers();
|
|
||||||
expect(navigate).toHaveBeenCalledWith('/story/*', { replace: true });
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('config query parameters', () => {
|
describe('config query parameters', () => {
|
||||||
it('handles full parameter', () => {
|
it('handles full parameter', () => {
|
||||||
const navigate = jest.fn();
|
const navigate = jest.fn();
|
||||||
@ -88,23 +75,29 @@ describe('initial state', () => {
|
|||||||
addonPanel: 'storybook%2Factions%2Factions-panel',
|
addonPanel: 'storybook%2Factions%2Factions-panel',
|
||||||
};
|
};
|
||||||
|
|
||||||
it('handles defaults and routes to story', () => {
|
it('sets sensible storyId for selectedKind/Story', () => {
|
||||||
const navigate = jest.fn();
|
|
||||||
const location = { search: qs.stringify(defaultLegacyParameters) };
|
const location = { search: qs.stringify(defaultLegacyParameters) };
|
||||||
const {
|
const {
|
||||||
state: { layout, selectedPanel },
|
state: { layout, selectedPanel, storyId },
|
||||||
} = initURL({ navigate, state: { location, viewMode } });
|
} = initURL({ state: { location, viewMode } });
|
||||||
|
|
||||||
// Nothing unexpected in layout
|
// Nothing unexpected in layout
|
||||||
expect(layout).toEqual({});
|
expect(layout).toEqual({});
|
||||||
// TODO: at the very least this should be unescaped
|
// TODO: at the very least this should be unescaped
|
||||||
expect(selectedPanel).toEqual('storybook%2Factions%2Factions-panel');
|
expect(selectedPanel).toEqual('storybook%2Factions%2Factions-panel');
|
||||||
jest.runAllTimers();
|
expect(storyId).toEqual('kind--story');
|
||||||
expect(navigate).toHaveBeenCalledWith('/story/kind--story', { replace: true });
|
});
|
||||||
|
|
||||||
|
it('sets sensible storyId for selectedKind only', () => {
|
||||||
|
const location = { search: { selectedKind: 'kind' } };
|
||||||
|
const {
|
||||||
|
state: { storyId },
|
||||||
|
} = initURL({ state: { location, viewMode } });
|
||||||
|
|
||||||
|
expect(storyId).toEqual('kind');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('handles full parameter', () => {
|
it('handles full parameter', () => {
|
||||||
const navigate = jest.fn();
|
|
||||||
const location = {
|
const location = {
|
||||||
search: qs.stringify({
|
search: qs.stringify({
|
||||||
...defaultLegacyParameters,
|
...defaultLegacyParameters,
|
||||||
@ -113,13 +106,12 @@ describe('initial state', () => {
|
|||||||
};
|
};
|
||||||
const {
|
const {
|
||||||
state: { layout },
|
state: { layout },
|
||||||
} = initURL({ navigate, state: { location } });
|
} = initURL({ state: { location } });
|
||||||
|
|
||||||
expect(layout).toEqual({ isFullscreen: true });
|
expect(layout).toEqual({ isFullscreen: true });
|
||||||
});
|
});
|
||||||
|
|
||||||
it('handles addons and stories parameters', () => {
|
it('handles addons and stories parameters', () => {
|
||||||
const navigate = jest.fn();
|
|
||||||
const location = {
|
const location = {
|
||||||
search: qs.stringify({
|
search: qs.stringify({
|
||||||
...defaultLegacyParameters,
|
...defaultLegacyParameters,
|
||||||
@ -129,13 +121,12 @@ describe('initial state', () => {
|
|||||||
};
|
};
|
||||||
const {
|
const {
|
||||||
state: { layout },
|
state: { layout },
|
||||||
} = initURL({ navigate, state: { location } });
|
} = initURL({ state: { location } });
|
||||||
|
|
||||||
expect(layout).toEqual({ showNav: false, showPanel: false });
|
expect(layout).toEqual({ showNav: false, showPanel: false });
|
||||||
});
|
});
|
||||||
|
|
||||||
it('handles panelRight parameter', () => {
|
it('handles panelRight parameter', () => {
|
||||||
const navigate = jest.fn();
|
|
||||||
const location = {
|
const location = {
|
||||||
search: qs.stringify({
|
search: qs.stringify({
|
||||||
...defaultLegacyParameters,
|
...defaultLegacyParameters,
|
||||||
@ -144,7 +135,7 @@ describe('initial state', () => {
|
|||||||
};
|
};
|
||||||
const {
|
const {
|
||||||
state: { layout },
|
state: { layout },
|
||||||
} = initURL({ navigate, state: { location } });
|
} = initURL({ state: { location } });
|
||||||
|
|
||||||
expect(layout).toEqual({ panelPosition: 'right' });
|
expect(layout).toEqual({ panelPosition: 'right' });
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user