'f'
mh-two-thousand-and-two
2024-04-12 26f2711ef9461961fb953e2b497bd314ef95e345
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
import configure from '@jimp/custom';
import gif from '@jimp/gif';
import png from '@jimp/png';
import displace from '@jimp/plugin-displace';
import resize from '@jimp/plugin-resize';
import scale from '@jimp/plugin-scale';
import types from '@jimp/types';
import plugins from '@jimp/plugins';
import * as Jimp from 'jimp';
 
// configure should return a valid Jimp type with addons
const CustomJimp = configure({
  types: [gif, png],
  plugins: [displace, resize]
});
 
test('should function the same as the `jimp` types', () => {
  const FullCustomJimp = configure({
    types: [types],
    plugins: [plugins]
  });
 
  const jimpInst = new FullCustomJimp('test');
 
  // Main Jimp export should already have all of these already applied
  // $ExpectError
  jimpInst.read('Test');
  jimpInst.displace(jimpInst, 2);
  jimpInst.resize(40, 40);
  jimpInst.displace(jimpInst, 2);
  jimpInst.shadow((err, val, coords) => {});
  jimpInst.fishEye({r: 12});
  jimpInst.circle({radius: 12, x: 12, y: 12});
  // $ExpectError
  jimpInst.PNG_FILTER_NONE;
 
  // $ExpectError
  jimpInst.test;
 
  // $ExpectError
  jimpInst.func();
 
  // Main Jimp export should already have all of these already applied
  FullCustomJimp.read('Test');
 
  // $ExpectType 0
  FullCustomJimp.PNG_FILTER_NONE;
 
  // $ExpectError
  FullCustomJimp.test;
 
  // $ExpectError
  FullCustomJimp.func();
 
  test('can clone properly', async () => {
    const baseImage = await FullCustomJimp.read('filename');
    const cloneBaseImage = baseImage.clone();
 
    // $ExpectType number
    cloneBaseImage._deflateLevel;
 
    test('can handle `this` returns on the core type properly', () => {
      // $ExpectType number
      cloneBaseImage.posterize(3)._quality
    });
 
    test('can handle `this` returns properly', () => {
      cloneBaseImage
        .resize(1, 1)
        .crop(0, 0, 0, 0)
        .mask(cloneBaseImage, 2, 2)
        .print('a' as any, 2, 2, 'a' as any)
        .resize(1, 1)
        .quality(1)
        .deflateLevel(2)
        ._filterType;
    });
 
    test('can handle imageCallbacks `this` properly', () => {
      cloneBaseImage.rgba(false, (_, jimpCBIn) => {
        // $ExpectError
        jimpCBIn.read('Test');
        jimpCBIn.displace(jimpInst, 2);
        jimpCBIn.resize(40, 40);
        // $ExpectType number
        jimpCBIn._filterType;
 
        // $ExpectError
        jimpCBIn.test;
 
        // $ExpectError
        jimpCBIn.func();
      })
    })
  });
 
  test('Can handle callback with constructor', () => {
    const myBmpBuffer: Buffer = {} as any;
 
    Jimp.read(myBmpBuffer, (err, cbJimpInst) => {
      // $ExpectError
      cbJimpInst.read('Test');
      cbJimpInst.displace(jimpInst, 2);
      cbJimpInst.resize(40, 40);
      // $ExpectType number
      cbJimpInst._filterType;
 
      // $ExpectError
      cbJimpInst.test;
 
      // $ExpectError
      cbJimpInst.func();
    });
  });
 
});
 
test('can handle custom jimp', () => {
  // Constants from types should be applied
  // $ExpectType 0
  CustomJimp.PNG_FILTER_NONE;
  
  // Core functions should still work from Jimp
  CustomJimp.read('Test');
 
  // Constants should not(?) be applied from ill-formed plugins
  // $ExpectError
  CustomJimp.displace(CustomJimp, 2);
 
  // Methods should be applied from well-formed plugins only to the instance
  // $ExpectError
  CustomJimp.resize(40, 40)
  
  // Constants should be applied from well-formed plugins
  CustomJimp.RESIZE_NEAREST_NEIGHBOR
  
  // $ExpectError
  CustomJimp.test;
  
  // $ExpectError
  CustomJimp.func();
 
  const Jiimp = new CustomJimp('test');
  // Methods from types should be applied
  Jiimp.deflateLevel(4);
  // Constants from types should be applied to the static only
  // $ExpectError
  Jiimp.PNG_FILTER_NONE;
 
  // Core functions should still work from Jimp
  Jiimp.getPixelColor(1, 1);
 
  // Constants should be applied from ill-formed plugins
  Jiimp.displace(Jiimp, 2);
 
  // Methods should be applied from well-formed plugins
  Jiimp.resize(40, 40)
 
  // Constants should not be applied to the object
  // $ExpectError
  Jiimp.RESIZE_NEAREST_NEIGHBOR
 
  // $ExpectError
  Jiimp.test;
 
  // $ExpectError
  Jiimp.func();
});
 
test('can compose', () => {
  const OtherCustomJimp = configure({
      plugins: [scale]
    }, CustomJimp);
  // Constants from types should be applied
  // $ExpectType 0
  OtherCustomJimp.PNG_FILTER_NONE;
 
  // Core functions should still work from Jimp
  OtherCustomJimp.read('Test');
 
  // Constants should not be applied to the static instance from ill-formed plugins
  // $ExpectError
  OtherCustomJimp.displace(OtherCustomJimp, 2);
 
  // Methods should not be applied to the static instance from well-formed plugins
  // $ExpectError
  OtherCustomJimp.resize(40, 40);
 
  // Constants should be applied from well-formed plugins
  OtherCustomJimp.RESIZE_NEAREST_NEIGHBOR;
 
  // $ExpectError
  OtherCustomJimp.test;
 
  // $ExpectError
  OtherCustomJimp.func();
  
  const Jiimp = new OtherCustomJimp('test');
  // Methods from types should be applied
  Jiimp.deflateLevel(4);
  // Constants from types should not be applied to objects
  // $ExpectError
  Jiimp.PNG_FILTER_NONE;
 
  // Methods from new plugins should be applied
  Jiimp.scale(3);
 
  // Methods from types should be applied
  Jiimp.filterType(4);
 
  // Core functions should still work from Jimp
  Jiimp.getPixelColor(1, 1);
 
  // Constants should be applied from ill-formed plugins
  Jiimp.displace(Jiimp, 2);
 
  // Methods should be applied from well-formed plugins
  Jiimp.resize(40, 40)
 
  // Constants should not be applied from well-formed plugins to objects
  // $ExpectError
  Jiimp.RESIZE_NEAREST_NEIGHBOR
 
  // $ExpectError
  Jiimp.test;
 
  // $ExpectError
  Jiimp.func();
});
 
test('can handle only plugins', () => {
  const PluginsJimp = configure({
    plugins: [plugins]
  });
 
  // Core functions should still work from Jimp
  PluginsJimp.read('Test');
 
  // Constants should not be applied from ill-formed plugins
  // $ExpectError
  PluginsJimp.displace(PluginsJimp, 2);
 
  // Methods should be not be applied to from well-formed plugins to the top level
  // $ExpectError
  PluginsJimp.resize(40, 40);
 
  // Constants should be applied from well-formed plugins
  // $ExpectType "nearestNeighbor"
  PluginsJimp.RESIZE_NEAREST_NEIGHBOR;
 
  // $ExpectError
  PluginsJimp.test;
 
  // $ExpectError
  PluginsJimp.func();
 
  const Jiimp = new PluginsJimp('test');
  
  // Core functions should still work from Jimp
  Jiimp.getPixelColor(1, 1);
 
  // Constants should be applied from ill-formed plugins
  Jiimp.displace(Jiimp, 2);
 
  // Methods should be applied from well-formed plugins
  Jiimp.resize(40, 40)
 
  // Constants should be not applied to objects from well-formed plugins
  // $ExpectError
  Jiimp.RESIZE_NEAREST_NEIGHBOR
 
  // $ExpectError
  Jiimp.test;
 
  // $ExpectError
  Jiimp.func();
})
 
test('can handle only all types', () => {
  const TypesJimp = configure({
    types: [types]
  });
 
  // Methods from types should not be applied
  // $ExpectError
  TypesJimp.filterType(4);
  // Constants from types should be applied
  // $ExpectType 0
  TypesJimp.PNG_FILTER_NONE;
 
  // $ExpectError
  TypesJimp.test;
 
  // $ExpectError
  TypesJimp.func();
 
  const Jiimp = new TypesJimp('test');
  // Methods from types should be applied
  Jiimp.filterType(4);
  // Constants from types should be not applied to objects
  // $ExpectError
  Jiimp.PNG_FILTER_NONE;
 
  // $ExpectError
  Jiimp.test;
 
  // $ExpectError
  Jiimp.func();
});
 
test('can handle only one type', () => {
  const PngJimp = configure({
    types: [png]
  });
 
  // Constants from other types should be not applied
  // $ExpectError
  PngJimp.MIME_TIFF;
 
  // Constants from types should be applied
  // $ExpectType 0
  PngJimp.PNG_FILTER_NONE;
  
  // $ExpectError
  PngJimp.test;
 
  // $ExpectError
  PngJimp.func();
 
 
  const Jiimp = new PngJimp('test');
  // Constants from other types should be not applied
  // $ExpectError
  Jiimp.MIME_TIFF;
 
  // Constants from types should not be applied to objects
  // $ExpectError
  Jiimp.PNG_FILTER_NONE;
 
  // $ExpectError
  Jiimp.test;
 
  // $ExpectError
  Jiimp.func();
});
 
 
test('can handle only one plugin', () => {
  const ResizeJimp = configure({
    plugins: [resize]
  });
 
  // Constants from other plugins should be not applied
  // $ExpectError
  ResizeJimp.FONT_SANS_8_BLACK;
 
  // Constants from plugin should be applied
  // $ExpectType "nearestNeighbor"
  ResizeJimp.RESIZE_NEAREST_NEIGHBOR;
 
  // $ExpectError
  ResizeJimp.resize(2, 2);
 
  // $ExpectError
  ResizeJimp.test;
 
  // $ExpectError
  ResizeJimp.func();
 
 
  const Jiimp: InstanceType<typeof ResizeJimp> = new ResizeJimp('test');
  // Constants from other plugins should be not applied
  // $ExpectError
  Jiimp.FONT_SANS_8_BLACK;
 
  // Constants from plugin should not be applied to the object
  // $ExpectError
  Jiimp.RESIZE_NEAREST_NEIGHBOR;
 
  Jiimp.resize(2, 2);
 
  // $ExpectError
  Jiimp.test;
 
  // $ExpectError
  Jiimp.func();
});
 
 
test('Can handle appendConstructorOption', () => {
  const AppendJimp = configure({});
 
  AppendJimp.appendConstructorOption(
    'Name of Option',
    args => args.hasSomeCustomThing,
    function(resolve, reject, args) {
      // $ExpectError
      this.bitmap = 3;
      // $ExpectError
      AppendJimp.resize(2, 2);
      resolve();
    }
  );
});