| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import { generate, baseParse, transform } from '@vue/compiler-core'
- import {
- transformAssetUrl,
- createAssetUrlTransformWithOptions
- } from '../src/templateTransformAssetUrl'
- import { transformElement } from '../../compiler-core/src/transforms/transformElement'
- import { transformBind } from '../../compiler-core/src/transforms/vBind'
- function compileWithAssetUrls(template: string) {
- const ast = baseParse(template)
- transform(ast, {
- nodeTransforms: [transformAssetUrl, transformElement],
- directiveTransforms: {
- bind: transformBind
- }
- })
- 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="/fixtures/logo.png"/>
- `)
- 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>'
- )
- 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 ast = baseParse(
- `<img src="./bar.png"></img>` + // -> /foo/bar.png
- `<img src="~bar.png"></img>` + // -> /foo/bar.png
- `<img src="bar.png"></img>` + // -> bar.png (untouched)
- `<img src="@theme/bar.png"></img>` // -> @theme/bar.png (untouched)
- )
- transform(ast, {
- nodeTransforms: [
- createAssetUrlTransformWithOptions({
- base: '/foo'
- }),
- transformElement
- ],
- directiveTransforms: {
- bind: transformBind
- }
- })
- const { code } = generate(ast, { mode: 'module' })
- expect(code).toMatchSnapshot()
- })
- })
|