-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathindex.test.mjs
More file actions
254 lines (217 loc) · 7.17 KB
/
index.test.mjs
File metadata and controls
254 lines (217 loc) · 7.17 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
import assert from 'node:assert';
import { describe, it, mock, beforeEach } from 'node:test';
// Mock dependencies
const mockParseChangelog = mock.fn(async changelog => [changelog]);
const mockParseIndex = mock.fn(async index => [index]);
const mockImportFromURL = mock.fn(async () => ({}));
const createMockConfig = (overrides = {}) => ({
global: {},
...overrides,
});
// Mock modules
mock.module('../../../generators/index.mjs', {
namedExports: {
allGenerators: {
json: { defaultConfiguration: { format: 'json' } },
html: { defaultConfiguration: { format: 'html' } },
markdown: {},
},
},
});
mock.module('../../../parsers/markdown.mjs', {
namedExports: {
parseChangelog: mockParseChangelog,
parseIndex: mockParseIndex,
},
});
mock.module('../../url.mjs', {
namedExports: { importFromURL: mockImportFromURL },
});
const {
loadConfigFile,
createConfigFromCLIOptions,
createRunConfiguration,
setConfig,
default: getConfig,
} = await import('../index.mjs');
// Helper to reset all mocks
const resetAllMocks = () => {
[mockParseChangelog, mockParseIndex, mockImportFromURL].forEach(m =>
m.mock.resetCalls()
);
};
// Helper to count specific function calls
const countCallsMatching = (mockFn, predicate) =>
mockFn.mock.calls.filter(call => predicate(call.arguments)).length;
describe('config.mjs', () => {
beforeEach(resetAllMocks);
describe('loadConfigFile', () => {
it('should load config from file path', async () => {
const mockConfig = { custom: 'config' };
mockImportFromURL.mock.mockImplementationOnce(async () => mockConfig);
const result = await loadConfigFile('path/to/config.mjs');
assert.deepStrictEqual(result, mockConfig);
assert.strictEqual(mockImportFromURL.mock.calls.length, 1);
assert.strictEqual(
mockImportFromURL.mock.calls[0].arguments[0],
'path/to/config.mjs'
);
});
it('should return empty object for falsy paths', async () => {
for (const falsyValue of ['', null, undefined, 0, false]) {
const result = await loadConfigFile(falsyValue);
assert.deepStrictEqual(result, {});
}
assert.strictEqual(mockImportFromURL.mock.calls.length, 0);
});
});
describe('createConfigFromCLIOptions', () => {
it('should convert CLI options to config structure', () => {
const options = {
input: 'src/',
ignore: ['test/'],
output: 'dist/',
minify: false,
gitRef: 'v20.0.0',
version: '20.0.0',
changelog: 'https://example.com/CHANGELOG.md',
index: 'https://example.com/index.md',
typeMap: { String: 'string' },
target: 'json',
threads: 4,
chunkSize: 5,
progress: true,
};
const config = createConfigFromCLIOptions(options);
assert.deepStrictEqual(config, {
global: {
input: 'src/',
ignore: ['test/'],
output: 'dist/',
minify: false,
ref: 'v20.0.0',
version: '20.0.0',
changelog: 'https://example.com/CHANGELOG.md',
index: 'https://example.com/index.md',
},
metadata: { typeMap: { String: 'string' } },
target: 'json',
threads: 4,
chunkSize: 5,
progress: true,
});
});
it('should handle empty options', () => {
const config = createConfigFromCLIOptions({});
assert.ok(config.global);
assert.ok(config.metadata);
assert.strictEqual(config.global.input, undefined);
assert.strictEqual(config.threads, undefined);
});
});
describe('createRunConfiguration', () => {
it('should merge config sources in correct order', async () => {
mockImportFromURL.mock.mockImplementationOnce(async () =>
createMockConfig({ global: { input: 'custom-src/' } })
);
const config = await createRunConfiguration({
configFile: 'config.mjs',
output: 'custom-dist/',
threads: 2,
});
assert.strictEqual(config.global.input, 'custom-src/');
assert.strictEqual(config.global.output, 'custom-dist/');
assert.strictEqual(config.threads, 2);
});
it('should transform string values only once', async () => {
const changelogUrl = 'https://example.com/changelog.md';
const indexUrl = 'https://example.com/index.md';
mockImportFromURL.mock.mockImplementationOnce(async () =>
createMockConfig({
global: {
version: '20.0.0',
changelog: changelogUrl,
index: indexUrl,
},
})
);
resetAllMocks(); // Clear calls from getDefaultConfig
await createRunConfiguration({ configFile: 'config.mjs' });
// Each should be called at least once for the string value
assert.ok(
countCallsMatching(
mockParseChangelog,
([arg]) => arg === changelogUrl
) >= 1
);
assert.ok(
countCallsMatching(mockParseIndex, ([arg]) => arg === indexUrl) >= 1
);
});
it('should enforce minimum constraints', async () => {
const config = await createRunConfiguration({
threads: -5,
chunkSize: 0,
});
assert.strictEqual(config.threads, 1);
assert.strictEqual(config.chunkSize, 1);
});
it('should work without config file', async () => {
const config = await createRunConfiguration({
version: '20.0.0',
threads: 4,
});
assert.ok(config);
assert.strictEqual(config.threads, 4);
assert.strictEqual(mockImportFromURL.mock.calls.length, 0);
});
it('should handle generator-specific overrides', async () => {
mockImportFromURL.mock.mockImplementationOnce(async () =>
createMockConfig({
global: { version: '20.0.0' },
json: { minify: false, version: '18.0.0' },
})
);
const config = await createRunConfiguration({
configFile: 'config.mjs',
});
assert.ok(config.json);
assert.ok(config.html);
assert.ok(config.markdown);
});
});
describe('setConfig and getConfig', () => {
it('should persist config across calls', async () => {
const config = await setConfig({ version: '20.0.0', threads: 2 });
const retrieved = getConfig();
assert.strictEqual(config, retrieved);
assert.ok(config.global);
});
});
describe('transformation optimization', () => {
const testCases = [
{
name: 'changelog parsing',
value: 'https://example.com/CHANGELOG.md',
mockFn: mockParseChangelog,
configKey: 'changelog',
},
{
name: 'index parsing',
value: 'https://example.com/index.md',
mockFn: mockParseIndex,
configKey: 'index',
},
];
for (const { name, value, mockFn, configKey } of testCases) {
it(`should transform ${name} only for strings`, async () => {
mockImportFromURL.mock.mockImplementationOnce(async () =>
createMockConfig({ global: { [configKey]: value } })
);
resetAllMocks();
await createRunConfiguration({ configFile: 'config.mjs' });
assert.ok(countCallsMatching(mockFn, ([arg]) => arg === value) >= 1);
});
}
});
});