-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.test.js
291 lines (250 loc) · 8.59 KB
/
index.test.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
const path = require('path')
const rimraf = require('rimraf')
const fs = require('fs')
const transformCode = require('./transformCode')
function getFixtures (name) {
return path.resolve(__dirname, 'fixtures', name)
}
describe('index', function () {
beforeEach(function () {
rimraf.sync(path.join(__dirname, 'public'))
})
it('replaces import statements with uri', function () {
const result = transformCode(getFixtures('import-image.js'), {}).code
expect(result).toMatchSnapshot()
})
it('handles custom import path', function () {
const result = transformCode(getFixtures('import-image.js'), {
publicPath: '/static'
}).code
expect(result).toMatchSnapshot()
})
it('handles custom import path with trailing slash', function () {
const result = transformCode(getFixtures('import-image.js'), {
publicPath: '/static/'
}).code
expect(result).toMatchSnapshot()
})
it('handles custom name', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[path][name].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles custom context', function () {
const result = transformCode(getFixtures('import-image.js'), {
context: '/test',
name: '[path][name].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles custom context v2', function () {
const result = transformCode(getFixtures('import-image.js'), {
context: '/test/assets',
name: '[path][name].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles name with custom hash length', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[hash:8].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles sha1 hash', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[sha1:hash].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles sha256 hash', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[sha256:hash].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles sha512 hash', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[sha512:hash].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles hex digest', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[hash:hex].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles base26 digest', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[hash:base26].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles base32 digest', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[hash:base32].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles base36 digest', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[hash:base36].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles base49 digest', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[hash:base49].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles base52 digest', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[hash:base52].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles base58 digest', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[hash:base58].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles base62 digest', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[hash:base62].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles base64 digest', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[hash:base64].[ext]'
}).code
expect(result).toMatchSnapshot()
})
it('handles hash as query param', function () {
const result = transformCode(getFixtures('import-image.js'), {
name: '[path][name].[ext]?[hash:8]'
}).code
expect(result).toMatchSnapshot()
})
it('handles full url as publicPath as query param', function () {
const result = transformCode(getFixtures('import-image.js'), {
publicPath: 'https://cdn.example.com/project'
}).code
expect(result).toMatchSnapshot()
})
it('should throw an error when resource does not exist', function () {
expect(() => {
transformCode(getFixtures('import-not-existing.js'))
}).toThrow(/File does not exist/)
})
it('should replace require statements with uri', function () {
const result = transformCode(getFixtures('require-image.js'), {}).code
expect(result).toMatchSnapshot()
})
it('should replace require statements even without assignment', function () {
const result = transformCode(getFixtures('require-no-var.js'), {}).code
expect(result).toMatchSnapshot()
})
it('should replace require statements in react components', function () {
const result = transformCode(getFixtures('require-react.js'), {}).code
expect(result).toMatchSnapshot()
})
it('should do nothing when imports have no extensions', function () {
const result = transformCode(getFixtures('import-no-ext.js')).code
expect(result).toMatchSnapshot()
})
it('should do nothing when require have no extensions', function () {
const result = transformCode(getFixtures('require-no-ext.js')).code
expect(result).toEqual(`const test = require('something');`)
})
it('should do nothing when not a require assignment', function () {
const result = transformCode(getFixtures('require-var.js')).code
expect(result).toEqual(`const test = 'something';`)
})
it('outputs file in outputPath', function () {
transformCode(getFixtures('import-image.js'))
expect(
fs.existsSync(
path.resolve(__dirname, './public/9c87cbf3ba33126ffd25ae7f2f6bbafb.png')
)
).toEqual(true)
})
it('doesnt output file when outputPath is null', function () {
transformCode(getFixtures('import-image.js'), { outputPath: null })
expect(fs.existsSync(path.resolve(__dirname, './public'))).toEqual(false)
})
it('outputs file in outputPath, nested', function () {
transformCode(getFixtures('import-image.js'), {
name: '/foo/bar/[hash].[ext]'
})
expect(
fs.existsSync(
path.resolve(
__dirname,
'./public/foo/bar/9c87cbf3ba33126ffd25ae7f2f6bbafb.png'
)
)
).toEqual(true)
})
it('outputs file in outputPath, full path', function () {
transformCode(getFixtures('import-image.js'), {
name: '[path][name].[ext]'
})
expect(
fs.existsSync(path.resolve(__dirname, './public/test/assets/file.png'))
).toEqual(true)
})
it('outputs file in outputPath, ignore query', function () {
transformCode(getFixtures('import-image.js'), {
name: '[path][name].[ext]?asdfas'
})
expect(
fs.existsSync(path.resolve(__dirname, './public/test/assets/file.png'))
).toEqual(true)
})
it('inlines file when the length in lower then the limit', function () {
const result = transformCode(getFixtures('import-text.js'), {
extensions: ['txt'],
name: '[path][name].[ext]',
limit: 6
}).code
expect(result).toMatchSnapshot()
})
it('doesnt output the file when its inlined', function () {
transformCode(getFixtures('import-text.js'), {
extensions: ['txt'],
name: '[path][name].[ext]',
limit: 6
})
expect(fs.existsSync(path.resolve(__dirname, './public'))).toEqual(false)
})
it('doesnt inline file when the lenght equals the limit', function () {
const result = transformCode(getFixtures('import-text.js'), {
extensions: ['txt'],
name: '[path][name].[ext]',
limit: 5
}).code
expect(result).toMatchSnapshot()
})
it('ouputs the file when the lenght equals the limit', function () {
transformCode(getFixtures('import-text.js'), {
extensions: ['txt'],
name: '[path][name].[ext]',
limit: 5
})
expect(
fs.existsSync(path.resolve(__dirname, './public/test/assets/file.txt'))
).toEqual(true)
})
it('inline file with an unknown type by not specifying mime type', function () {
const result = transformCode(getFixtures('import-unknown.js'), {
extensions: ['unknown'],
name: '[path][name].[ext]',
limit: 6
}).code
expect(result).toMatchSnapshot()
})
})