|
| 1 | +import { mockValidatedConfig } from '@stencil/core/testing'; |
| 2 | +import type { OutputTargetDistCollection } from '@stencil/core/declarations'; |
| 3 | +import { ValidatedConfig } from '../../../internal'; |
| 4 | +import { transpileModule } from './transpile'; |
| 5 | +import ts, { Extension } from 'typescript'; |
| 6 | +import { mapImportsToPathAliases } from '../map-imports-to-path-aliases'; |
| 7 | + |
| 8 | +describe('mapImportsToPathAliases', () => { |
| 9 | + let module: ReturnType<typeof transpileModule>; |
| 10 | + let config: ValidatedConfig; |
| 11 | + let resolveModuleNameSpy: jest.SpyInstance< |
| 12 | + ReturnType<typeof ts.resolveModuleName>, |
| 13 | + Parameters<typeof ts.resolveModuleName> |
| 14 | + >; |
| 15 | + let outputTarget: OutputTargetDistCollection; |
| 16 | + |
| 17 | + beforeEach(() => { |
| 18 | + config = mockValidatedConfig({ tsCompilerOptions: {} }); |
| 19 | + |
| 20 | + resolveModuleNameSpy = jest.spyOn(ts, 'resolveModuleName'); |
| 21 | + |
| 22 | + outputTarget = { |
| 23 | + type: 'dist-collection', |
| 24 | + dir: 'dist', |
| 25 | + collectionDir: 'dist/collection', |
| 26 | + transformAliasedImportPaths: true, |
| 27 | + }; |
| 28 | + }); |
| 29 | + |
| 30 | + afterEach(() => { |
| 31 | + resolveModuleNameSpy.mockReset(); |
| 32 | + }); |
| 33 | + |
| 34 | + it('does nothing if the config flag is `false`', () => { |
| 35 | + outputTarget.transformAliasedImportPaths = false; |
| 36 | + resolveModuleNameSpy.mockReturnValue({ |
| 37 | + resolvedModule: { |
| 38 | + isExternalLibraryImport: false, |
| 39 | + extension: Extension.Ts, |
| 40 | + resolvedFileName: 'utils.js', |
| 41 | + }, |
| 42 | + }); |
| 43 | + const inputText = ` |
| 44 | + import { utils } from "@utils/utils"; |
| 45 | +
|
| 46 | + utils.test(); |
| 47 | + `; |
| 48 | + |
| 49 | + module = transpileModule(inputText, config, null, [], [mapImportsToPathAliases(config, '', outputTarget)]); |
| 50 | + |
| 51 | + expect(module.outputText).toContain('import { utils } from "@utils/utils";'); |
| 52 | + }); |
| 53 | + |
| 54 | + it('ignores relative imports', () => { |
| 55 | + resolveModuleNameSpy.mockReturnValue({ |
| 56 | + resolvedModule: { |
| 57 | + isExternalLibraryImport: false, |
| 58 | + extension: Extension.Ts, |
| 59 | + resolvedFileName: 'utils.js', |
| 60 | + }, |
| 61 | + }); |
| 62 | + const inputText = ` |
| 63 | + import * as dateUtils from "../utils"; |
| 64 | +
|
| 65 | + dateUtils.test(); |
| 66 | + `; |
| 67 | + |
| 68 | + module = transpileModule(inputText, config, null, [], [mapImportsToPathAliases(config, '', outputTarget)]); |
| 69 | + |
| 70 | + expect(module.outputText).toContain('import * as dateUtils from "../utils";'); |
| 71 | + }); |
| 72 | + |
| 73 | + it('ignores external imports', () => { |
| 74 | + resolveModuleNameSpy.mockReturnValue({ |
| 75 | + resolvedModule: { |
| 76 | + isExternalLibraryImport: true, |
| 77 | + extension: Extension.Ts, |
| 78 | + resolvedFileName: 'utils.js', |
| 79 | + }, |
| 80 | + }); |
| 81 | + const inputText = ` |
| 82 | + import { utils } from "@stencil/core"; |
| 83 | +
|
| 84 | + utils.test(); |
| 85 | + `; |
| 86 | + |
| 87 | + module = transpileModule(inputText, config, null, [], [mapImportsToPathAliases(config, '', outputTarget)]); |
| 88 | + |
| 89 | + expect(module.outputText).toContain('import { utils } from "@stencil/core";'); |
| 90 | + }); |
| 91 | + |
| 92 | + it('does nothing if there is no resolved module', () => { |
| 93 | + resolveModuleNameSpy.mockReturnValue({ |
| 94 | + resolvedModule: undefined, |
| 95 | + }); |
| 96 | + const inputText = ` |
| 97 | + import { utils } from "@utils"; |
| 98 | +
|
| 99 | + utils.test(); |
| 100 | + `; |
| 101 | + |
| 102 | + module = transpileModule(inputText, config, null, [], [mapImportsToPathAliases(config, '', outputTarget)]); |
| 103 | + |
| 104 | + expect(module.outputText).toContain('import { utils } from "@utils";'); |
| 105 | + }); |
| 106 | + |
| 107 | + // TODO(STENCIL-223): remove spy to test actual resolution behavior |
| 108 | + it('replaces the path alias with the generated relative path', () => { |
| 109 | + resolveModuleNameSpy.mockReturnValue({ |
| 110 | + resolvedModule: { |
| 111 | + isExternalLibraryImport: false, |
| 112 | + extension: Extension.Ts, |
| 113 | + resolvedFileName: 'utils.ts', |
| 114 | + }, |
| 115 | + }); |
| 116 | + const inputText = ` |
| 117 | + import { utils } from "@utils"; |
| 118 | +
|
| 119 | + utils.test(); |
| 120 | + `; |
| 121 | + |
| 122 | + module = transpileModule(inputText, config, null, [], [mapImportsToPathAliases(config, '', outputTarget)]); |
| 123 | + |
| 124 | + expect(module.outputText).toContain('import { utils } from "utils";'); |
| 125 | + }); |
| 126 | + |
| 127 | + // The resolved module is not part of the output directory |
| 128 | + it('generates the correct relative path when the resolved module is outside the transpiled project', () => { |
| 129 | + config.srcDir = '/test-dir'; |
| 130 | + resolveModuleNameSpy.mockReturnValue({ |
| 131 | + resolvedModule: { |
| 132 | + isExternalLibraryImport: false, |
| 133 | + extension: Extension.Ts, |
| 134 | + resolvedFileName: '/some-compiled-dir/utils/utils.ts', |
| 135 | + }, |
| 136 | + }); |
| 137 | + const inputText = ` |
| 138 | + import { utils } from "@utils"; |
| 139 | +
|
| 140 | + utils.test(); |
| 141 | + `; |
| 142 | + |
| 143 | + module = transpileModule( |
| 144 | + inputText, |
| 145 | + config, |
| 146 | + null, |
| 147 | + [], |
| 148 | + [mapImportsToPathAliases(config, '/dist/collection/test.js', outputTarget)] |
| 149 | + ); |
| 150 | + |
| 151 | + expect(module.outputText).toContain(`import { utils } from "../../some-compiled-dir/utils/utils";`); |
| 152 | + }); |
| 153 | + |
| 154 | + // Source module and resolved module are in the same output directory |
| 155 | + it('generates the correct relative path when the resolved module is within the transpiled project', () => { |
| 156 | + config.srcDir = '/test-dir'; |
| 157 | + resolveModuleNameSpy.mockReturnValue({ |
| 158 | + resolvedModule: { |
| 159 | + isExternalLibraryImport: false, |
| 160 | + extension: Extension.Ts, |
| 161 | + resolvedFileName: '/test-dir/utils/utils.ts', |
| 162 | + }, |
| 163 | + }); |
| 164 | + const inputText = ` |
| 165 | + import { utils } from "@utils"; |
| 166 | +
|
| 167 | + utils.test(); |
| 168 | + `; |
| 169 | + |
| 170 | + module = transpileModule( |
| 171 | + inputText, |
| 172 | + config, |
| 173 | + null, |
| 174 | + [], |
| 175 | + [mapImportsToPathAliases(config, 'dist/collection/test.js', outputTarget)] |
| 176 | + ); |
| 177 | + |
| 178 | + expect(module.outputText).toContain(`import { utils } from "./utils/utils";`); |
| 179 | + }); |
| 180 | +}); |
0 commit comments