-
-
Notifications
You must be signed in to change notification settings - Fork 370
/
Copy pathsearch.test.ts
91 lines (75 loc) · 2.2 KB
/
search.test.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
import { relative, resolve } from 'pathe'
import { describe, expect, it, onTestFailed } from 'vitest'
import { Context } from '../src/core/context'
const root = resolve(__dirname, '../examples/vite-vue3')
function cleanup(data: any) {
return Object.values(data).map((e: any) => {
delete e.absolute
e.from = relative(root, e.from).replace(/\\/g, '/')
return e
}).sort((a, b) => (a.as as string).localeCompare(b.as))
}
describe('search', () => {
it('should work', async () => {
const ctx = new Context({})
ctx.setRoot(root)
ctx.searchGlob()
expect(cleanup(ctx.componentNameMap)).toMatchSnapshot()
})
it('should with namespace', async () => {
const ctx = new Context({
directoryAsNamespace: true,
globalNamespaces: ['global'],
})
ctx.setRoot(root)
ctx.searchGlob()
expect(cleanup(ctx.componentNameMap)).toMatchSnapshot()
})
it('should with namespace & collapse', async () => {
const ctx = new Context({
directoryAsNamespace: true,
collapseSamePrefixes: true,
globalNamespaces: ['global'],
})
ctx.setRoot(root)
ctx.searchGlob()
expect(cleanup(ctx.componentNameMap)).toMatchSnapshot()
})
it('should globs exclude work', () => {
const ctx = new Context({
globs: [
'src/components/*.vue',
'!src/components/ComponentA.vue',
],
})
ctx.setRoot(root)
ctx.searchGlob()
expect(cleanup(ctx.componentNameMap).map(i => i.as)).not.toEqual(expect.arrayContaining(['ComponentA']))
})
it('should globs exclude work with dirs', () => {
const ctx = new Context({
dirs: [
'src/components',
'!src/components/book',
],
})
onTestFailed(() => {
console.error('resolved options')
console.error(ctx.options)
})
ctx.setRoot(root)
ctx.searchGlob()
expect(cleanup(ctx.componentNameMap).map(i => i.as))
.not
.contain('Book')
})
it('should excludeNames', () => {
const ctx = new Context({
dirs: ['src/components'],
excludeNames: ['Book'],
})
ctx.setRoot(root)
ctx.searchGlob()
expect(cleanup(ctx.componentNameMap).map(i => i.as)).not.toEqual(expect.arrayContaining(['Book']))
})
})