-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathindex.spec.ts
138 lines (116 loc) · 4.04 KB
/
index.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import { configs } from './mocks'
import { getResolver, viteResolve } from './resolver'
describe('tsconfig precedence', () => {
it('prefers nearest tsconfig', async () => {
const resolveId = getResolver({
root: '/a/b',
// Load the higher config first to prove sorting works.
projects: ['..', '.'],
})
viteResolve.mockImplementation((id) => id)
// Import from /a/b/
let result = await resolveId('c', '/a/b/main.ts')
expect(result).toBe('/a/b/c')
// Import from /a/
result = await resolveId('c', '/a/main.ts')
expect(result).toBe('/a/c')
// Import from /
result = await resolveId('c', '/main.ts')
expect(result).toBeUndefined()
})
})
describe('absolute paths in projects array', () => {
test('posix paths', async () => {
const resolveId = getResolver({
projects: ['/a/b'],
})
viteResolve.mockImplementation((id) => id)
const result = await resolveId('c', '/a/b/b/main.ts')
expect(result).toMatchInlineSnapshot(`"/a/b/c"`)
})
test('windows-style paths', async () => {
const resolveId = getResolver({
projects: ['D:\\a\\b'],
})
viteResolve.mockImplementation((id) => id)
const result = await resolveId('c', 'D:\\a\\b\\b\\main.ts')
expect(result).toMatchInlineSnapshot(`"D:/a/b/c"`)
})
})
describe('include array', () => {
it('can include files outside the config root', async () => {
configs['/a/b/']!.include = ['../x']
const resolveId = getResolver({
projects: ['/a/b'],
})
viteResolve.mockImplementation((id) => id)
const result = await resolveId('c', '/a/x/main.ts')
expect(result).toBeDefined()
expect(result).toMatchInlineSnapshot(`"/a/b/c"`)
})
it('can contain a path prefixed with ./', async () => {
configs['/a/']!.include = ['./src']
const resolveId = getResolver({
projects: ['/a'],
})
viteResolve.mockImplementation((id) => id)
let result = await resolveId('c', '/a/src/main.ts')
expect(result).toMatchInlineSnapshot(`"/a/c"`)
// All descendants are matched.
result = await resolveId('c', '/a/src/b/main.ts')
expect(result).toMatchInlineSnapshot(`"/a/c"`)
})
it('can contain a path with no prefix and no glob', async () => {
configs['/a/']!.include = ['src']
const resolveId = getResolver({
projects: ['/a'],
})
viteResolve.mockImplementation((id) => id)
let result = await resolveId('c', '/a/src/b.ts')
expect(result).toMatchInlineSnapshot(`"/a/c"`)
// All descendants are matched.
result = await resolveId('c', '/a/src/b/index.ts')
expect(result).toMatchInlineSnapshot(`"/a/c"`)
})
it('can contain a glob', async () => {
configs['/a/']!.include = ['src/**/__tests__']
const resolveId = getResolver({
projects: ['/a'],
})
viteResolve.mockImplementation((id) => id)
let result = await resolveId('c', '/a/src/__tests__/x.ts')
expect(result).toMatchInlineSnapshot(`"/a/c"`)
result = await resolveId('c', '/a/src/b/__tests__/x.ts')
expect(result).toMatchInlineSnapshot(`"/a/c"`)
// This importer is not included.
result = await resolveId('c', '/a/src/main.ts')
expect(result).toMatchInlineSnapshot(`undefined`)
})
it('can contain a path that ends with /', async () => {
configs['/a/']!.include = ['src/']
const resolveId = getResolver({
projects: ['/a'],
})
viteResolve.mockImplementation((id) => id)
let result = await resolveId('c', '/a/src/main.ts')
expect(result).toMatchInlineSnapshot(`"/a/c"`)
// All descendants are matched.
result = await resolveId('c', '/a/src/b/main.ts')
expect(result).toMatchInlineSnapshot(`"/a/c"`)
})
it('ignores query in importer path', async () => {
configs['/a/']!.include = ['src/**/*.vue']
const resolveId = getResolver({
projects: ['/a'],
loose: true,
})
viteResolve.mockImplementation((id) => {
return id
})
const result = await resolveId(
'c',
'/a/src/main.vue?vue&type=template&lang.js'
)
expect(result).toMatchInlineSnapshot(`"/a/c"`)
})
})