-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathbuild-docs.test.ts
59 lines (53 loc) · 1.77 KB
/
build-docs.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { createStore, loadAndBundleSpec } from 'redoc';
import { renderToString } from 'react-dom/server';
import { handlerBuildCommand } from '../../commands/build-docs/index.js';
import { BuildDocsArgv } from '../../commands/build-docs/types.js';
import { getPageHTML } from '../../commands/build-docs/utils.js';
import { getFallbackApisOrExit } from '../../utils/miscellaneous.js';
jest.mock('redoc');
jest.mock('fs');
jest.mock('../../utils/miscellaneous');
const config = {
output: '',
title: 'Test',
disableGoogleFont: false,
templateFileName: '',
templateOptions: {},
redocOptions: {},
};
jest.mock('react-dom/server', () => ({
renderToString: jest.fn(),
}));
jest.mock('handlebars', () => ({
compile: jest.fn(() => jest.fn(() => '<html></html>')),
}));
describe('build-docs', () => {
it('should return correct html and call function for ssr', async () => {
const result = await getPageHTML({}, '../some-path/openapi.yaml', {
...config,
redocCurrentVersion: '2.0.0',
});
expect(renderToString).toBeCalledTimes(1);
expect(createStore).toBeCalledTimes(1);
expect(result).toBe('<html></html>');
});
it('should work correctly when calling handlerBuildCommand', async () => {
const processExitMock = jest.spyOn(process, 'exit').mockImplementation();
await handlerBuildCommand({
argv: {
o: '',
title: 'test',
disableGoogleFont: false,
template: '',
templateOptions: {},
theme: { openapi: {} },
api: '../some-path/openapi.yaml',
} as BuildDocsArgv,
config: {} as any,
version: 'cli-version',
});
expect(loadAndBundleSpec).toBeCalledTimes(1);
expect(getFallbackApisOrExit).toBeCalledTimes(1);
expect(processExitMock).toBeCalledTimes(0);
});
});