-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathvue-ssr.test.ts
175 lines (161 loc) · 4.34 KB
/
vue-ssr.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
import { createSSRApp, ref } from 'vue'
import { renderToString } from '@vue/server-renderer'
import { Head, createHead, renderHeadToString, useHead } from '../src'
import { ssrRenderHeadToString } from './shared/utils'
describe('vue ssr', () => {
test('server', async () => {
const headResult = await ssrRenderHeadToString(() => useHead({
title: 'hello',
htmlAttrs: {
lang: 'zh',
},
meta: [
{
name: 'description',
content: 'desc',
},
{
name: 'description',
content: 'desc 2',
},
{
property: 'og:locale:alternate',
content: 'fr',
key: 'fr',
},
{
property: 'og:locale:alternate',
content: 'zh',
key: 'zh',
},
],
script: [
{
src: 'foo.js',
},
],
}))
expect(headResult.headTags).toMatchInlineSnapshot(
`
"<title>hello</title>
<meta name=\\"description\\" content=\\"desc\\">
<meta name=\\"description\\" content=\\"desc 2\\">
<meta property=\\"og:locale:alternate\\" content=\\"fr\\">
<meta property=\\"og:locale:alternate\\" content=\\"zh\\">
<script src=\\"foo.js\\"></script>"
`,
)
expect(headResult.htmlAttrs).toEqual(' lang="zh"')
})
test('useHead: server async setup', async () => {
const head = createHead()
const app = createSSRApp({
async setup() {
const title = ref('initial title')
useHead({
title,
})
await new Promise(resolve => setTimeout(resolve, 200))
title.value = 'new title'
return () => '<div>hi</div>'
},
})
app.use(head)
await renderToString(app)
const { headTags } = await renderHeadToString(head)
expect(headTags).match(/new title/)
})
test('<Head>: link & meta with v-for', async () => {
const head = createHead()
const app = createSSRApp({
template: `<Head>
<meta v-for="meta in metaList" :key="meta.property" :property="meta.property" :content="meta.content" />
</Head>`,
components: { Head },
data() {
return {
metaList: [
{ property: 'test1', content: 'test1' },
{ property: 'test2', content: 'test2' },
],
}
},
})
app.use(head)
await renderToString(app)
const { headTags } = await renderHeadToString(head)
expect(headTags).toMatchInlineSnapshot(
`
"<meta property=\\"test1\\" content=\\"test1\\">
<meta property=\\"test2\\" content=\\"test2\\">"
`,
)
})
test('children', async () => {
const headResult = await ssrRenderHeadToString(() => {
useHead({
script: [
{
innerHTML: 'console.log(\'hi\')',
},
],
})
})
expect(headResult.headTags).toMatchInlineSnapshot(
'"<script>console.log(\'hi\')</script>"',
)
})
test('script key', async () => {
const headResult = await ssrRenderHeadToString(() =>
useHead({
script: [
{
src: 'test',
key: 'my-script',
innerHTML: 'console.log(\'A\')',
},
{
key: 'my-script',
innerHTML: 'console.log(\'B\')',
},
],
}),
)
expect(headResult.headTags).toMatchInlineSnapshot(`
"<script src=\\"test\\" data-hid=\\"722c761\\">console.log('A')</script>
<script data-hid=\\"722c761\\">console.log('B')</script>"
`)
})
test('#issue 138', async () => {
const headResult = await ssrRenderHeadToString(() =>
useHead({
link: [
{
href: '/',
},
...[].map(() => ({
rel: 'prefetch',
href: '',
})), // this damages the type inference
{ rel: 'icon', type: 'image/svg', href: '/favicon.svg' },
],
}),
)
expect(headResult.headTags).toMatchInlineSnapshot(
`
"<link href=\\"/\\">
<link rel=\\"icon\\" type=\\"image/svg\\" href=\\"/favicon.svg\\">"
`,
)
})
test('non-strings', async () => {
const headResult = await ssrRenderHeadToString(() => useHead({
htmlAttrs: {
'data-something': true,
},
}))
expect(headResult.htmlAttrs).toMatchInlineSnapshot(
'" data-something=\\"true\\""',
)
})
})