mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
49 lines
1.7 KiB
TypeScript
49 lines
1.7 KiB
TypeScript
|
import { normalize } from 'pathe'
|
||
|
import { describe, expect, it } from 'vitest'
|
||
|
import { ImportProtectionPlugin, vueAppPatterns } from '../src/core/plugins/import-protection'
|
||
|
|
||
|
const testsToTriggerOn = [
|
||
|
['~/nuxt.config', 'app.vue', true],
|
||
|
['./nuxt.config', 'app.vue', true],
|
||
|
['./nuxt.config.ts', 'app.vue', true],
|
||
|
['nuxt.config.ts', 'app.vue', true],
|
||
|
['./.nuxt/nuxt.config', 'app.vue', false],
|
||
|
['.nuxt/nuxt.config', 'app.vue', false],
|
||
|
['nuxt', 'components/Component.vue', true],
|
||
|
['nuxt3', 'components/Component.vue', true],
|
||
|
['/root/node_modules/@vue/composition-api', 'components/Component.vue', true],
|
||
|
['@vue/composition-api', 'components/Component.vue', true],
|
||
|
['@nuxt/kit', 'components/Component.vue', true],
|
||
|
['/root/node_modules/@nuxt/kit', 'components/Component.vue', true],
|
||
|
['some-nuxt-module', 'components/Component.vue', true],
|
||
|
['/root/src/server/api/test.ts', 'components/Component.vue', true],
|
||
|
['src/server/api/test.ts', 'components/Component.vue', true]
|
||
|
] as const
|
||
|
|
||
|
describe('import protection', () => {
|
||
|
it.each(testsToTriggerOn)('should protect %s', async (id, importer, isProtected) => {
|
||
|
const result = await transformWithImportProtection(id, importer)
|
||
|
if (!isProtected) {
|
||
|
expect(result).toBeNull()
|
||
|
} else {
|
||
|
expect(result).toBeDefined()
|
||
|
expect(normalize(result)).contains('unenv/runtime/mock/proxy')
|
||
|
}
|
||
|
})
|
||
|
})
|
||
|
|
||
|
const transformWithImportProtection = (id: string, importer: string) => {
|
||
|
const plugin = ImportProtectionPlugin.rollup({
|
||
|
rootDir: '/root',
|
||
|
patterns: vueAppPatterns({
|
||
|
options: {
|
||
|
modules: ['some-nuxt-module'],
|
||
|
srcDir: 'src/',
|
||
|
dir: { server: 'server' }
|
||
|
}
|
||
|
} as any)
|
||
|
})
|
||
|
|
||
|
return (plugin as any).resolveId(id, importer)
|
||
|
}
|