-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathbuild-prod.spec.ts
More file actions
438 lines (390 loc) · 15 KB
/
Copy pathbuild-prod.spec.ts
File metadata and controls
438 lines (390 loc) · 15 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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
// Copyright (c) 2022 Climate Interactive / New Venture Fund
import { existsSync, rmSync } from 'node:fs'
import { join as joinPath, resolve as resolvePath } from 'node:path'
import { beforeEach, describe, expect, it } from 'vitest'
import type { ModelSpec, Plugin, ResolvedModelSpec, UserConfig } from '../../src'
import { build } from '../../src'
import { buildOptions } from '../_shared/build-options'
const modelSpec: ModelSpec = {
inputs: [{ varName: 'Y', defaultValue: 0, minValue: -10, maxValue: 10 }],
outputs: [{ varName: 'Z' }],
datFiles: []
}
const plugin = (num: number, calls: string[]) => {
const record = (f: string) => {
calls.push(`plugin ${num}: ${f}`)
}
const p: Plugin = {
init: async () => {
record('init')
},
preGenerate: async () => {
record('preGenerate')
},
preProcessMdl: async () => {
record('preProcessMdl')
},
postProcessMdl: async (_, mdlContent) => {
record('postProcessMdl')
return mdlContent
},
preGenerateCode: async (_, format) => {
record(`preGenerateCode ${format}`)
},
postGenerateCode: async (_, format, content) => {
record(`postGenerateCode ${format}`)
return content
},
postGenerate: async () => {
record('postGenerate')
return true
},
postBuild: async () => {
record('postBuild')
return true
},
watch: async () => {
record('watch')
}
}
return p
}
describe('build in production mode', () => {
beforeEach(() => {
const prepDir = resolvePath(__dirname, 'sde-prep')
rmSync(prepDir, { recursive: true, force: true })
const outputsDir = resolvePath(__dirname, 'outputs')
rmSync(outputsDir, { recursive: true, force: true })
})
it('should resolve model spec (when input/output specs are provided)', async () => {
let resolvedModelSpec: ResolvedModelSpec
const userConfig: UserConfig = {
genFormat: 'c',
rootDir: resolvePath(__dirname, '..'),
prepDir: resolvePath(__dirname, 'sde-prep'),
modelFiles: [resolvePath(__dirname, '..', '_shared', 'sample.mdl')],
modelSpec: async () => {
// Note that we return full spec instances here
return {
inputs: [{ varName: 'Y', defaultValue: 0, minValue: -10, maxValue: 10 }],
outputs: [{ varName: 'Z' }]
}
},
plugins: [
{
preGenerate: async (_context, modelSpec) => {
resolvedModelSpec = modelSpec
}
}
]
}
const result = await build('production', buildOptions(userConfig))
if (result.isErr()) {
throw new Error('Expected ok result but got: ' + result.error.message)
}
expect(result.value.exitCode).toBe(0)
expect(resolvedModelSpec!).toBeDefined()
expect(resolvedModelSpec!.inputVarNames).toEqual(['Y'])
expect(resolvedModelSpec!.inputs).toEqual([{ varName: 'Y', defaultValue: 0, minValue: -10, maxValue: 10 }])
expect(resolvedModelSpec!.outputVarNames).toEqual(['Z'])
expect(resolvedModelSpec!.outputs).toEqual([{ varName: 'Z' }])
expect(resolvedModelSpec!.datFiles).toEqual([])
expect(resolvedModelSpec!.bundleListing).toBe(false)
expect(resolvedModelSpec!.customConstants).toBe(false)
expect(resolvedModelSpec!.customLookups).toBe(false)
expect(resolvedModelSpec!.customOutputs).toBe(false)
})
it('should resolve model spec (when input/output var names are provided)', async () => {
let resolvedModelSpec: ResolvedModelSpec
const userConfig: UserConfig = {
genFormat: 'c',
rootDir: resolvePath(__dirname, '..'),
prepDir: resolvePath(__dirname, 'sde-prep'),
modelFiles: [resolvePath(__dirname, '..', '_shared', 'sample.mdl')],
modelSpec: async () => {
// Note that we return only variable names here
return {
inputs: ['Y'],
outputs: ['Z'],
bundleListing: true,
customLookups: ['lookup1'],
customOutputs: ['output1']
}
},
plugins: [
{
preGenerate: async (_context, modelSpec) => {
resolvedModelSpec = modelSpec
}
}
]
}
const result = await build('production', buildOptions(userConfig))
if (result.isErr()) {
throw new Error('Expected ok result but got: ' + result.error.message)
}
expect(result.value.exitCode).toBe(0)
expect(resolvedModelSpec!).toBeDefined()
expect(resolvedModelSpec!.inputVarNames).toEqual(['Y'])
expect(resolvedModelSpec!.inputs).toEqual([{ varName: 'Y' }])
expect(resolvedModelSpec!.outputVarNames).toEqual(['Z'])
expect(resolvedModelSpec!.outputs).toEqual([{ varName: 'Z' }])
expect(resolvedModelSpec!.datFiles).toEqual([])
expect(resolvedModelSpec!.bundleListing).toBe(true)
expect(resolvedModelSpec!.customConstants).toBe(false)
expect(resolvedModelSpec!.customLookups).toEqual(['lookup1'])
expect(resolvedModelSpec!.customOutputs).toEqual(['output1'])
})
it('should resolve model spec (when boolean is provided for customConstants, customLookups, and customOutputs)', async () => {
let resolvedModelSpec: ResolvedModelSpec
const userConfig: UserConfig = {
genFormat: 'c',
rootDir: resolvePath(__dirname, '..'),
prepDir: resolvePath(__dirname, 'sde-prep'),
modelFiles: [resolvePath(__dirname, '..', '_shared', 'sample.mdl')],
modelSpec: async () => {
// Note that we return only variable names here
return {
inputs: ['Y'],
outputs: ['Z'],
bundleListing: true,
customConstants: true,
customLookups: true,
customOutputs: true
}
},
plugins: [
{
preGenerate: async (_context, modelSpec) => {
resolvedModelSpec = modelSpec
}
}
]
}
const result = await build('production', buildOptions(userConfig))
if (result.isErr()) {
throw new Error('Expected ok result but got: ' + result.error.message)
}
expect(result.value.exitCode).toBe(0)
expect(resolvedModelSpec!).toBeDefined()
expect(resolvedModelSpec!.bundleListing).toBe(true)
expect(resolvedModelSpec!.customConstants).toEqual(true)
expect(resolvedModelSpec!.customLookups).toEqual(true)
expect(resolvedModelSpec!.customOutputs).toEqual(true)
})
it('should write listing.json file (when absolute path is provided)', async () => {
const userConfig: UserConfig = {
genFormat: 'c',
rootDir: resolvePath(__dirname, '..'),
prepDir: resolvePath(__dirname, 'sde-prep'),
modelFiles: [resolvePath(__dirname, '..', '_shared', 'sample.mdl')],
// Note that `outListingFile` is specified with an absolute path here
outListingFile: resolvePath(__dirname, 'outputs', 'listing.json'),
modelSpec: async () => {
return modelSpec
}
}
const result = await build('production', buildOptions(userConfig))
if (result.isErr()) {
throw new Error('Expected ok result but got: ' + result.error.message)
}
expect(result.value.exitCode).toBe(0)
expect(existsSync(resolvePath(__dirname, 'outputs', 'listing.json'))).toBe(true)
})
it('should write listing.json file (when relative path is provided)', async () => {
const userConfig: UserConfig = {
genFormat: 'c',
rootDir: resolvePath(__dirname, '..'),
prepDir: resolvePath(__dirname, 'sde-prep'),
modelFiles: [resolvePath(__dirname, '..', '_shared', 'sample.mdl')],
// Note that `outListingFile` is specified with a relative path here, which
// will be resolved relative to `rootDir`
outListingFile: joinPath('build-prod', 'outputs', 'listing.json'),
modelSpec: async () => {
return modelSpec
}
}
const result = await build('production', buildOptions(userConfig))
if (result.isErr()) {
throw new Error('Expected ok result but got: ' + result.error.message)
}
expect(result.value.exitCode).toBe(0)
expect(existsSync(resolvePath(__dirname, 'outputs', 'listing.json'))).toBe(true)
})
it('should skip certain callbacks if model files array is empty', async () => {
const calls: string[] = []
const userConfig: UserConfig = {
genFormat: 'c',
rootDir: resolvePath(__dirname, '..'),
prepDir: resolvePath(__dirname, 'sde-prep'),
modelFiles: [],
modelSpec: async () => {
calls.push('modelSpec')
return modelSpec
},
plugins: [plugin(1, calls), plugin(2, calls)]
}
const result = await build('production', buildOptions(userConfig))
if (result.isErr()) {
throw new Error('Expected ok result but got: ' + result.error.message)
}
expect(result.value.exitCode).toBe(0)
expect(calls).toEqual([
'plugin 1: init',
'plugin 2: init',
'modelSpec',
'plugin 1: preGenerate',
'plugin 2: preGenerate',
'plugin 1: postGenerate',
'plugin 2: postGenerate',
'plugin 1: postBuild',
'plugin 2: postBuild'
])
})
it('should call plugin functions in the expected order', async () => {
const calls: string[] = []
const userConfig: UserConfig = {
rootDir: resolvePath(__dirname, '..'),
prepDir: resolvePath(__dirname, 'sde-prep'),
modelFiles: [resolvePath(__dirname, '..', '_shared', 'sample.mdl')],
modelSpec: async () => {
calls.push('modelSpec')
return modelSpec
},
plugins: [plugin(1, calls), plugin(2, calls)]
}
const result = await build('production', buildOptions(userConfig))
if (result.isErr()) {
throw new Error('Expected ok result but got: ' + result.error.message)
}
expect(result.value.exitCode).toBe(0)
expect(calls).toEqual([
'plugin 1: init',
'plugin 2: init',
'modelSpec',
'plugin 1: preGenerate',
'plugin 2: preGenerate',
'plugin 1: preProcessMdl',
'plugin 2: preProcessMdl',
'plugin 1: postProcessMdl',
'plugin 2: postProcessMdl',
'plugin 1: preGenerateCode js',
'plugin 2: preGenerateCode js',
'plugin 1: postGenerateCode js',
'plugin 2: postGenerateCode js',
'plugin 1: postGenerate',
'plugin 2: postGenerate',
'plugin 1: postBuild',
'plugin 2: postBuild'
])
})
describe('should fail if plugin throws error', () => {
async function buildSample(plugin: Plugin): Promise<string> {
const userConfig: UserConfig = {
rootDir: resolvePath(__dirname, '..'),
prepDir: resolvePath(__dirname, 'sde-prep'),
modelFiles: [resolvePath(__dirname, '..', '_shared', 'sample.mdl')],
modelSpec: async () => {
return modelSpec
},
plugins: [plugin]
}
const result = await build('production', buildOptions(userConfig))
if (result.isOk()) {
throw new Error('Expected err result but got: ' + result.value)
}
return result.error.message
}
async function verify(pluginFunc: keyof Plugin): Promise<void> {
const plugin = {} as Plugin
plugin[pluginFunc] = async () => {
throw new Error(`${pluginFunc} error`)
}
const msg = await buildSample(plugin)
expect(msg).toBe(`${pluginFunc} error`)
}
it('in init', async () => verify('init'))
it('in preGenerate', async () => verify('preGenerate'))
it('in preProcessMdl', async () => verify('preProcessMdl'))
it('in postProcessMdl', async () => verify('postProcessMdl'))
it('in preGenerateCode', async () => verify('preGenerateCode'))
it('in postGenerateCode', async () => verify('postGenerateCode'))
it('in postGenerate', async () => verify('postGenerate'))
it('in postBuild', async () => verify('postBuild'))
})
// TODO: Not sure how to cause the preprocessor to fail, so this test is
// skipped for now
it.skip('should fail if preprocess step throws an error', async () => {
const modelSpec: ModelSpec = {
inputs: [{ varName: 'Y', defaultValue: 0, minValue: -10, maxValue: 10 }],
outputs: [{ varName: 'Z' }]
}
const mdlDir = resolvePath(__dirname, '..', '_shared')
const userConfig: UserConfig = {
rootDir: resolvePath(__dirname, '..'),
prepDir: resolvePath(__dirname, 'sde-prep'),
modelFiles: [resolvePath(mdlDir, 'sample.mdl')],
modelSpec: async () => {
return modelSpec
}
}
const result = await build('production', buildOptions(userConfig))
if (result.isOk()) {
throw new Error('Expected err result but got: ' + result.value)
}
// TODO: This error message isn't helpful, but it's due to the fact that
// the `preprocess` function spawns an `sde` process rather than calling
// into the compiler directly. Once we improve it to call into the
// compiler, we can improve the error message.
expect(result.error.message).toBe(`Failed to flatten mdl files: 'sde flatten' command failed (code=1)`)
})
it('should fail if flatten step throws an error', async () => {
const modelSpec: ModelSpec = {
inputs: [{ varName: 'Y', defaultValue: 0, minValue: -10, maxValue: 10 }],
outputs: [{ varName: 'Z' }]
}
const mdlDir = resolvePath(__dirname, '..', '_shared')
const userConfig: UserConfig = {
rootDir: resolvePath(__dirname, '..'),
prepDir: resolvePath(__dirname, 'sde-prep'),
modelFiles: [resolvePath(mdlDir, 'submodel1.mdl'), resolvePath(mdlDir, 'submodel2.mdl')],
modelSpec: async () => {
return modelSpec
}
}
const result = await build('production', buildOptions(userConfig))
if (result.isOk()) {
throw new Error('Expected err result but got: ' + result.value)
}
// TODO: This error message isn't helpful, but it's due to the fact that
// the `flatten` function spawns an `sde` process rather than calling
// into the compiler directly. Once we improve it to call into the
// compiler, we can improve the error message.
expect(result.error.message).toBe(`Failed to flatten mdl files: 'sde flatten' command failed (code=1)`)
})
it('should fail if generate step throws an error when dat file cannot be read', async () => {
const modelSpec: ModelSpec = {
inputs: [{ varName: 'Y', defaultValue: 0, minValue: -10, maxValue: 10 }],
outputs: [{ varName: 'Z' }],
datFiles: ['unknown.dat']
}
const userConfig: UserConfig = {
genFormat: 'c',
rootDir: resolvePath(__dirname, '..'),
prepDir: resolvePath(__dirname, 'sde-prep'),
modelFiles: [resolvePath(__dirname, '..', '_shared', 'sample.mdl')],
modelSpec: async () => {
return modelSpec
}
}
const result = await build('production', buildOptions(userConfig))
if (result.isOk()) {
throw new Error('Expected err result but got: ' + result.value)
}
// TODO: This error message isn't helpful, but it's due to the fact that
// the `generateCode` function spawns an `sde` process rather than calling
// into the compiler directly. Once we improve it to call into the
// compiler, the error message here should be the one from `readDat`.
expect(result.error.message).toBe(`Failed to generate C code: 'sde generate' command failed (code=1)`)
})
})