| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- import {
- type TransformOptions,
- baseParse,
- generate,
- transform,
- } from '@vue/compiler-core'
- import {
- type AssetURLOptions,
- createAssetUrlTransformWithOptions,
- normalizeOptions,
- transformAssetUrl,
- } from '../src/template/transformAssetUrl'
- import { transformElement } from '../../compiler-core/src/transforms/transformElement'
- import { transformBind } from '../../compiler-core/src/transforms/vBind'
- import { stringifyStatic } from '../../compiler-dom/src/transforms/stringifyStatic'
- function compileWithAssetUrls(
- template: string,
- options?: AssetURLOptions,
- transformOptions?: TransformOptions,
- ) {
- const ast = baseParse(template)
- const t = options
- ? createAssetUrlTransformWithOptions(normalizeOptions(options))
- : transformAssetUrl
- transform(ast, {
- nodeTransforms: [t, transformElement],
- directiveTransforms: {
- bind: transformBind,
- },
- ...transformOptions,
- })
- return generate(ast, { mode: 'module' })
- }
- describe('compiler sfc: transform asset url', () => {
- test('transform assetUrls', () => {
- const result = compileWithAssetUrls(`
- <img src="./logo.png"/>
- <img src="~fixtures/logo.png"/>
- <img src="~/fixtures/logo.png"/>
- <img src="http://example.com/fixtures/logo.png"/>
- <img src="//example.com/fixtures/logo.png"/>
- <img src="/fixtures/logo.png"/>
- <img src="data:image/png;base64,i"/>
- `)
- expect(result.code).toMatchSnapshot()
- })
- /**
- * vuejs/component-compiler-utils#22 Support uri fragment in transformed require
- */
- test('support uri fragment', () => {
- const result = compileWithAssetUrls(
- '<use href="~@svg/file.svg#fragment"></use>' +
- '<use href="~@svg/file.svg#fragment"></use>',
- {},
- {
- hoistStatic: true,
- },
- )
- expect(result.code).toMatchSnapshot()
- })
- /**
- * vuejs/component-compiler-utils#22 Support uri fragment in transformed require
- */
- test('support uri is empty', () => {
- const result = compileWithAssetUrls('<use href="~"></use>')
- expect(result.code).toMatchSnapshot()
- })
- test('with explicit base', () => {
- const { code } = compileWithAssetUrls(
- `<img src="./bar.png"></img>` + // -> /foo/bar.png
- `<img src="bar.png"></img>` + // -> bar.png (untouched)
- `<img src="~bar.png"></img>` + // -> still converts to import
- `<img src="@theme/bar.png"></img>`, // -> still converts to import
- {
- base: '/foo',
- },
- )
- expect(code).toMatch(`import _imports_0 from 'bar.png'`)
- expect(code).toMatch(`import _imports_1 from '@theme/bar.png'`)
- expect(code).toMatchSnapshot()
- })
- test('with includeAbsolute: true', () => {
- const { code } = compileWithAssetUrls(
- `<img src="./bar.png"/>` +
- `<img src="/bar.png"/>` +
- `<img src="https://foo.bar/baz.png"/>` +
- `<img src="//foo.bar/baz.png"/>`,
- {
- includeAbsolute: true,
- },
- )
- expect(code).toMatchSnapshot()
- })
- // vitejs/vite#298
- test('should not transform hash fragments', () => {
- const { code } = compileWithAssetUrls(
- `<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
- <defs>
- <circle id="myCircle" cx="0" cy="0" r="5" />
- </defs>
- <use x="5" y="5" xlink:href="#myCircle" />
- </svg>`,
- )
- // should not remove it
- expect(code).toMatch(`"xlink:href": "#myCircle"`)
- })
- test('should allow for full base URLs, with paths', () => {
- const { code } = compileWithAssetUrls(`<img src="./logo.png" />`, {
- base: 'http://localhost:3000/src/',
- })
- expect(code).toMatchSnapshot()
- })
- test('should allow for full base URLs, without paths', () => {
- const { code } = compileWithAssetUrls(`<img src="./logo.png" />`, {
- base: 'http://localhost:3000',
- })
- expect(code).toMatchSnapshot()
- })
- test('should allow for full base URLs, without port', () => {
- const { code } = compileWithAssetUrls(`<img src="./logo.png" />`, {
- base: 'http://localhost',
- })
- expect(code).toMatchSnapshot()
- })
- test('should allow for full base URLs, without protocol', () => {
- const { code } = compileWithAssetUrls(`<img src="./logo.png" />`, {
- base: '//localhost',
- })
- expect(code).toMatchSnapshot()
- })
- test('transform with stringify', () => {
- const { code } = compileWithAssetUrls(
- `<div>` +
- `<img src="./bar.png"/>` +
- `<img src="/bar.png"/>` +
- `<img src="https://foo.bar/baz.png"/>` +
- `<img src="//foo.bar/baz.png"/>` +
- `<img src="./bar.png"/>` +
- `</div>`,
- {
- includeAbsolute: true,
- },
- {
- hoistStatic: true,
- transformHoist: stringifyStatic,
- },
- )
- expect(code).toMatch(`_createStaticVNode`)
- expect(code).toMatchSnapshot()
- })
- test('transform with stringify with space in absolute filename', () => {
- const { code } = compileWithAssetUrls(
- `<div><img src="/foo bar.png"/></div>`,
- {
- includeAbsolute: true,
- },
- {
- hoistStatic: true,
- transformHoist: stringifyStatic,
- },
- )
- expect(code).toMatch(`_createElementVNode`)
- expect(code).toContain(`import _imports_0 from '/foo bar.png'`)
- })
- test('transform with stringify with space in relative filename', () => {
- const { code } = compileWithAssetUrls(
- `<div><img src="./foo bar.png"/></div>`,
- {
- includeAbsolute: true,
- },
- {
- hoistStatic: true,
- transformHoist: stringifyStatic,
- },
- )
- expect(code).toMatch(`_createElementVNode`)
- expect(code).toContain(`import _imports_0 from './foo bar.png'`)
- })
- })
|