generated from unjs/template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsvelte.create.test.ts
186 lines (162 loc) Β· 4.14 KB
/
svelte.create.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
import { beforeEach, describe, expect, it } from 'vitest'
import { preprocess } from 'svelte/compiler'
import { createSFC as create, createBlock as createSvelteBlock } from '../src/svelte/create'
import { magicSvelteSfcOptions } from '../src/svelte/sfc'
describe('Create Svelte Block', () => {
beforeEach(() => {
// Set default parser for MagicVueSFC
magicSvelteSfcOptions.parser = preprocess
})
it('Should create a template block correctly', () => {
const block = {
content: '<div>Hello World</div>',
}
const result = createSvelteBlock(block, 'templates')
expect(result).toBe('<div>Hello World</div>')
})
it('Should create a script block correctly', () => {
const block = {
content: 'console.log("Hello World");',
}
const result = createSvelteBlock(block, 'scripts')
expect(result).toBe('<script>\nconsole.log("Hello World");\n</script>')
})
it('Should create a style block correctly', () => {
const block = {
content: 'body { color: red; }',
}
const result = createSvelteBlock(block, 'styles')
expect(result).toBe('<style>\nbody { color: red; }\n</style>')
})
it('Should handle multiple attributes correctly', () => {
const block = {
attrs: { lang: 'scss' },
content: 'body { color: red; }',
} as const
const result = createSvelteBlock(block, 'styles')
expect(result).toBe('<style>\nbody { color: red; }\n</style>')
})
it('Should return an empty string if no block is provided', () => {
const result = createSvelteBlock(undefined, 'templates')
expect(result).toBe('')
})
it('Should handle missing block.attrs gracefully', () => {
const block = {
content: '<div>Hello</div>',
}
const result = createSvelteBlock(block, 'templates')
// Ensure that the block creation works without errors and the content is present
expect(result).toBe('<div>Hello</div>')
})
it('Should handle missing templates option gracefully', () => {
const options = {
scripts: [{ content: 'console.log("Hello");' }],
}
const result = create(options)
const sfcContent = result.toString() // Assuming toString method exists
// Assert there is no <template> block but the <script> block exists
expect(sfcContent).not.toContain('<template>')
expect(sfcContent).toContain('<script>\nconsole.log("Hello");\n</script>')
})
})
describe('Create Svelte SFC', () => {
beforeEach(() => {
// Set default parser for MagicVueSFC
magicSvelteSfcOptions.parser = preprocess
})
it('Can create an SFC with template, script, scriptSetup, and styles', () => {
const sfc = create({
templates: [{
content: '<div>{{ msg }}</div>',
}],
scripts: [
{
content: `export default {
data() {
return {
msg: "Hello, world!",
};
},
};`,
},
],
styles: [
{
content: `.text {
color: red;
}`,
},
],
})
const expectedSFC = `<div>{{ msg }}</div>\n
<script>
export default {
data() {
return {
msg: "Hello, world!",
};
},
};
</script>
<style>
.text {
color: red;
}
</style>`
expect(sfc.toString()).toBe(expectedSFC)
})
it('Can create an SFC with custom blocks', () => {
const sfc = create({
templates: [{
content: '<div>{{ msg }}</div>',
}],
scripts: [{
content: `export default {
data() {
return {
msg: "Hello, world!",
};
},
};`,
}],
})
const expectedSFC = `<div>{{ msg }}</div>
<script>
export default {
data() {
return {
msg: "Hello, world!",
};
},
};
</script>`
expect(sfc.toString()).toBe(expectedSFC)
})
it('Can create an SFC with attributes, lang, and src', () => {
const sfc = create({
templates: [{
content: '<div>{{ msg }}</div>',
}],
scripts: [{
content: 'console.log("Hello");',
}],
styles: [
{
content: `.text {
color: red;
}`,
},
],
})
const expectedSFC = `<div>{{ msg }}</div>
<script>
console.log("Hello");
</script>
<style>
.text {
color: red;
}
</style>`
expect(sfc.toString()).toBe(expectedSFC)
})
})