forked from jscad/OpenJSCAD.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.parameters.test.js
209 lines (148 loc) · 4.96 KB
/
cli.parameters.test.js
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
const test = require('ava')
const path = require('path')
const { execSync } = require('child_process')
const fs = require('fs')
test.afterEach.always((t) => {
// remove files
try {
if (t.context.inputPath) fs.unlinkSync(t.context.inputPath)
} catch (err) {}
try {
if (t.context.outputPath) fs.unlinkSync(t.context.outputPath)
} catch (err) {}
try {
if (t.context.folderPath) fs.rmdirSync(t.context.folderPath, { recursive: false })
} catch (err) {}
})
test.beforeEach((t) => {
const cliName = './cli.js'
t.context = {
cliPath: path.resolve(__dirname, cliName)
}
})
// CORE FUNCTIONALITY
// These tests create input and output files.
// create a simple JSCAD script for input
// the script should produce ALL geometry types
const createJscad = (id) => {
const jscadScript = `// test script ${id}
const { primitives } = require('@jscad/modeling')
const getParameterDefinitions = () => {
return [
{ name: 'segments', caption: 'Segements:', type: 'int', initial: 10, min: 5, max: 20, step: 1 }
]
}
const main = (params) => {
// parameters
let segments = params.segments || 16
// shapes
let apath2 = primitives.arc()
let ageom2 = primitives.ellipse()
let ageom3 = primitives.ellipsoid()
return [apath2, ageom2, ageom3]
}
module.exports = { main, getParameterDefinitions }
`
const fileName = `./test${id}.jscad`
const filePath = path.resolve(__dirname, fileName)
fs.writeFileSync(filePath, jscadScript)
return filePath
}
test('cli (single input file)', (t) => {
const testID = 1
const inputPath = createJscad(testID)
t.true(fs.existsSync(inputPath))
t.context.inputPath = inputPath
const outputName = `./test${testID}.stl`
const outputPath = path.resolve(__dirname, outputName)
t.false(fs.existsSync(outputPath))
t.context.outputPath = outputPath
const cliPath = t.context.cliPath
const cmd = `node ${cliPath} ${inputPath}`
execSync(cmd, { stdio: [0, 1, 2] })
t.true(fs.existsSync(outputPath))
})
test('cli (single input file, output format)', (t) => {
const testID = 2
const inputPath = createJscad(testID)
t.true(fs.existsSync(inputPath))
t.context.inputPath = inputPath
const outputName = `./test${testID}.dxf`
const outputPath = path.resolve(__dirname, outputName)
t.false(fs.existsSync(outputPath))
t.context.outputPath = outputPath
const cliPath = t.context.cliPath
const cmd = `node ${cliPath} ${inputPath} -of dxf`
execSync(cmd, { stdio: [0, 1, 2] })
t.true(fs.existsSync(outputPath))
})
test('cli (single input file, output filename)', (t) => {
const testID = 3
const inputPath = createJscad(testID)
t.true(fs.existsSync(inputPath))
t.context.inputPath = inputPath
const outputName = `./test${testID}.amf`
const outputPath = path.resolve(__dirname, outputName)
t.false(fs.existsSync(outputPath))
t.context.outputPath = outputPath
const cliPath = t.context.cliPath
const cmd = `node ${cliPath} ${inputPath} -o ${outputPath}`
execSync(cmd, { stdio: [0, 1, 2] })
t.true(fs.existsSync(outputPath))
})
test('cli (folder, output format)', (t) => {
const testID = 4
const inputPath = createJscad(testID)
t.true(fs.existsSync(inputPath))
t.context.inputPath = inputPath
const folderPath = path.resolve(__dirname, './test-folder')
t.false(fs.existsSync(folderPath))
fs.mkdirSync(folderPath)
t.true(fs.existsSync(folderPath))
t.context.folderPath = folderPath
const mainPath = path.resolve(__dirname, './test-folder/main.js')
fs.renameSync(inputPath, mainPath)
t.true(fs.existsSync(mainPath))
t.context.inputPath = mainPath
const outputName = './test-folder/main.dxf'
const outputPath = path.resolve(__dirname, outputName)
t.false(fs.existsSync(outputPath))
t.context.outputPath = outputPath
const cliPath = t.context.cliPath
const cmd = `node ${cliPath} ${folderPath} -of dxf`
execSync(cmd, { stdio: [0, 1, 2] })
t.true(fs.existsSync(outputPath))
})
test('cli (single input file, parameters)', (t) => {
const testID = 5
const inputPath = createJscad(testID)
t.true(fs.existsSync(inputPath))
t.context.inputPath = inputPath
const outputName = `./test${testID}.stl`
const outputPath = path.resolve(__dirname, outputName)
t.false(fs.existsSync(outputPath))
t.context.outputPath = outputPath
const cliPath = t.context.cliPath
const cmd = `node ${cliPath} ${inputPath} --segments 32 --nothing "Yes"`
execSync(cmd, { stdio: [0, 1, 2] })
t.true(fs.existsSync(outputPath))
})
test('cli (no parameters)', (t) => {
const cliPath = t.context.cliPath
const cmd = `node ${cliPath}`
t.throws(() => {
execSync(cmd, { stdio: [0, 1, 2] })
})
})
test('cli (single input file, invalid jscad)', (t) => {
const testID = 6
const inputPath = createJscad(testID)
fs.writeFileSync(inputPath, 'INVALID')
t.true(fs.existsSync(inputPath))
t.context.inputPath = inputPath
const cliPath = t.context.cliPath
const cmd = `node ${cliPath} ${inputPath}`
t.throws(() => {
execSync(cmd, { stdio: [0, 1, 2] })
})
})