forked from evanw/esbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathend-to-end-tests.js
173 lines (156 loc) · 8.05 KB
/
end-to-end-tests.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
const childProcess = require('child_process')
const path = require('path')
const util = require('util')
const fs = require('fs')
const testDir = path.join(__dirname, '.end-to-end-tests')
const esbuildPath = path.join(__dirname, '..', 'esbuild')
let testCount = 0
let tests = [
// Tests for "--define"
test(['--define:foo=null', 'in.js', '--outfile=node.js'], { 'in.js': `if (foo !== null) throw 'fail'` }),
test(['--define:foo=true', 'in.js', '--outfile=node.js'], { 'in.js': `if (foo !== true) throw 'fail'` }),
test(['--define:foo=false', 'in.js', '--outfile=node.js'], { 'in.js': `if (foo !== false) throw 'fail'` }),
test(['--define:foo="abc"', 'in.js', '--outfile=node.js'], { 'in.js': `if (foo !== "abc") throw 'fail'` }),
test(['--define:foo=123.456', 'in.js', '--outfile=node.js'], { 'in.js': `if (foo !== 123.456) throw 'fail'` }),
test(['--define:foo=-123.456', 'in.js', '--outfile=node.js'], { 'in.js': `if (foo !== -123.456) throw 'fail'` }),
test(['--define:foo=global', 'in.js', '--outfile=node.js'], { 'in.js': `foo.bar = 123; if (bar !== 123) throw 'fail'` }),
test(['--define:foo=bar', 'in.js', '--outfile=node.js'], { 'in.js': `let bar = {x: 123}; if (foo.x !== 123) throw 'fail'` }),
// Tests for symlinks
test(['--bundle', 'in.js', '--outfile=node.js'], {
'in.js': `import {foo} from 'foo'; if (foo !== 123) throw 'fail'`,
'registry/node_modules/foo/index.js': `export {bar as foo} from 'bar'`,
'registry/node_modules/bar/index.js': `export const bar = 123`,
'node_modules/foo': { symlink: `../registry/node_modules/foo` },
}),
test(['--bundle', 'in.js', '--outfile=node.js'], {
'in.js': `import {foo} from 'foo'; if (foo !== 123) throw 'fail'`,
'registry/node_modules/foo/index.js': `export {bar as foo} from 'bar'`,
'registry/node_modules/bar/index.js': `export const bar = 123`,
'node_modules/foo/index.js': { symlink: `../../registry/node_modules/foo/index.js` },
}),
]
// Test CommonJS export (internal and external)
for (let isExternal of [false, true]) {
const args = isExternal ? ['--format=cjs', 'foo.js', '--outfile=out.js'] : ['bar.js', '--outfile=node.js']
const innerName = isExternal ? 'out.js' : 'foo.js'
const outerName = isExternal ? 'node.js' : 'bar.js'
tests.push(
test(['--bundle'].concat(args), {
'foo.js': `exports.foo = 123`,
[outerName]: `const out = require('./${innerName}'); if (out.__esModule || out.foo !== 123) throw 'fail'`,
}),
test(['--bundle'].concat(args), {
'foo.js': `module.exports = 123`,
[outerName]: `const out = require('./${innerName}'); if (out.__esModule || out !== 123) throw 'fail'`,
}),
test(['--bundle'].concat(args), {
'foo.js': `export const foo = 123`,
[outerName]: `const out = require('./${innerName}'); if (!out.__esModule || out.foo !== 123) throw 'fail'`,
}),
test(['--bundle'].concat(args), {
'foo.js': `export default 123`,
[outerName]: `const out = require('./${innerName}'); if (!out.__esModule || out.default !== 123) throw 'fail'`,
}),
)
}
// Test CommonJS import (internal and external)
for (let isExternal of [false, true]) {
const external = isExternal ? ['--external:foo'] : []
const name = isExternal ? 'index.js' : 'node.js'
tests.push(
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `const foo = require('foo'); if (!foo.bar.endsWith('${name}')) throw 'fail'`,
'node_modules/foo/index.js': `exports.bar = __filename`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `const foo = require('foo'); if (!foo.endsWith('${name}')) throw 'fail'`,
'node_modules/foo/index.js': `module.exports = __filename`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `import * as foo from 'foo'; if (!foo.bar.endsWith('${name}')) throw 'fail'`,
'node_modules/foo/index.js': `exports.bar = __filename`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `import * as foo from 'foo'; if (!foo.default.endsWith('${name}')) throw 'fail'`,
'node_modules/foo/index.js': `module.exports = __filename`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `import foo from 'foo'; if (!foo.endsWith('${name}')) throw 'fail'`,
'node_modules/foo/index.js': `module.exports = __filename`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `import * as foo from 'foo'; if (!foo.default.default.endsWith('${name}')) throw 'fail'`,
'node_modules/foo/index.js': `module.exports = {default: __filename}`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `import * as foo from 'foo'; if (!foo.default.endsWith('${name}')) throw 'fail'`,
'node_modules/foo/index.js': `module.exports = {__esModule: true, default: __filename}`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `import foo from 'foo'; if (!foo.default.endsWith('${name}')) throw 'fail'`,
'node_modules/foo/index.js': `module.exports = {default: __filename}`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `import foo from 'foo'; if (!foo.endsWith('${name}')) throw 'fail'`,
'node_modules/foo/index.js': `module.exports = {__esModule: true, default: __filename}`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `import('foo').then(foo => setTimeout(() => { if (!foo.bar.endsWith('${name}')) throw 'fail' }))`,
'node_modules/foo/index.js': `exports.bar = __filename`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `import('foo').then(foo => setTimeout(() => { if (!foo.default.endsWith('${name}')) throw 'fail' }))`,
'node_modules/foo/index.js': `module.exports = __filename`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `import('foo').then(foo => setTimeout(() => { if (!foo.default.default.endsWith('${name}')) throw 'fail' }))`,
'node_modules/foo/index.js': `module.exports = {default: __filename}`,
}),
test(['--bundle', 'in.js', '--outfile=node.js'].concat(external), {
'in.js': `import('foo').then(foo => setTimeout(() => { if (!foo.default.endsWith('${name}')) throw 'fail' }))`,
'node_modules/foo/index.js': `module.exports = {__esModule: true, default: __filename}`,
}),
)
}
function test(args, files) {
return async () => {
try {
const thisTestDir = path.join(testDir, '' + testCount++)
// Test setup
for (const file in files) {
const filePath = path.join(thisTestDir, file)
const contents = files[file]
await util.promisify(childProcess.exec)(`mkdir -p "${path.dirname(filePath)}"`)
// Optionally symlink the file if the test requests it
if (contents.symlink) await util.promisify(fs.symlink)(contents.symlink, filePath)
else await util.promisify(fs.writeFile)(filePath, contents)
}
// Run esbuild
await util.promisify(childProcess.execFile)(esbuildPath, args, { cwd: thisTestDir, stdio: 'pipe' })
// Run the resulting node.js file and make sure it exits cleanly
require(path.join(thisTestDir, 'node.js'))
}
catch (e) {
console.error(`❌ test failed: ${e && e.message || e}
args: ${args.join(' ')}
files: ${Object.entries(files).map(([k, v]) => `\n ${k}: ${v}`).join('')}`)
return false
}
return true
}
}
async function main() {
// Make sure esbuild is built
childProcess.execSync('make', { cwd: path.dirname(__dirname), stdio: 'pipe' })
// Create a fresh test directory
childProcess.execSync(`rm -fr "${testDir}"`)
fs.mkdirSync(testDir)
// Run all tests concurrently
const allTestsPassed = (await Promise.all(tests.map(test => test()))).every(success => success)
// Clean up test output
childProcess.execSync(`rm -fr "${testDir}"`)
if (!allTestsPassed) {
process.exit(1)
}
}
main().catch(e => setTimeout(() => { throw e }))