generated from unjs/template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathastro.create.test.ts
146 lines (128 loc) Β· 3.22 KB
/
astro.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
import { beforeEach, describe, expect, it } from 'vitest'
import { parse } from '@astrojs/compiler'
import {
createBlock as createAstroBlock,
createSFC as createAstroSFC,
} from '../src/astro/create'
import { magicAstroSfcOptions } from '../src/astro/sfc'
describe('Create Astro Block', () => {
beforeEach(() => {
// Set default parser for MagicAstroSFC
magicAstroSfcOptions.parser = parse
})
it('Should create a template block correctly', () => {
const block = {
content: '<div>Hello World</div>',
}
const result = createAstroBlock(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 = createAstroBlock(block, 'scripts')
expect(result).toBe('<script>\nconsole.log("Hello World");\n</script>') // Adjusted as per your implementation
})
it('Should create a style block correctly', () => {
const block = {
content: 'body { color: red; }',
}
const result = createAstroBlock(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 = createAstroBlock(block, 'styles')
expect(result).toBe('<style lang="scss">\nbody { color: red; }\n</style>')
})
it('Should return an empty string if no block is provided', () => {
const result = createAstroBlock(undefined, 'templates')
expect(result).toBe('')
})
it('Should handle missing block.attrs gracefully', () => {
const block = {
content: '<div>Hello</div>',
}
const result = createAstroBlock(block, 'templates')
// Ensure that the block creation works without errors and the content is present
expect(result).toBe('<div>Hello</div>')
})
})
describe('Create Astro SFC', () => {
beforeEach(() => {
// Set default parser for MagicAstroSFC
magicAstroSfcOptions.parser = parse
})
it('Can create an SFC with template, script, and styles', () => {
const sfc = createAstroSFC({
templates: [{
content: '<div>{{ msg }}</div>',
}],
scripts: [
{
content: `export default {
data() {
return {
msg: "Hello, world!",
};
},
};`,
},
],
styles: [
{
content: `.text {
color: red;
}`,
},
],
})
const expectedSFC = `<script>
export default {
data() {
return {
msg: "Hello, world!",
};
},
};
</script>
<div>{{ msg }}</div>
<style>
.text {
color: red;
}
</style>`
expect(sfc.toString()).toBe(expectedSFC)
})
it('Can create an SFC with custom blocks', () => {
const sfc = createAstroSFC({
templates: [{
content: '<div>{{ msg }}</div>',
}],
scripts: [{
content: `export default {
data() {
return {
msg: "Hello, world!",
};
},
};`,
}],
})
const expectedSFC = `<script>
export default {
data() {
return {
msg: "Hello, world!",
};
},
};
</script>
<div>{{ msg }}</div>`
expect(sfc.toString()).toBe(expectedSFC)
})
})