|
1 | 1 | import { useHead, useSeoMeta } from 'unhead'
|
2 | 2 | import { renderSSRHead } from 'unhead/server'
|
| 3 | +import { transformHtmlTemplate } from 'unhead/server/transformHtmlTemplate' |
3 | 4 | import { describe, it } from 'vitest'
|
4 | 5 | import { basicSchema } from '../../fixtures'
|
5 | 6 | import { createServerHeadWithContext } from '../../util'
|
@@ -214,4 +215,137 @@ describe('ssr', () => {
|
214 | 215 | }
|
215 | 216 | `)
|
216 | 217 | })
|
| 218 | + it('vite template', async () => { |
| 219 | + const html = `<!doctype html> |
| 220 | + <html lang="en"> |
| 221 | + <head> |
| 222 | + <meta charset="UTF-8" /> |
| 223 | + <link rel="icon" type="image/svg+xml" href="/vite.svg" /> |
| 224 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 225 | + <title>Vite + Vue + TS</title> |
| 226 | + <!--app-head--> |
| 227 | + </head> |
| 228 | + <body> |
| 229 | + <div id="app"><!--app-html--></div> |
| 230 | + <script type="module" src="/src/entry-client.ts"></script> |
| 231 | + </body> |
| 232 | + </html>` |
| 233 | + const head = createServerHeadWithContext() |
| 234 | + head.push({ |
| 235 | + title: 'new title', |
| 236 | + meta: [ |
| 237 | + { charset: 'utf-16' }, |
| 238 | + ], |
| 239 | + }) |
| 240 | + expect(await transformHtmlTemplate(head, html)).toMatchInlineSnapshot(` |
| 241 | + "<!doctype html> |
| 242 | + <html lang="en"> |
| 243 | + <head> |
| 244 | + <!--app-head--> |
| 245 | + <meta charset="utf-16"> |
| 246 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 247 | + <title>new title</title> |
| 248 | + <link rel="icon" type="image/svg+xml" href="/vite.svg"></head> |
| 249 | + <body> |
| 250 | + <div id="app"><!--app-html--></div> |
| 251 | + <script type="module" src="/src/entry-client.ts"></script> |
| 252 | + </body> |
| 253 | + </html>" |
| 254 | + `) |
| 255 | + }) |
| 256 | + it('random template', async () => { |
| 257 | + const html = ` |
| 258 | + <html lang="en"> |
| 259 | + <head> |
| 260 | + <meta charset="UTF-8"> |
| 261 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 262 | + <title>Document</title> |
| 263 | + <link rel="stylesheet" href="style.css"> |
| 264 | + <script src="script.js" async type="module"></script> |
| 265 | + </head> |
| 266 | + <body style="accent-color: red;"> |
| 267 | + <div>hello</div> |
| 268 | + <script src="ssr.test.ts"></script> |
| 269 | + <script> |
| 270 | + console.log('hello') |
| 271 | +</script> |
| 272 | + </body> |
| 273 | + </html> |
| 274 | + ` |
| 275 | + const head = createServerHeadWithContext() |
| 276 | + head.push({ |
| 277 | + title: 'new title', |
| 278 | + bodyAttrs: { |
| 279 | + style: 'background-color: blue;', |
| 280 | + }, |
| 281 | + meta: [ |
| 282 | + { charset: 'utf-16' }, |
| 283 | + ], |
| 284 | + }) |
| 285 | + expect(await transformHtmlTemplate(head, html)).toMatchInlineSnapshot(` |
| 286 | + " |
| 287 | + <html lang="en"> |
| 288 | + <head> |
| 289 | + <meta charset="utf-16"> |
| 290 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 291 | + <title>new title</title> |
| 292 | + <link rel="stylesheet" href="style.css"> |
| 293 | + <script src="script.js" async type="module"></script></head> |
| 294 | + <body style="background-color: blue; accent-color: red"> |
| 295 | + <div>hello</div> |
| 296 | + <script src="ssr.test.ts"></script> |
| 297 | + <script> |
| 298 | + console.log('hello') |
| 299 | + </script> |
| 300 | + </body> |
| 301 | + </html> |
| 302 | + " |
| 303 | + `) |
| 304 | + }) |
| 305 | + it('random template #2', async () => { |
| 306 | + const html = ` |
| 307 | + <!DOCTYPE html> |
| 308 | +<html lang="en"> |
| 309 | +<head> |
| 310 | + <meta charset="UTF-8"> |
| 311 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 312 | + <meta name="description" content="Test description"> |
| 313 | + <link rel="stylesheet" href="styles.css"> |
| 314 | + <link rel="icon" href="favicon.ico"> |
| 315 | + <base href="/"> |
| 316 | + <title>Test Document</title> |
| 317 | + <style>body { font-family: Arial, sans-serif; }</style> |
| 318 | + <script src="script.js" async></script> |
| 319 | + <script>console.log('Inline script');</script> |
| 320 | + <!-- Resource Hints --> |
| 321 | + <link rel="preload" href="styles.css" as="style"> |
| 322 | + <link rel="preload" href="script.js" as="script"> |
| 323 | + <link rel="dns-prefetch" href="//example.com"> |
| 324 | + <link rel="preconnect" href="//example.com"> |
| 325 | + <link rel="prefetch" href="another-script.js"> |
| 326 | +</head> |
| 327 | +<body style="background-color: #f0f0f0;"> |
| 328 | + <div id="content">Hello, world!</div> |
| 329 | + <script src="another-script.js"></script> |
| 330 | +</body> |
| 331 | +</html>` |
| 332 | + const head = createServerHeadWithContext() |
| 333 | + const processedHtml = await transformHtmlTemplate(head, html) |
| 334 | + expect(processedHtml).toContain('<meta charset="UTF-8">') |
| 335 | + expect(processedHtml).toContain('<meta name="viewport" content="width=device-width, initial-scale=1.0">') |
| 336 | + expect(processedHtml).toContain('<meta name="description" content="Test description">') |
| 337 | + expect(processedHtml).toContain('<link rel="stylesheet" href="styles.css">') |
| 338 | + expect(processedHtml).toContain('<link rel="icon" href="favicon.ico">') |
| 339 | + expect(processedHtml).toContain('<base href="/">') |
| 340 | + expect(processedHtml).toContain('<title>Test Document</title>') |
| 341 | + expect(processedHtml).toContain('<style>body { font-family: Arial, sans-serif; }</style>') |
| 342 | + expect(processedHtml).toContain('<script src="script.js" async></script>') |
| 343 | + expect(processedHtml).toContain('<script>console.log(\'Inline script\');</script>') |
| 344 | + expect(processedHtml).toContain('<link rel="preload" href="styles.css" as="style">') |
| 345 | + expect(processedHtml).toContain('<link rel="preload" href="script.js" as="script">') |
| 346 | + expect(processedHtml).toContain('<link rel="dns-prefetch" href="//example.com">') |
| 347 | + expect(processedHtml).toContain('<link rel="preconnect" href="//example.com">') |
| 348 | + expect(processedHtml).toContain('<link rel="prefetch" href="another-script.js">') |
| 349 | + expect(processedHtml).toContain('<script src="another-script.js"></script>') |
| 350 | + }) |
217 | 351 | })
|
0 commit comments