-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcode.test.ts
More file actions
216 lines (199 loc) · 5.87 KB
/
code.test.ts
File metadata and controls
216 lines (199 loc) · 5.87 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
import {
afterEach,
beforeAll,
beforeEach,
describe,
expect,
it,
mock,
spyOn,
} from 'bun:test'
import * as devupModule from '../commands/devup'
import * as exportAssetsModule from '../commands/exportAssets'
import * as exportComponentsModule from '../commands/exportComponents'
let codeModule: typeof import('../code-impl')
beforeAll(async () => {
;(globalThis as { figma?: unknown }).figma = {
editorType: 'dev',
mode: 'codegen',
command: 'noop',
codegen: { on: mock(() => {}) },
closePlugin: mock(() => {}),
} as unknown as typeof figma
codeModule = await import('../code-impl')
})
beforeEach(() => {
spyOn(devupModule, 'exportDevup').mockImplementation(
mock(() => Promise.resolve()),
)
spyOn(devupModule, 'importDevup').mockImplementation(
mock(() => Promise.resolve()),
)
spyOn(exportAssetsModule, 'exportAssets').mockImplementation(
mock(() => Promise.resolve()),
)
spyOn(exportComponentsModule, 'exportComponents').mockImplementation(
mock(() => Promise.resolve()),
)
})
afterEach(() => {
;(globalThis as { figma?: unknown }).figma = undefined
mock.restore()
})
describe('runCommand', () => {
it.each([
['export-devup', ['json'], 'exportDevup'],
['export-devup-without-treeshaking', ['json', false], 'exportDevup'],
['export-devup-excel', ['excel'], 'exportDevup'],
['export-devup-excel-without-treeshaking', ['excel', false], 'exportDevup'],
['import-devup', ['json'], 'importDevup'],
['import-devup-excel', ['excel'], 'importDevup'],
['export-assets', [], 'exportAssets'],
['export-components', [], 'exportComponents'],
] as const)('dispatches %s', async (command, args, fn) => {
const closePlugin = mock(() => {})
const figmaMock = {
editorType: 'figma',
command,
closePlugin,
} as unknown as typeof figma
await codeModule.runCommand(figmaMock as typeof figma)
switch (fn) {
case 'exportDevup':
expect(devupModule.exportDevup).toHaveBeenCalledWith(...args)
break
case 'importDevup':
expect(devupModule.importDevup).toHaveBeenCalledWith(...args)
break
case 'exportAssets':
expect(exportAssetsModule.exportAssets).toHaveBeenCalled()
break
case 'exportComponents':
expect(exportComponentsModule.exportComponents).toHaveBeenCalled()
break
}
expect(closePlugin).toHaveBeenCalled()
})
})
describe('registerCodegen', () => {
it.each([
[
{
editorType: 'dev',
mode: 'codegen',
command: 'noop',
},
{
node: {
type: 'COMPONENT',
name: 'Test',
visible: true,
},
language: 'devup-ui',
},
],
[
{
editorType: 'dev',
mode: 'codegen',
command: 'noop',
},
{
node: {
type: 'FRAME',
name: 'Main',
visible: true,
},
language: 'devup-ui',
},
],
[
{
editorType: 'dev',
mode: 'codegen',
command: 'noop',
},
{
node: {
type: 'FRAME',
name: 'Other',
visible: true,
},
language: 'other',
},
],
] as const)('should register codegen', async (figmaInfo, event) => {
const figmaMock = {
...figmaInfo,
codegen: { on: mock(() => {}) },
closePlugin: mock(() => {}),
} as unknown as typeof figma
codeModule.registerCodegen(figmaMock)
expect(figmaMock.codegen.on).toHaveBeenCalledWith(
'generate',
expect.any(Function),
)
expect(
await (figmaMock.codegen.on as ReturnType<typeof mock>).mock.calls[0][1](
event,
),
).toMatchSnapshot()
})
})
it('should not register codegen if figma is not defined', async () => {
codeModule.run(undefined as unknown as typeof figma)
expect(devupModule.exportDevup).not.toHaveBeenCalled()
expect(devupModule.importDevup).not.toHaveBeenCalled()
expect(exportAssetsModule.exportAssets).not.toHaveBeenCalled()
expect(exportComponentsModule.exportComponents).not.toHaveBeenCalled()
})
it('should run command', async () => {
const figmaMock = {
editorType: 'figma',
command: 'export-devup',
closePlugin: mock(() => {}),
} as unknown as typeof figma
codeModule.run(figmaMock as typeof figma)
expect(devupModule.exportDevup).toHaveBeenCalledWith('json')
expect(devupModule.importDevup).not.toHaveBeenCalled()
expect(exportAssetsModule.exportAssets).not.toHaveBeenCalled()
expect(exportComponentsModule.exportComponents).not.toHaveBeenCalled()
})
it('auto-runs on module load when figma is present', async () => {
const codegenOn = mock(() => {})
;(globalThis as { figma?: unknown }).figma = {
editorType: 'dev',
mode: 'codegen',
command: 'noop',
codegen: { on: codegenOn },
closePlugin: mock(() => {}),
} as unknown as typeof figma
await import(`../code?with-figma=${Date.now()}`)
expect(codegenOn).toHaveBeenCalledWith('generate', expect.any(Function))
})
describe('extractImports', () => {
it('should extract keyframes import when code contains keyframes(', () => {
const result = codeModule.extractImports([
[
'AnimatedBox',
'<Box animationName={keyframes({ "0%": { opacity: 0 } })} />',
],
])
expect(result).toContain('keyframes')
expect(result).toContain('Box')
})
it('should extract keyframes import when code contains keyframes`', () => {
const result = codeModule.extractImports([
['AnimatedBox', '<Box animationName={keyframes`from { opacity: 0 }`} />'],
])
expect(result).toContain('keyframes')
expect(result).toContain('Box')
})
it('should not extract keyframes when not present', () => {
const result = codeModule.extractImports([
['SimpleBox', '<Box w="100px" />'],
])
expect(result).not.toContain('keyframes')
expect(result).toContain('Box')
})
})