-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
components.test.ts
135 lines (107 loc) · 3.83 KB
/
components.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
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
import { beforeEach, describe, expect, it } from 'vitest';
import { formatComponentName } from '../../src/vendor/components';
describe('formatComponentName', () => {
describe('when the vm is not defined', () => {
it('returns the anonymous component name', () => {
// arrange
const vm = undefined;
// act
const formattedName = formatComponentName(vm);
// assert
expect(formattedName).toEqual('<Anonymous>');
});
});
describe('when the vm is defined', () => {
let vm: any = undefined;
beforeEach(() => {
vm = {};
});
describe('and when the $options is not defined', () => {
it('returns the anonymous component name', () => {
// arrange
vm.$options = undefined;
// act
const formattedName = formatComponentName(vm);
// assert
expect(formattedName).toEqual('<Anonymous>');
});
});
describe('when the $options is defined', () => {
beforeEach(() => {
vm = { $options: {} };
});
describe('when the vm is the $root', () => {
it('returns the root component name', () => {
// arrange
vm.$root = vm;
// act
const formattedName = formatComponentName(vm);
// assert
expect(formattedName).toEqual('<Root>');
});
});
describe('when the $options have a name', () => {
it('returns the name', () => {
// arrange
vm.$options.name = 'hello-there';
// act
const formattedName = formatComponentName(vm);
// assert
expect(formattedName).toEqual('<HelloThere>');
});
});
describe('when the options have a _componentTag', () => {
it('returns the _componentTag', () => {
// arrange
vm.$options._componentTag = 'foo-bar-1';
// act
const formattedName = formatComponentName(vm);
// assert
expect(formattedName).toEqual('<FooBar1>');
});
});
describe('when the options have a __name', () => {
it('returns the __name', () => {
// arrange
vm.$options.__name = 'my-component-name';
// act
const formattedName = formatComponentName(vm);
// assert
expect(formattedName).toEqual('<MyComponentName>');
});
});
describe('when the options have a __file', () => {
describe('and we do not wish to include the filename', () => {
it.each([
['unix', '/foo/bar/baz/SomeThing.vue', '<SomeThing>'],
['unix', '/foo/bar/baz/SomeThing.ts', '<Anonymous>'],
['windows', 'C:\\foo\\bar\\baz\\windows_file.vue', '<WindowsFile>'],
['windows', 'C:\\foo\\bar\\baz\\windows_file.ts', '<Anonymous>'],
])('returns the filename (%s)', (_, filePath, expected) => {
// arrange
vm.$options.__file = filePath;
// act
const formattedName = formatComponentName(vm, false);
// assert
expect(formattedName).toEqual(expected);
});
});
describe('and we wish to include the filename', () => {
it.each([
['unix', '/foo/bar/baz/SomeThing.vue', '<SomeThing>'],
['unix', '/foo/bar/baz/SomeThing.ts', '<Anonymous>'],
['windows', 'C:\\foo\\bar\\baz\\windows_file.vue', '<WindowsFile>'],
['windows', 'C:\\foo\\bar\\baz\\windows_file.ts', '<Anonymous>'],
])('returns the filename (%s)', (_, filePath, expected) => {
// arrange
vm.$options.__file = filePath;
// act
const formattedName = formatComponentName(vm);
// assert
expect(formattedName).toEqual(`${expected} at ${filePath}`);
});
});
});
});
});
});