mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:21:08 +08:00
171 lines
4.8 KiB
TypeScript
171 lines
4.8 KiB
TypeScript
import { Architect, createBuilder } from '@angular-devkit/architect';
|
|
import { TestingArchitectHost } from '@angular-devkit/architect/testing';
|
|
import { schema } from '@angular-devkit/core';
|
|
import * as path from 'path';
|
|
|
|
const buildStandaloneMock = jest.fn();
|
|
jest.doMock('@storybook/angular/standalone', () => buildStandaloneMock);
|
|
|
|
const cpSpawnMock = {
|
|
spawn: jest.fn(),
|
|
};
|
|
jest.doMock('child_process', () => cpSpawnMock);
|
|
describe('Build Storybook Builder', () => {
|
|
let architect: Architect;
|
|
let architectHost: TestingArchitectHost;
|
|
|
|
beforeEach(async () => {
|
|
const registry = new schema.CoreSchemaRegistry();
|
|
registry.addPostTransform(schema.transforms.addUndefinedDefaults);
|
|
|
|
architectHost = new TestingArchitectHost();
|
|
architect = new Architect(architectHost, registry);
|
|
|
|
architectHost.addBuilder(
|
|
'@angular-devkit/build-angular:browser',
|
|
createBuilder(() => {
|
|
return { success: true };
|
|
})
|
|
);
|
|
architectHost.addTarget(
|
|
{ project: 'angular-cli', target: 'build-2' },
|
|
'@angular-devkit/build-angular:browser',
|
|
{
|
|
outputPath: 'dist/angular-cli',
|
|
index: 'src/index.html',
|
|
main: 'src/main.ts',
|
|
polyfills: 'src/polyfills.ts',
|
|
tsConfig: 'src/tsconfig.app.json',
|
|
assets: ['src/favicon.ico', 'src/assets'],
|
|
styles: ['src/styles.css'],
|
|
scripts: [],
|
|
}
|
|
);
|
|
|
|
// This will either take a Node package name, or a path to the directory
|
|
// for the package.json file.
|
|
await architectHost.addBuilderFromPackage(path.join(__dirname, '../../..'));
|
|
});
|
|
|
|
beforeEach(() => {
|
|
buildStandaloneMock.mockImplementation((_options: unknown) => Promise.resolve());
|
|
cpSpawnMock.spawn.mockImplementation(() => ({
|
|
stdout: { on: () => {} },
|
|
stderr: { on: () => {} },
|
|
on: (_event: string, cb: any) => cb(0),
|
|
}));
|
|
});
|
|
|
|
afterEach(() => {
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
it('should start storybook with angularBrowserTarget', async () => {
|
|
const run = await architect.scheduleBuilder('@storybook/angular:build-storybook', {
|
|
browserTarget: 'angular-cli:build-2',
|
|
compodoc: false,
|
|
});
|
|
|
|
const output = await run.result;
|
|
|
|
await run.stop();
|
|
|
|
expect(output.success).toBeTruthy();
|
|
expect(cpSpawnMock.spawn).not.toHaveBeenCalledWith();
|
|
expect(buildStandaloneMock).toHaveBeenCalledWith({
|
|
angularBrowserTarget: 'angular-cli:build-2',
|
|
configDir: '.storybook',
|
|
docsMode: false,
|
|
loglevel: undefined,
|
|
quiet: false,
|
|
outputDir: 'storybook-static',
|
|
staticDir: [],
|
|
mode: 'static',
|
|
compodoc: false,
|
|
compodocArgs: ['-e', 'json'],
|
|
tsConfig: 'src/tsconfig.app.json',
|
|
});
|
|
});
|
|
|
|
it('should start storybook with tsConfig', async () => {
|
|
const run = await architect.scheduleBuilder('@storybook/angular:build-storybook', {
|
|
tsConfig: 'path/to/tsConfig.json',
|
|
compodoc: false,
|
|
});
|
|
|
|
const output = await run.result;
|
|
|
|
await run.stop();
|
|
|
|
expect(output.success).toBeTruthy();
|
|
expect(cpSpawnMock.spawn).not.toHaveBeenCalledWith();
|
|
expect(buildStandaloneMock).toHaveBeenCalledWith({
|
|
angularBrowserTarget: null,
|
|
configDir: '.storybook',
|
|
docsMode: false,
|
|
loglevel: undefined,
|
|
quiet: false,
|
|
outputDir: 'storybook-static',
|
|
staticDir: [],
|
|
mode: 'static',
|
|
compodoc: false,
|
|
compodocArgs: ['-e', 'json'],
|
|
tsConfig: 'path/to/tsConfig.json',
|
|
});
|
|
});
|
|
|
|
it('should throw error', async () => {
|
|
buildStandaloneMock.mockRejectedValue(new Error());
|
|
|
|
const run = await architect.scheduleBuilder('@storybook/angular:start-storybook', {
|
|
browserTarget: 'angular-cli:build-2',
|
|
port: 4400,
|
|
compodoc: false,
|
|
});
|
|
|
|
try {
|
|
await run.result;
|
|
|
|
expect(false).toEqual('Throw expected');
|
|
} catch (error) {
|
|
// eslint-disable-next-line jest/no-try-expect, jest/no-conditional-expect
|
|
expect(error).toEqual(
|
|
'Broken build, fix the error above.\nYou may need to refresh the browser.'
|
|
);
|
|
}
|
|
});
|
|
|
|
it('should run compodoc', async () => {
|
|
const run = await architect.scheduleBuilder('@storybook/angular:build-storybook', {
|
|
browserTarget: 'angular-cli:build-2',
|
|
});
|
|
|
|
const output = await run.result;
|
|
|
|
await run.stop();
|
|
|
|
expect(output.success).toBeTruthy();
|
|
expect(cpSpawnMock.spawn).toHaveBeenCalledWith('compodoc', [
|
|
'-p',
|
|
'src/tsconfig.app.json',
|
|
'-d',
|
|
'',
|
|
'-e',
|
|
'json',
|
|
]);
|
|
expect(buildStandaloneMock).toHaveBeenCalledWith({
|
|
angularBrowserTarget: 'angular-cli:build-2',
|
|
configDir: '.storybook',
|
|
docsMode: false,
|
|
loglevel: undefined,
|
|
quiet: false,
|
|
outputDir: 'storybook-static',
|
|
staticDir: [],
|
|
mode: 'static',
|
|
compodoc: true,
|
|
compodocArgs: ['-e', 'json'],
|
|
tsConfig: 'src/tsconfig.app.json',
|
|
});
|
|
});
|
|
});
|