generated from unjs/template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvue.test.ts
339 lines (285 loc) Β· 11 KB
/
vue.test.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
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
import MagicString, { SourceMap } from 'magic-string'
import { beforeEach, describe, expect, it } from 'vitest'
import { parse } from 'vue/compiler-sfc'
import { MagicSFC as MagicVueSFC, magicVueSfcOptions } from '../src/vue/sfc'
import { completeComponent, script, scriptSetup, style, styleScoped, template } from './utils'
describe('Magic Vue SFC', () => {
beforeEach(() => {
// Set default parser for MagicVueSFC
magicVueSfcOptions.parser = parse
})
it('Can create the class', async () => {
const sfc = await new MagicVueSFC(scriptSetup).parse()
expect(sfc.toString()).toBe(scriptSetup)
})
it('Cannot create a Magic Vue SFC without a parser function', async () => {
magicVueSfcOptions.parser = undefined
try {
await new MagicVueSFC(scriptSetup).parse()
throw new Error('Code should not reach this point!')
}
catch (e) {
expect(e.message).toBe('You must provide a `parser` function (from vue/compiler-sfc) in options when using MagicVueSFC.')
}
})
it('Can create the class from a MagicString', async () => {
const ms = new MagicString(scriptSetup)
const sfc = await new MagicVueSFC(ms).parse()
const appended = '\nlet secondTest: string'
sfc.scripts[0].append(appended)
expect(sfc.toString()).toBe(`<script setup>let scriptSetup: string${appended}</script>`)
})
it('Can get a sourcemap', async () => {
const sfc = await new MagicVueSFC(scriptSetup).parse()
expect(sfc.getSourcemap()).toBeInstanceOf(SourceMap)
})
it('Can parse a <script> tag', async () => {
const sfc = await new MagicVueSFC(script).parse()
expect(sfc.scripts[0]).toBeInstanceOf(Object)
})
it('Can parse a <script setup> tag', async () => {
const sfc = await new MagicVueSFC(scriptSetup).parse()
expect(sfc.scripts[0]).toBeInstanceOf(Object)
})
it('Can parse a <template> tag', async () => {
const sfc = await new MagicVueSFC(template).parse()
expect(sfc.templates[0]).toBeInstanceOf(Object)
})
it('Can parse a <style> tag', async () => {
const sfc = await new MagicVueSFC(style).parse()
expect(sfc.styles[0]).toBeInstanceOf(Object)
})
it('Can parse multiple <style> tags', async () => {
const sfc = await new MagicVueSFC(`${style}\n${styleScoped}`).parse()
expect(sfc.styles[0]).toBeInstanceOf(Object)
expect(sfc.styles[1]).toBeInstanceOf(Object)
})
it('Can parse a complete component', async () => {
const sfc = await new MagicVueSFC(completeComponent).parse()
expect(sfc.scripts[0]).toBeInstanceOf(Object)
expect(sfc.scripts[1]).toBeInstanceOf(Object)
expect(sfc.styles[0]).toBeInstanceOf(Object)
expect(sfc.styles[1]).toBeInstanceOf(Object)
expect(sfc.templates[0]).toBeInstanceOf(Object)
})
it('Can transform SFCBlock into MagicBlock<SFCBlock>', async () => {
const sfc = await new MagicVueSFC(completeComponent).parse()
sfc.scripts[1].append('test')
sfc.scripts[1].append('\nnew-test')
expect(sfc.scripts[1].toString()).toEqual('let scriptSetup: stringtest\nnew-test')
expect(sfc.toString()).toEqual(completeComponent.replace('let scriptSetup: string', 'let scriptSetup: stringtest\nnew-test'))
})
it('Can parse a custom block', async () => {
const customBlock = '<custom>\n Some custom content\n</custom>'
const sfc = await new MagicVueSFC(customBlock).parse()
expect(sfc.customs).toHaveLength(1)
expect(sfc.customs[0]).toBeInstanceOf(Object)
})
it('Can parse multiple custom blocks', async () => {
const customBlock1 = '<custom1>\n Some custom content\n</custom1>'
const customBlock2 = '<custom2>\n Some other custom content\n</custom2>'
const sfc = await new MagicVueSFC(`${customBlock1}\n${customBlock2}`).parse()
expect(sfc.customs).toHaveLength(2)
expect(sfc.customs[0]).toBeInstanceOf(Object)
expect(sfc.customs[1]).toBeInstanceOf(Object)
})
it('Can manipulate a <script> block', async () => {
const originalScript = '<script>\nexport default {\n name: "MyComponent",\n};\n</script>'
const expectedScript = '<script>\nexport default {\n name: "UpdatedComponent",\n};\n</script>'
const sfc = await new MagicVueSFC(originalScript).parse()
sfc.scripts[0].overwrite(27, 38, 'UpdatedComponent')
expect(sfc.toString()).toBe(expectedScript)
})
it('Can manipulate a <script setup> block', async () => {
const originalScriptSetup = '<script setup>\nconst msg = "Hello, world!";\n</script>'
const expectedScriptSetup = '<script setup>\nconst msg = "Hello, Mars!";\n</script>'
const sfc = await new MagicVueSFC(originalScriptSetup).parse()
sfc.scripts[0].overwrite(21, 26, 'Mars')
expect(sfc.toString()).toBe(expectedScriptSetup)
})
it('Can manipulate a <style> block', async () => {
const originalStyle = '<style>\n.text {\n color: red;\n}\n</style>'
const expectedStyle = '<style>\n.text {\n color: blue;\n}\n</style>'
const sfc = await new MagicVueSFC(originalStyle).parse()
sfc.styles[0].overwrite(18, 21, 'blue')
expect(sfc.toString()).toBe(expectedStyle)
})
it('Can manipulate nested elements in a <template> block', async () => {
const originalNestedTemplate = '<template>\n <div><span>Hello, world!</span></div>\n</template>'
const expectedNestedTemplate = '<template>\n <div><span>Hello, Mars!</span></div>\n</template>'
const sfc = await new MagicVueSFC(originalNestedTemplate).parse()
sfc.templates[0].overwrite(21, 26, 'Mars')
expect(sfc.toString()).toBe(expectedNestedTemplate)
})
it('Can handle empty blocks', async () => {
const emptyScript = '<script></script>'
const emptyScriptSetup = '<script setup></script>'
const emptyTemplate = '<template></template>'
const emptyStyle = '<style></style>'
const sfc = await new MagicVueSFC(`${emptyScriptSetup}\n${emptyScript}\n${emptyTemplate}\n${emptyStyle}`).parse()
// Vue SFC parser does sets null for empty script blocks
expect(sfc.scripts.length).toBeFalsy()
expect(sfc.styles.length).toBeFalsy()
// Vue SFC parser does detect <template>
expect(sfc.templates.length).toBeTruthy()
})
it('Can append content to a <script> block', async () => {
const baseContent = '\nexport default {\n name: "MyComponent",\n};\n'
const appended = '\nconsole.log("Appended!");'
const originalScript = `<script>${baseContent}</script>`
const expectedScript = `<script>${baseContent}${appended}</script>`
const sfc = await new MagicVueSFC(originalScript).parse()
sfc.scripts[0].append(appended)
expect(sfc.toString()).toBe(expectedScript)
})
it('Can appendLeft content to a <script> block', async () => {
const baseContent = '\nexport default {\n name: "MyComponent",\n};\n'
const appended = '\nconsole.log("AppendedLeft!");'
const originalScript = `<script>${baseContent}</script>`
const expectedScript = `<script>${appended}${baseContent}</script>`
const sfc = await new MagicVueSFC(originalScript).parse()
sfc.scripts[0].appendLeft(0, appended)
expect(sfc.toString()).toBe(expectedScript)
})
it('Can appendRight content to a <script> block', async () => {
const baseContent = '\nexport default {\n name: "MyComponent",\n};\n'
const appended = '\nconsole.log("AppendedRight!");'
const originalScript = `<script>${baseContent}</script>`
const expectedScript = `<script>${baseContent}${appended}</script>`
const sfc = await new MagicVueSFC(originalScript).parse()
sfc.scripts[0].appendRight(baseContent.length, appended)
expect(sfc.toString()).toBe(expectedScript)
})
it('Can prepend content to a <script> block', async () => {
const baseContent = '\nexport default {\n name: "MyComponent",\n};\n'
const prepended = '\nconsole.log("Prepended!");'
const originalScript = `<script>${baseContent}</script>`
const expectedScript = `<script>${prepended}${baseContent}</script>`
const sfc = await new MagicVueSFC(originalScript).parse()
sfc.scripts[0].prepend(prepended)
expect(sfc.toString()).toBe(expectedScript)
})
it('Can prependLeft content to a <script> block', async () => {
const baseContent = '\nexport default {\n name: "MyComponent",\n};\n'
const prepended = '\nconsole.log("PrependedLeft!");'
const originalScript = `<script>${baseContent}</script>`
const expectedScript = `<script>${prepended}${baseContent}</script>`
const sfc = await new MagicVueSFC(originalScript).parse()
sfc.scripts[0].prependLeft(0, prepended)
expect(sfc.toString()).toBe(expectedScript)
})
it('Can prependRight content to a <script> block', async () => {
const baseContent = '\nexport default {\n name: "MyComponent",\n};\n'
const prepended = '\nconsole.log("PrependedRight!");'
const originalScript = `<script>${baseContent}</script>`
const expectedScript = `<script>${baseContent}${prepended}</script>`
const sfc = await new MagicVueSFC(originalScript).parse()
sfc.scripts[0].prependRight(baseContent.length, prepended)
expect(sfc.toString()).toBe(expectedScript)
})
it('Can manipulate every block of an SFC', async () => {
const originalSFC = `
<template>
<div>{{ msg }}</div>
</template>
<script>
export default {
data() {
return {
msg: "Hello, world!",
};
},
};
</script>
<script setup>
const setupMsg = 'Hello from setup!';
</script>
<style>
.text {
color: red;
}
</style>
`
const expectedSFC = `
<template>
<div>{{ updatedMsg }}</div>
</template>
<script>
export default {
data() {
return {
msg: "Hello, Mars!",
};
},
};
</script>
<script setup>
const setupMsg = 'Hello from updated setup!';
</script>
<style>
.text {
color: blue;
}
</style>
`
const sfc = await new MagicVueSFC(originalSFC).parse()
sfc.templates[0].overwrite(11, 14, 'updatedMsg')
sfc.scripts[0].overwrite(61, 66, 'Mars')
sfc.scripts[1].appendLeft(29, ' updated')
sfc.styles[0].overwrite(18, 21, 'blue')
expect(sfc.toString()).toBe(expectedSFC)
})
it('Uses all methods on different blocks', async () => {
const originalSFC = `
<template>
<div>Hello, world!</div>
</template>
<script>
export default {
name: "MyComponent",
};
</script>
<style>
.text {
color: red;
}
</style>
`
const expectedSFC = `
<template>
<span>Hi, Mars!</span>
<div>Hello, world!</div>
</template>
<script>
console.log('Prepended!');
export default {
name: "UpdatedComponent",
data() {
return {
message: 'Appended!',
};
}
};
console.log('Appended!');
</script>
<style>
.text {
color: blue;
font-size: 16px;
}
</style>
`
const sfc = await new MagicVueSFC(originalSFC).parse()
// Manipulate <template> block
sfc.templates[0].prepend('\n <span>Hi, Mars!</span>')
// Manipulate <script> block
sfc.scripts[0].prepend('\nconsole.log(\'Prepended!\');')
sfc.scripts[0].append('console.log(\'Appended!\');\n')
sfc.scripts[0].overwrite(27, 38, 'UpdatedComponent')
sfc.scripts[0].appendRight(40, '\n data() {\n return {\n message: \'Appended!\',\n };\n }')
// Manipulate <style> block
sfc.styles[0].overwrite(18, 21, 'blue')
sfc.styles[0].appendRight(22, '\n font-size: 16px;')
expect(sfc.toString()).toBe(expectedSFC)
})
})