forked from vitejs/vite
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathimport.spec.ts
198 lines (183 loc) Β· 5.6 KB
/
import.spec.ts
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
import { beforeEach, describe, expect, test, vi } from 'vitest'
import { transformCjsImport } from '../../plugins/importAnalysis'
describe('transformCjsImport', () => {
const url = './node_modules/.vite/deps/react.js'
const rawUrl = 'react'
const config: any = {
command: 'serve',
logger: {
warn: vi.fn(),
},
}
beforeEach(() => {
config.logger.warn.mockClear()
})
test('import specifier', () => {
expect(
transformCjsImport(
'import { useState, Component, "π" as fake } from "react"',
url,
rawUrl,
0,
'',
config,
),
).toBe(
'import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; ' +
'const useState = __vite__cjsImport0_react["useState"]; ' +
'const Component = __vite__cjsImport0_react["Component"]; ' +
'const fake = __vite__cjsImport0_react["π"]',
)
})
test('import default specifier', () => {
expect(
transformCjsImport(
'import React from "react"',
url,
rawUrl,
0,
'',
config,
),
).toBe(
'import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; ' +
'const React = __vite__cjsImport0_react.__esModule ? __vite__cjsImport0_react.default : __vite__cjsImport0_react',
)
expect(
transformCjsImport(
'import { default as React } from "react"',
url,
rawUrl,
0,
'',
config,
),
).toBe(
'import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; ' +
'const React = __vite__cjsImport0_react.__esModule ? __vite__cjsImport0_react.default : __vite__cjsImport0_react',
)
})
test('import all specifier', () => {
expect(
transformCjsImport(
'import * as react from "react"',
url,
rawUrl,
0,
'',
config,
),
).toMatchInlineSnapshot(
`
"import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; const react = ((m) => m?.__esModule ? m : {
...typeof m === "object" && !Array.isArray(m) || typeof m === "function" ? m : {},
default: m
})(__vite__cjsImport0_react)"
`,
)
})
test('export all specifier', () => {
expect(
transformCjsImport(
'export * from "react"',
url,
rawUrl,
0,
'modA',
config,
),
).toBe(undefined)
expect(config.logger.warn).toBeCalledWith(
expect.stringContaining(`export * from "react"\` in modA`),
)
expect(
transformCjsImport(
'export * as react from "react"',
url,
rawUrl,
0,
'',
config,
),
).toBe(undefined)
expect(config.logger.warn).toBeCalledTimes(1)
})
test('export name specifier', () => {
expect(
transformCjsImport(
'export { useState, Component, "π" } from "react"',
url,
rawUrl,
0,
'',
config,
),
).toBe(
'import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; ' +
'const __vite__cjsExportI_useState = __vite__cjsImport0_react["useState"]; ' +
'const __vite__cjsExportI_Component = __vite__cjsImport0_react["Component"]; ' +
'const __vite__cjsExportL_1d0452e3 = __vite__cjsImport0_react["π"]; ' +
'export { __vite__cjsExportI_useState as useState, __vite__cjsExportI_Component as Component, __vite__cjsExportL_1d0452e3 as "π" }',
)
expect(
transformCjsImport(
'export { useState as useStateAlias, Component as ComponentAlias, "π" as "π" } from "react"',
url,
rawUrl,
0,
'',
config,
),
).toBe(
'import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; ' +
'const __vite__cjsExportI_useStateAlias = __vite__cjsImport0_react["useState"]; ' +
'const __vite__cjsExportI_ComponentAlias = __vite__cjsImport0_react["Component"]; ' +
'const __vite__cjsExportL_5d57d39e = __vite__cjsImport0_react["π"]; ' +
'export { __vite__cjsExportI_useStateAlias as useStateAlias, __vite__cjsExportI_ComponentAlias as ComponentAlias, __vite__cjsExportL_5d57d39e as "π" }',
)
})
test('export default specifier', () => {
expect(
transformCjsImport(
'export { default } from "react"',
url,
rawUrl,
0,
'',
config,
),
).toBe(
'import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; ' +
'const __vite__cjsExportDefault_0 = __vite__cjsImport0_react.__esModule ? __vite__cjsImport0_react.default : __vite__cjsImport0_react; ' +
'export default __vite__cjsExportDefault_0',
)
expect(
transformCjsImport(
'export { default as React} from "react"',
url,
rawUrl,
0,
'',
config,
),
).toBe(
'import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; ' +
'const __vite__cjsExportI_React = __vite__cjsImport0_react.__esModule ? __vite__cjsImport0_react.default : __vite__cjsImport0_react; ' +
'export { __vite__cjsExportI_React as React }',
)
expect(
transformCjsImport(
'export { Component as default } from "react"',
url,
rawUrl,
0,
'',
config,
),
).toBe(
'import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; ' +
'const __vite__cjsExportDefault_0 = __vite__cjsImport0_react["Component"]; ' +
'export default __vite__cjsExportDefault_0',
)
})
})