-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathplugin.test.ts
More file actions
136 lines (118 loc) · 4.18 KB
/
Copy pathplugin.test.ts
File metadata and controls
136 lines (118 loc) · 4.18 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import '@openapi-qraft/plugin/lib/vitestFsMock';
import fs from 'node:fs';
import { createRequire } from 'node:module';
import { describe, expect, it, test } from 'vitest';
import { openapiTypesFileNameOptionParser } from './plugin.js';
describe('openapi-typescript types generation', () => {
const openAPIDocumentFixturePath = createRequire(process.cwd()).resolve(
'@openapi-qraft/test-fixtures/openapi.json'
);
test('no extra options', async () => {
const { QraftCommand } =
await import('@openapi-qraft/plugin/lib/QraftCommand');
const { plugin } = await import('./plugin.js');
const command = new QraftCommand();
plugin.setupCommand(command);
await command.parseAsync([
'dummy-node',
'dummy-qraft-bin',
openAPIDocumentFixturePath,
'-o',
'/mock-fs',
]);
expect(fs.readFileSync('/mock-fs/schema.ts', 'utf-8')).toMatchFileSnapshot(
'./__snapshots__/no-extra-options.ts.snapshot.ts'
);
});
test('with extra options', async () => {
const { QraftCommand } =
await import('@openapi-qraft/plugin/lib/QraftCommand');
const { plugin } = await import('./plugin.js');
const command = new QraftCommand();
plugin.setupCommand(command);
await command.parseAsync([
'dummy-node',
'dummy-qraft-bin',
openAPIDocumentFixturePath,
'-o',
'/mock-fs',
'--openapi-types-file-name',
'openapi.ts',
'--no-blob-from-binary',
'--filter-services',
'/files/**',
]);
expect(fs.readFileSync('/mock-fs/openapi.ts', 'utf-8')).toMatchFileSnapshot(
'./__snapshots__/with-extra-options.ts.snapshot.ts'
);
});
test('with --explicit-component-exports', async () => {
const { QraftCommand } =
await import('@openapi-qraft/plugin/lib/QraftCommand');
const { plugin } = await import('./plugin.js');
const command = new QraftCommand();
plugin.setupCommand(command);
await command.parseAsync([
'dummy-node',
'dummy-qraft-bin',
openAPIDocumentFixturePath,
'-o',
'/mock-fs',
'--openapi-types-file-name',
'openapi.ts',
'--filter-services',
'/files',
'--explicit-component-exports',
]);
expect(fs.readFileSync('/mock-fs/openapi.ts', 'utf-8')).toMatchFileSnapshot(
'./__snapshots__/with-explicit-component-exports.ts.snapshot.ts'
);
});
test('with --explicit-component-exports and --enum', async () => {
const { QraftCommand } =
await import('@openapi-qraft/plugin/lib/QraftCommand');
const { plugin } = await import('./plugin.js');
const command = new QraftCommand();
plugin.setupCommand(command);
await command.parseAsync([
'dummy-node',
'dummy-qraft-bin',
openAPIDocumentFixturePath,
'-o',
'/mock-fs',
'--openapi-types-file-name',
'openapi.ts',
'--filter-services',
'/files',
'--enum',
'--explicit-component-exports',
]);
expect(fs.readFileSync('/mock-fs/openapi.ts', 'utf-8')).toMatchFileSnapshot(
'./__snapshots__/with-explicit-component-enum-exports.ts.snapshot.ts'
);
});
});
describe('openapiTypesFileNameOptionParser', () => {
it('should return the input value if valid', () => {
expect(openapiTypesFileNameOptionParser('schema.ts')).toBe('schema.ts');
expect(openapiTypesFileNameOptionParser('schema.d.ts')).toBe('schema.d.ts');
});
it('should throw an error if the input value is invalid', () => {
expect(() => openapiTypesFileNameOptionParser('schema.js')).toThrowError(
'OpenAPI Schema types file name must end with ".ts" or ".d.ts"'
);
});
it('should throw an error if the input value includes path', () => {
expect(() =>
openapiTypesFileNameOptionParser('path/schema.ts')
).toThrowError('OpenAPI Schema types file name must not include path');
expect(() =>
openapiTypesFileNameOptionParser('path\\schema.ts')
).toThrowError('OpenAPI Schema types file name must not include path');
});
it('should throw an error if the input value starts with "."', () => {
expect(() => openapiTypesFileNameOptionParser('.schema.ts')).toThrowError(
'OpenAPI Schema types file name must not start with "."'
);
});
});