-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
trace-svg.js
218 lines (197 loc) · 5.22 KB
/
trace-svg.js
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
217
218
jest.mock(`sharp`, () => {
const sharp = path => {
const pipeline = {
rotate: () => pipeline,
resize: () => pipeline,
png: () => pipeline,
jpeg: () => pipeline,
toFile: (_, cb) => cb(),
}
return pipeline
}
sharp.simd = jest.fn()
sharp.concurrency = jest.fn()
return sharp
})
jest.mock(`potrace`, () => {
return {
trace: (_, _2, cb) => cb(null, ``),
Potrace: {
TURNPOLICY_MAJORITY: `wat`,
},
}
})
const path = require(`path`)
const traceSVGHelpers = require(`../trace-svg`)
const notMemoizedtraceSVG = jest.spyOn(traceSVGHelpers, `notMemoizedtraceSVG`)
const notMemoizedPrepareTraceSVGInputFile = jest.spyOn(
traceSVGHelpers,
`notMemoizedPrepareTraceSVGInputFile`
)
// note that we started spying on not memoized functions first
// now we recreate memoized functions that will use function we just started
// spying on
traceSVGHelpers.createMemoizedFunctions()
const memoizedTraceSVG = jest.spyOn(traceSVGHelpers, `memoizedTraceSVG`)
const memoizedPrepareTraceSVGInputFile = jest.spyOn(
traceSVGHelpers,
`memoizedPrepareTraceSVGInputFile`
)
const { traceSVG } = require(`../`)
function getFileObject(absolutePath, name = path.parse(absolutePath).name) {
return {
id: `${absolutePath} absPath of file`,
name: name,
absolutePath,
extension: `png`,
internal: {
contentDigest: `1234`,
},
}
}
describe(`traceSVG memoization`, () => {
const file = getFileObject(path.join(__dirname, `images/test.png`))
const copyOfFile = getFileObject(path.join(__dirname, `images/test-copy.png`))
const differentFile = getFileObject(
path.join(__dirname, `images/different.png`)
)
differentFile.internal.contentDigest = `4321`
beforeEach(() => {
traceSVGHelpers.clearMemoizeCaches()
memoizedTraceSVG.mockClear()
notMemoizedtraceSVG.mockClear()
memoizedPrepareTraceSVGInputFile.mockClear()
notMemoizedPrepareTraceSVGInputFile.mockClear()
})
it(`Baseline`, async () => {
await traceSVG({
file,
})
expect(memoizedTraceSVG).toBeCalledTimes(1)
expect(notMemoizedtraceSVG).toBeCalledTimes(1)
expect(memoizedPrepareTraceSVGInputFile).toBeCalledTimes(1)
expect(notMemoizedPrepareTraceSVGInputFile).toBeCalledTimes(1)
})
it(`Is memoizing results for same args`, async () => {
await traceSVG({
file,
})
await traceSVG({
file,
})
expect(memoizedTraceSVG).toBeCalledTimes(2)
expect(notMemoizedtraceSVG).toBeCalledTimes(1)
expect(memoizedPrepareTraceSVGInputFile).toBeCalledTimes(1)
expect(notMemoizedPrepareTraceSVGInputFile).toBeCalledTimes(1)
})
it(`Is calling functions with same input file when params change`, async () => {
await traceSVG({
file,
args: {
color: `red`,
},
fileArgs: {
width: 400,
},
})
await traceSVG({
file,
args: {
color: `blue`,
},
fileArgs: {
width: 400,
},
})
await traceSVG({
file,
args: {
color: `red`,
},
fileArgs: {
width: 200,
},
})
await traceSVG({
file,
args: {
color: `blue`,
},
fileArgs: {
width: 200,
},
})
await traceSVG({
file: differentFile,
args: {
color: `red`,
},
fileArgs: {
width: 400,
},
})
expect(memoizedTraceSVG).toBeCalledTimes(5)
expect(notMemoizedtraceSVG).toBeCalledTimes(5)
expect(memoizedPrepareTraceSVGInputFile).toBeCalledTimes(5)
// trace svg should be actually created just 3 times
// because it's affected just by `fileArgs`, and not `args`
// this makes sure we don't try to write to same input file multiple times
expect(notMemoizedPrepareTraceSVGInputFile).toBeCalledTimes(3)
expect(notMemoizedPrepareTraceSVGInputFile).toHaveBeenNthCalledWith(
1,
expect.objectContaining({
file,
options: expect.objectContaining({
width: 400,
}),
})
)
expect(notMemoizedPrepareTraceSVGInputFile).toHaveBeenNthCalledWith(
2,
expect.objectContaining({
file,
options: expect.objectContaining({
width: 200,
}),
})
)
expect(notMemoizedPrepareTraceSVGInputFile).toHaveBeenNthCalledWith(
3,
expect.objectContaining({
file: differentFile,
options: expect.objectContaining({
width: 400,
}),
})
)
const usedTmpFilePaths = notMemoizedPrepareTraceSVGInputFile.mock.calls.map(
args => args[0].tmpFilePath
)
// tmpFilePath was always unique
expect(usedTmpFilePaths.length).toBe(new Set(usedTmpFilePaths).size)
})
it(`Use memoized results for file copies`, async () => {
await traceSVG({
file,
args: {
color: `red`,
},
fileArgs: {
width: 400,
},
})
await traceSVG({
file: copyOfFile,
args: {
color: `red`,
},
fileArgs: {
width: 400,
},
})
expect(memoizedTraceSVG).toBeCalledTimes(2)
expect(notMemoizedtraceSVG).toBeCalledTimes(1)
expect(memoizedPrepareTraceSVGInputFile).toBeCalledTimes(1)
expect(notMemoizedPrepareTraceSVGInputFile).toBeCalledTimes(1)
})
})