import { generate, baseParse, transform } from '@vue/compiler-core' import { transformAssetUrl, createAssetUrlTransformWithOptions, AssetURLOptions, normalizeOptions } from '../src/templateTransformAssetUrl' import { transformElement } from '../../compiler-core/src/transforms/transformElement' import { transformBind } from '../../compiler-core/src/transforms/vBind' function compileWithAssetUrls(template: string, options?: AssetURLOptions) { const ast = baseParse(template) const t = options ? createAssetUrlTransformWithOptions(normalizeOptions(options)) : transformAssetUrl transform(ast, { nodeTransforms: [t, transformElement], directiveTransforms: { bind: transformBind } }) return generate(ast, { mode: 'module' }) } describe('compiler sfc: transform asset url', () => { test('transform assetUrls', () => { const result = compileWithAssetUrls(` `) expect(result.code).toMatchSnapshot() }) /** * vuejs/component-compiler-utils#22 Support uri fragment in transformed require */ test('support uri fragment', () => { const result = compileWithAssetUrls( '' ) expect(result.code).toMatchSnapshot() }) /** * vuejs/component-compiler-utils#22 Support uri fragment in transformed require */ test('support uri is empty', () => { const result = compileWithAssetUrls('') expect(result.code).toMatchSnapshot() }) test('with explicit base', () => { const { code } = compileWithAssetUrls( `` + // -> /foo/bar.png `` + // -> bar.png (untouched) `` + // -> still converts to import ``, // -> 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( `` + `` + ``, { includeAbsolute: true } ) expect(code).toMatchSnapshot() }) // vitejs/vite#298 test('should not transform hash fragments', () => { const { code } = compileWithAssetUrls( ` ` ) // should not remove it expect(code).toMatch(`"xlink:href": "#myCircle"`) }) test('should allow for full base URLs, with paths', () => { const { code } = compileWithAssetUrls(``, { base: 'http://localhost:3000/src/' }) expect(code).toMatchSnapshot() }) test('should allow for full base URLs, without paths', () => { const { code } = compileWithAssetUrls(``, { base: 'http://localhost:3000' }) expect(code).toMatchSnapshot() }) test('should allow for full base URLs, without port', () => { const { code } = compileWithAssetUrls(``, { base: 'http://localhost' }) expect(code).toMatchSnapshot() }) test('should allow for full base URLs, without protocol', () => { const { code } = compileWithAssetUrls(``, { base: '//localhost' }) expect(code).toMatchSnapshot() }) })