forked from ali-sdk/ali-oss
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOSSObject.test.ts
More file actions
2634 lines (2399 loc) · 88.8 KB
/
OSSObject.test.ts
File metadata and controls
2634 lines (2399 loc) · 88.8 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
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { strict as assert } from 'node:assert';
import { fileURLToPath } from 'node:url';
import {
createReadStream,
createWriteStream,
existsSync,
readFileSync,
} from 'node:fs';
import { readFile, writeFile, stat } from 'node:fs/promises';
import { pipeline } from 'node:stream/promises';
import path from 'node:path';
import os from 'node:os';
import { createHash, randomUUID } from 'node:crypto';
import {
describe,
it,
beforeAll,
beforeEach,
afterAll,
afterEach,
} from 'vitest';
import type { ObjectMeta } from 'oss-interface';
import {
type IncomingHttpHeaders,
type RawResponseWithMeta,
request,
} from 'urllib';
import config from './config.js';
import { OSSObject } from '../src/index.js';
import type { OSSClientError } from '../src/error/OSSClientError.js';
import { Readable } from 'node:stream';
describe('test/OSSObject.test.ts', () => {
const tmpdir = os.tmpdir();
const prefix = config.prefix;
assert.ok(config.oss.accessKeyId);
assert.ok(config.oss.accessKeySecret);
const ossObject = new OSSObject(config.oss);
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
describe('list()', () => {
// oss.jpg
// fun/test.jpg
// fun/movie/001.avi
// fun/movie/007.avi
const listPrefix = `${prefix}oss-client/list/`;
beforeAll(async () => {
await ossObject.put(`${listPrefix}oss.jpg`, Buffer.from('oss.jpg'));
await ossObject.put(
`${listPrefix}fun/test.jpg`,
Buffer.from('fun/test.jpg')
);
await ossObject.put(
`${listPrefix}fun/movie/001.avi`,
Buffer.from('fun/movie/001.avi')
);
await ossObject.put(
`${listPrefix}fun/movie/007.avi`,
Buffer.from('fun/movie/007.avi')
);
await ossObject.put(
`${listPrefix}other/movie/007.avi`,
Buffer.from('other/movie/007.avi')
);
await ossObject.put(
`${listPrefix}other/movie/008.avi`,
Buffer.from('other/movie/008.avi')
);
});
function checkObjectProperties(obj: ObjectMeta) {
assert.equal(typeof obj.name, 'string');
assert.equal(typeof obj.lastModified, 'string');
assert.equal(typeof obj.etag, 'string');
assert.ok(
obj.type === 'Normal' ||
obj.type === 'Multipart' ||
obj.type === 'Appendable' ||
obj.type === 'Symlink',
`invalid obj.type ${obj.type}`
);
assert.equal(typeof obj.size, 'number');
// assert.equal(obj.storageClass, 'Standard');
assert.ok(
obj.storageClass === 'Standard' || obj.storageClass === 'IA',
`invalid obj.storageClass ${obj.storageClass}`
);
assert.ok(obj.owner);
assert.ok(obj.owner.id);
assert.ok(obj.owner.displayName);
assert.equal(typeof obj.owner.id, 'string');
assert.equal(typeof obj.owner.displayName, 'string');
}
it('should list with query', async () => {
const result = await ossObject.list({
prefix: listPrefix,
'max-keys': 5,
});
assert.ok(result.objects.length > 0);
// console.log(result.objects);
result.objects.map(checkObjectProperties);
assert.equal(typeof result.nextMarker, 'string');
// console.log(result.isTruncated);
assert.ok(result.isTruncated);
assert.deepEqual(result.prefixes, []);
assert.ok(result.res.headers.date);
const obj = result.objects[0];
assert.match(obj.url, /^https:\/\//);
assert.ok(obj.url.endsWith(`/${obj.name}`));
assert.ok(obj.owner);
assert.ok(obj.owner.id);
assert.ok(obj.size > 0);
});
it.skip('should list timeout work', async () => {
await assert.rejects(
async () => {
await ossObject.list({}, { timeout: 1 });
},
(err: Error) => {
assert.match(err.message, /Request timeout for 1 ms/);
assert.equal(err.name, 'HttpClientRequestTimeoutError');
return true;
}
);
});
it('should list only 1 object', async () => {
const result = await ossObject.list({
'max-keys': 1,
});
assert.ok(result.objects.length <= 1);
result.objects.map(checkObjectProperties);
assert.equal(typeof result.nextMarker, 'string');
assert.ok(result.isTruncated);
assert.deepEqual(result.prefixes, []);
assert.ok(result.res.headers.date);
const obj = result.objects[0];
assert.match(obj.url, /^https:\/\//);
assert.ok(obj.url.endsWith(`/${obj.name}`));
assert.ok(obj.owner);
assert.ok(obj.owner.id);
assert.ok(obj.size > 0);
});
it('should list top 3 objects', async () => {
const result = await ossObject.list({
'max-keys': 3,
});
assert.ok(result.objects.length <= 3);
result.objects.map(checkObjectProperties);
assert.equal(typeof result.nextMarker, 'string');
assert.ok(result.isTruncated);
assert.deepEqual(result.prefixes, []);
// next 2
const result2 = await ossObject.list({
'max-keys': '2',
marker: result.nextMarker,
});
assert.equal(result2.objects.length, 2);
result.objects.map(checkObjectProperties);
assert.equal(typeof result2.nextMarker, 'string');
assert.ok(result2.isTruncated);
assert.deepEqual(result2.prefixes, []);
});
it('should list with prefix', async () => {
let result = await ossObject.list({
prefix: `${listPrefix}fun/movie/`,
});
assert.equal(result.objects.length, 2);
result.objects.map(checkObjectProperties);
assert.equal(result.nextMarker, null);
assert.ok(!result.isTruncated);
assert.deepEqual(result.prefixes, []);
result = await ossObject.list({
prefix: `${listPrefix}fun/movie`,
});
assert.equal(result.objects.length, 2);
result.objects.map(checkObjectProperties);
assert.equal(result.nextMarker, null);
assert.ok(!result.isTruncated);
assert.deepEqual(result.prefixes, []);
});
it('should list current dir files only', async () => {
let result = await ossObject.list({
prefix: listPrefix,
delimiter: '/',
});
assert.equal(result.objects.length, 1);
result.objects.map(checkObjectProperties);
assert.equal(result.nextMarker, null);
assert.ok(!result.isTruncated);
assert.deepEqual(result.prefixes, [
`${listPrefix}fun/`,
`${listPrefix}other/`,
]);
result = await ossObject.list({
prefix: `${listPrefix}fun/`,
delimiter: '/',
});
assert.equal(result.objects.length, 1);
result.objects.map(checkObjectProperties);
assert.equal(result.nextMarker, null);
assert.ok(!result.isTruncated);
assert.deepEqual(result.prefixes, [`${listPrefix}fun/movie/`]);
result = await ossObject.list({
prefix: `${listPrefix}fun/movie/`,
delimiter: '/',
});
assert.equal(result.objects.length, 2);
result.objects.map(checkObjectProperties);
assert.equal(result.nextMarker, null);
assert.ok(!result.isTruncated);
assert.deepEqual(result.prefixes, []);
});
});
describe('listV2()', () => {
const listPrefix = `${prefix}oss-client/listV2/`;
beforeAll(async () => {
await ossObject.put(`${listPrefix}oss.jpg`, Buffer.from('oss.jpg'));
await ossObject.put(
`${listPrefix}fun/test.jpg`,
Buffer.from('fun/test.jpg')
);
await ossObject.put(
`${listPrefix}fun/movie/001.avi`,
Buffer.from('fun/movie/001.avi')
);
await ossObject.put(
`${listPrefix}fun/movie/007.avi`,
Buffer.from('fun/movie/007.avi')
);
await ossObject.put(
`${listPrefix}other/movie/007.avi`,
Buffer.from('other/movie/007.avi')
);
await ossObject.put(
`${listPrefix}other/movie/008.avi`,
Buffer.from('other/movie/008.avi')
);
});
function checkObjectProperties(
obj: ObjectMeta,
options?: { owner: boolean }
) {
assert.equal(typeof obj.name, 'string');
assert.equal(typeof obj.lastModified, 'string');
assert.equal(typeof obj.etag, 'string');
assert.ok(obj.type === 'Normal' || obj.type === 'Multipart');
assert.equal(typeof obj.size, 'number');
// assert.equal(obj.storageClass, 'Standard');
assert.ok(obj.storageClass === 'Standard' || obj.storageClass === 'IA');
if (options?.owner) {
assert.ok(obj.owner);
assert.ok(obj.owner.id);
assert.ok(obj.owner.displayName);
assert.ok(
typeof obj.owner.id === 'string' &&
typeof obj.owner.displayName === 'string'
);
} else {
assert.equal(obj.owner, undefined);
}
}
it('should list top 3 objects', async () => {
const result = await ossObject.listV2({
'max-keys': 1,
});
assert.equal(result.objects.length, 1);
for (const obj of result.objects) {
checkObjectProperties(obj);
}
assert.equal(typeof result.nextContinuationToken, 'string');
assert.ok(result.isTruncated);
assert.deepEqual(result.prefixes, []);
assert.equal(result.keyCount, 1);
// next 2
const result2 = await ossObject.listV2({
'max-keys': '2',
continuationToken: result.nextContinuationToken,
});
assert.equal(result2.objects.length, 2);
for (const obj of result2.objects) {
checkObjectProperties(obj);
}
assert.equal(typeof result2.nextContinuationToken, 'string');
assert.ok(result2.isTruncated);
assert.deepEqual(result2.prefixes, []);
assert.equal(result2.keyCount, 2);
});
it('should list with prefix', async () => {
let result = await ossObject.listV2({
prefix: `${listPrefix}fun/movie/`,
'fetch-owner': true,
});
assert.equal(result.objects.length, 2);
for (const obj of result.objects) {
checkObjectProperties(obj, { owner: true });
}
assert.equal(result.nextContinuationToken, undefined);
assert.ok(!result.isTruncated);
assert.deepEqual(result.prefixes, []);
result = await ossObject.listV2({
prefix: `${listPrefix}fun/movie`,
});
assert.equal(result.objects.length, 2);
for (const obj of result.objects) {
checkObjectProperties(obj);
}
assert.equal(result.nextContinuationToken, undefined);
assert.ok(!result.isTruncated);
assert.deepEqual(result.prefixes, []);
});
it('should list current dir files only', async () => {
let result = await ossObject.listV2({
prefix: listPrefix,
delimiter: '/',
});
assert.equal(result.objects.length, 1);
for (const obj of result.objects) {
checkObjectProperties(obj);
}
assert.equal(result.nextContinuationToken, undefined);
assert.ok(!result.isTruncated);
assert.deepEqual(result.prefixes, [
`${listPrefix}fun/`,
`${listPrefix}other/`,
]);
result = await ossObject.listV2({
prefix: `${listPrefix}fun/`,
delimiter: '/',
});
assert.equal(result.objects.length, 1);
for (const obj of result.objects) {
checkObjectProperties(obj);
}
assert.equal(result.nextContinuationToken, undefined);
assert.ok(!result.isTruncated);
assert.deepEqual(result.prefixes, [`${listPrefix}fun/movie/`]);
result = await ossObject.listV2({
prefix: `${listPrefix}fun/movie/`,
delimiter: '/',
});
assert.equal(result.objects.length, 2);
for (const obj of result.objects) {
checkObjectProperties(obj);
}
assert.equal(result.nextContinuationToken, undefined);
assert.ok(!result.isTruncated);
assert.deepEqual(result.prefixes, []);
});
it('should list with start-after', async () => {
let result = await ossObject.listV2({
'start-after': `${listPrefix}fun`,
'max-keys': 1,
});
assert.ok(result.objects[0].name === `${listPrefix}fun/movie/001.avi`);
result = await ossObject.listV2({
'start-after': `${listPrefix}fun/movie/001.avi`,
'max-keys': 1,
});
assert.ok(result.objects[0].name === `${listPrefix}fun/movie/007.avi`);
result = await ossObject.listV2({
delimiter: '/',
prefix: `${listPrefix}fun/movie/`,
'start-after': `${listPrefix}fun/movie/002.avi`,
});
assert.ok(result.objects.length === 1);
assert.ok(result.objects[0].name === `${listPrefix}fun/movie/007.avi`);
result = await ossObject.listV2({
prefix: `${listPrefix}`,
'max-keys': 5,
'start-after': `${listPrefix}a`,
delimiter: '/',
});
assert.equal(result.keyCount, 3);
assert.equal(result.objects.length, 1);
assert.equal(result.objects[0].name, `${listPrefix}oss.jpg`);
assert.equal(result.prefixes.length, 2);
assert.equal(result.prefixes[0], `${listPrefix}fun/`);
assert.equal(result.prefixes[1], `${listPrefix}other/`);
result = await ossObject.listV2({
prefix: `${listPrefix}`,
'max-keys': 5,
'start-after': `${listPrefix}oss.jpg`,
delimiter: '/',
});
assert.equal(result.keyCount, 1);
assert.equal(result.objects.length, 0);
assert.equal(result.prefixes[0], `${listPrefix}other/`);
});
it('should list with continuation-token', async () => {
let nextContinuationToken: string | undefined;
let keyCount = 0;
do {
// eslint-disable-next-line no-await-in-loop
const result = await ossObject.listV2({
prefix: listPrefix,
'max-keys': 2,
'continuation-token': nextContinuationToken,
});
if (nextContinuationToken) {
// should has prev index
assert.ok(result.continuationToken);
}
keyCount += result.keyCount;
nextContinuationToken = result.nextContinuationToken;
} while (nextContinuationToken);
assert.equal(keyCount, 6);
});
});
describe('append()', () => {
const name = `/${prefix}oss-client/oss/append${Date.now()}`;
afterEach(async () => {
await ossObject.delete(name);
});
it('should append object with content buffer', async () => {
let object = await ossObject.append(name, Buffer.from('foo'));
assert.equal(object.res.status, 200);
assert.equal(object.nextAppendPosition, '3');
assert.equal(object.res.headers['x-oss-next-append-position'], '3');
assert.ok(object.url);
assert.ok(object.name);
let res = await ossObject.get(name);
assert.equal(res.content.toString(), 'foo');
assert.equal(res.res.headers['x-oss-next-append-position'], '3');
object = await ossObject.append(name, Buffer.from('bar'), {
position: 3,
});
assert.equal(object.res.status, 200);
assert.equal(object.nextAppendPosition, '6');
assert.equal(object.res.headers['x-oss-next-append-position'], '6');
res = await ossObject.get(name);
assert.equal(res.content.toString(), 'foobar');
assert.equal(res.res.headers['x-oss-next-append-position'], '6');
object = await ossObject.append(name, Buffer.from(', ok'), {
position: '6',
});
assert.equal(object.res.status, 200);
assert.equal(object.nextAppendPosition, '10');
assert.equal(object.res.headers['x-oss-next-append-position'], '10');
res = await ossObject.get(name);
assert.equal(res.content.toString(), 'foobar, ok');
assert.equal(res.res.headers['x-oss-next-append-position'], '10');
});
it('should append object with local file path', async () => {
const file = path.join(__dirname, 'fixtures/foo.js');
let object = await ossObject.append(name, file);
assert.equal(object.nextAppendPosition, '16');
object = await ossObject.append(name, file, { position: 16 });
assert.equal(object.nextAppendPosition, '32');
});
it('should append object with readstream', async () => {
const file = path.join(__dirname, 'fixtures/foo.js');
let object = await ossObject.append(name, createReadStream(file));
assert.equal(object.nextAppendPosition, '16');
object = await ossObject.append(name, createReadStream(file), {
position: 16,
});
assert.equal(object.nextAppendPosition, '32');
});
it('should error when position not match', async () => {
await ossObject.append(name, Buffer.from('foo'));
await assert.rejects(
async () => {
await ossObject.append(name, Buffer.from('foo'));
},
(err: OSSClientError) => {
assert.equal(err.name, 'OSSClientError');
assert.equal(err.code, 'PositionNotEqualToLength');
assert.equal(err.status, 409);
assert.equal(err.nextAppendPosition, '3');
assert.match(err.message, /Position is not equal to file length/);
return true;
}
);
});
it('should use nextAppendPosition to append next', async () => {
let object = await ossObject.append(name, Buffer.from('foo'));
assert.equal(object.nextAppendPosition, '3');
object = await ossObject.append(name, Buffer.from('bar'), {
position: object.nextAppendPosition,
});
object = await ossObject.append(name, Buffer.from(', baz'), {
position: object.nextAppendPosition,
});
assert.equal(object.nextAppendPosition, '11');
const res = await ossObject.get(name);
assert.equal(res.content.toString(), 'foobar, baz');
assert.equal(res.res.headers['x-oss-next-append-position'], '11');
});
});
describe('mimetype', () => {
const createFile = async (filepath: string, size?: number) => {
size = size ?? 200 * 1024;
const rs = createReadStream('/dev/random', {
start: 0,
end: size - 1,
});
await pipeline(rs, createWriteStream(filepath));
return filepath;
};
it('should set mimetype by file ext', async () => {
const filepath = path.join(tmpdir, 'content-type-by-file.jpg');
await createFile(filepath);
const name = `${prefix}oss-client/oss/content-type-by-file.png`;
await ossObject.put(name, filepath);
const result = await ossObject.head(name);
assert.equal(result.res.headers['content-type'], 'image/jpeg');
// await ossObject.multipartUpload(name, filepath);
// result = await ossObject.head(name);
// assert.equal(result.res.headers['content-type'], 'image/jpeg');
});
it('should set mimetype by object key', async () => {
const filepath = path.join(tmpdir, 'content-type-by-file');
await createFile(filepath);
const name = `${prefix}oss-client/oss/content-type-by-file.png`;
await ossObject.put(name, filepath);
const result = await ossObject.head(name);
assert.equal(result.res.headers['content-type'], 'image/png');
// await ossObject.multipartUpload(name, filepath);
// result = await ossObject.head(name);
// assert.equal(result.res.headers['content-type'], 'image/png');
});
it('should set user-specified mimetype', async () => {
const filepath = path.join(tmpdir, 'content-type-by-file.jpg');
await createFile(filepath);
const name = `${prefix}oss-client/oss/content-type-by-file.png`;
await ossObject.put(name, filepath, { mime: 'text/plain' });
const result = await ossObject.head(name);
assert.equal(result.res.headers['content-type'], 'text/plain');
// await ossObject.multipartUpload(name, filepath, {
// mime: 'text/plain',
// });
// result = await ossObject.head(name);
// assert.equal(result.res.headers['content-type'], 'text/plain');
});
});
describe('put()', () => {
let name: string;
afterEach(async () => {
if (name) {
await ossObject.delete(name);
}
});
it('should add object with local file path', async () => {
name = `${prefix}oss-client/oss/put-localfile-${randomUUID()}.js`;
// put not exists name
const object = await ossObject.put(name, __filename);
assert.equal(object.res.status, 200);
assert.equal(typeof object.res.headers['x-oss-request-id'], 'string');
assert.equal(typeof object.res.rt, 'number');
assert.equal(object.res.size, 0);
assert.equal(object.name, name);
// put exists name
const object2 = await ossObject.put(name, __filename);
assert.equal(object.res.status, 200);
assert.equal(typeof object2.res.headers['x-oss-request-id'], 'string');
assert.equal(typeof object2.res.rt, 'number');
assert.equal(object2.res.size, 0);
assert.equal(object2.name, name);
// put with callback fail
await assert.rejects(
async () => {
await ossObject.put(name, __filename, {
callback: {
url: 'https://help.aliyun.com/zh/oss/support/0007-00000205',
body: 'foo=bar',
},
});
},
(err: OSSClientError) => {
assert.equal(err.name, 'OSSClientError');
assert.equal(err.code, 'CallbackFailed');
assert.ok(err.hostId);
assert.ok(err.requestId);
assert.match(err.message, /Response body is not valid json format\./);
return true;
}
);
// delete the new file
const result = await ossObject.delete(name);
assert.equal(result.res.status, 204);
});
it('should add object with content buffer', async () => {
name = `${prefix}oss-client/oss/put-buffer`;
const object = await ossObject.put(
`/${name}`,
Buffer.from('foo content')
);
assert.equal(typeof object.res.headers['x-oss-request-id'], 'string');
assert.equal(typeof object.res.rt, 'number');
assert.equal(object.name, name);
});
it('should keep /foo/bar compatible to foo/bar', async () => {
const name1 = `/${prefix}oss-client/oss/put-name-compatible`;
const name2 = `${prefix}oss-client/oss/put-name-compatible`;
const object1 = await ossObject.put(name1, Buffer.from('foo content'));
assert.equal(typeof object1.res.headers['x-oss-request-id'], 'string');
assert.equal(typeof object1.res.rt, 'number');
assert.equal(object1.name, name2);
let o = await ossObject.head(name1);
assert.ok(o);
assert.equal(o.status, 200);
await ossObject.delete(name1);
await assert.rejects(
async () => {
await ossObject.head(name1);
},
(err: OSSClientError) => {
assert.equal(err.code, 'NoSuchKey');
return true;
}
);
const object2 = await ossObject.put(name2, Buffer.from('foo content'));
assert.equal(typeof object2.res.headers['x-oss-request-id'], 'string');
assert.equal(typeof object2.res.rt, 'number');
assert.equal(object2.name, name2);
o = await ossObject.head(name2);
assert.ok(o);
assert.equal(o.status, 200);
await ossObject.delete(name2);
await assert.rejects(
async () => {
await ossObject.head(name2);
},
(err: OSSClientError) => {
assert.equal(err.code, 'NoSuchKey');
return true;
}
);
});
it('should add object with readstream', async () => {
name = `${prefix}oss-client/oss/put-readstream`;
const object = await ossObject.put(name, createReadStream(__filename));
assert.equal(typeof object.res.headers['x-oss-request-id'], 'string');
assert.equal(typeof object.res.rt, 'number');
assert.equal(typeof object.res.headers.etag, 'string');
assert.equal(object.name, name);
});
it('should add object with Readable', async () => {
name = `${prefix}oss-client/oss/put-Readable`;
// oxlint-disable-next-line consistent-function-scoping
async function* generate() {
yield 'Hello, ';
yield '你好 OSS';
}
const readable = Readable.from(generate());
const object = await ossObject.put(name, readable, {
headers: {
'content-length': Buffer.byteLength(
'Hello, 你好 OSS',
'utf8'
).toString(),
},
});
assert.equal(typeof object.res.headers['x-oss-request-id'], 'string');
assert.equal(typeof object.res.rt, 'number');
assert.equal(typeof object.res.headers.etag, 'string');
assert.equal(object.name, name);
const result = await ossObject.get(name);
assert.equal(result.content.toString(), 'Hello, 你好 OSS');
});
it('should add object with meta', async () => {
name = `${prefix}oss-client/oss/put-meta.js`;
const object = await ossObject.put(name, __filename, {
meta: {
uid: 1,
slus: 'test.html',
},
});
assert.equal(typeof object.res.headers['x-oss-request-id'], 'string');
assert.equal(typeof object.res.rt, 'number');
assert.equal(object.res.size, 0);
assert.equal(object.name, name);
const info = await ossObject.head(name);
assert.deepEqual(info.meta, {
uid: '1',
slus: 'test.html',
});
assert.equal(info.status, 200);
});
it('should set Content-Disposition with ascii name', async () => {
name = `${prefix}oss-client/oss/put-Content-Disposition.js`;
const object = await ossObject.put(name, __filename, {
headers: {
'Content-Disposition': 'ascii-name.js',
},
});
assert.ok(object.name, name);
const info = await ossObject.head(name);
assert.equal(info.res.headers['content-disposition'], 'ascii-name.js');
});
it('should set Content-Disposition with no-ascii name', async () => {
name = `${prefix}oss-client/oss/put-Content-Disposition.js`;
const object = await ossObject.put(name, __filename, {
headers: {
'Content-Disposition': encodeURIComponent('non-ascii-名字.js'),
},
});
assert.ok(object.name, name);
const info = await ossObject.head(name);
assert.equal(
info.res.headers['content-disposition'],
'non-ascii-%E5%90%8D%E5%AD%97.js'
);
});
it('should set Expires', async () => {
name = `${prefix}oss-client/oss/put-Expires.js`;
const object = await ossObject.put(name, __filename, {
headers: {
Expires: '1000000',
},
});
assert.ok(object.name, name);
const info = await ossObject.head(name);
assert.equal(info.res.headers.expires, '1000000');
});
it('should set custom Content-Type', async () => {
name = `${prefix}oss-client/oss/put-Content-Type.js`;
const object = await ossObject.put(name, __filename, {
headers: {
'Content-Type': 'text/plain; charset=gbk',
},
});
assert.ok(object.name, name);
const info = await ossObject.head(name);
assert.equal(info.res.headers['content-type'], 'text/plain; charset=gbk');
});
it('should set custom content-type lower case', async () => {
name = `${prefix}oss-client/oss/put-content-type.js`;
const object = await ossObject.put(name, __filename, {
headers: {
'content-type': 'application/javascript; charset=utf8',
},
});
assert.ok(object.name, name);
const info = await ossObject.head(name);
assert.equal(
info.res.headers['content-type'],
'application/javascript; charset=utf8'
);
});
it('should set custom Content-MD5 and ignore case', async () => {
name = `test-md5-${Date.now()}.js`;
const content = Buffer.alloc(1024 * 4);
const MD5Value = createHash('md5').update(content).digest('base64');
await ossObject.put(name, content, {
headers: {
'Content-MD5': MD5Value,
},
});
await ossObject.put(name, content, {
headers: {
'content-Md5': MD5Value,
},
});
});
it('should return correct encode when name include + and space', async () => {
name = `${prefix}ali-sdkhahhhh+oss+mm xxx.js`;
const object = await ossObject.put(name, __filename, {
headers: {
'Content-Type': 'text/plain; charset=gbk',
},
});
assert.ok(object.name, name);
const info = await ossObject.head(name);
const url = (info.res as unknown as { requestUrls: string[] })
.requestUrls[0];
const urlObject = new URL(url);
assert.equal(
urlObject.pathname,
`/${prefix}ali-sdkhahhhh%2Boss%2Bmm%20xxx.js`
);
assert.equal(info.res.headers['content-type'], 'text/plain; charset=gbk');
});
it('should work with x-oss-forbid-overwrite header to not allow put same name file', async () => {
const body = Buffer.from('san');
name = `${prefix}put/testsan`;
const resultPut = await ossObject.put(name, body);
assert.equal(resultPut.res.status, 200);
await assert.rejects(
async () => {
await ossObject.put(name, body, {
headers: { 'x-oss-forbid-overwrite': 'true' },
});
},
(err: OSSClientError) => {
assert.equal(err.name, 'OSSClientError');
assert.equal(err.code, 'FileAlreadyExists');
assert.match(
err.message,
/The object you specified already exists and can not be overwritten\./
);
return true;
}
);
});
it('should throw error when path is not file ', async () => {
const file = __dirname;
name = `${prefix}put/testpathnotfile`;
await assert.rejects(
async () => {
await ossObject.put(name, file);
},
(err: Error) => {
assert.equal(`${__dirname} is not file`, err.message);
return true;
}
);
});
});
describe('putStream()', () => {
let name: string;
afterEach(async () => {
await ossObject.delete(name);
});
it('should add object with streaming way', async () => {
name = `${prefix}oss-client/oss/putStream-localfile.js`;
const object = await ossObject.putStream(
name,
createReadStream(__filename)
);
assert.equal(typeof object.res.headers['x-oss-request-id'], 'string');
assert.equal(typeof object.res.rt, 'number');
assert.equal(object.res.size, 0);
assert.equal(object.name, name);
assert.ok(object.url);
// check content
const r = await ossObject.get(name);
assert.equal(r.res.headers['content-type'], 'application/javascript');
const stats = await stat(__filename);
assert.equal(r.res.headers['content-length'], `${stats.size}`);
assert.equal(r.res.status, 200);
assert.ok((r.res as RawResponseWithMeta).timing.contentDownload > 0);
assert.ok(r.content);
assert.equal(r.content.toString(), await readFile(__filename, 'utf8'));
});
it('should add image with file streaming way', async () => {
name = `${prefix}oss-client/oss/nodejs-1024x768.png`;
const imagePath = path.join(__dirname, 'nodejs-1024x768.png');
const object = await ossObject.putStream(
name,
createReadStream(imagePath),
{
mime: 'image/png',
}
);
assert.equal(typeof object.res.headers['x-oss-request-id'], 'string');
assert.equal(typeof object.res.rt, 'number');
assert.equal(object.res.size, 0);
assert.equal(object.name, name);
// check content
const r = await ossObject.get(name);
// console.log(r.res.headers);
// {
// server: 'AliyunOSS',
// date: 'Sat, 22 Oct 2022 13:25:55 GMT',
// 'content-type': 'image/png',
// 'content-length': '502182',
// connection: 'keep-alive',
// 'x-oss-request-id': '6353EF633DE20A809D8088EA',
// 'accept-ranges': 'bytes',
// etag: '"39D12ED73B63BAAC31F980F555AE4FDE"',
// 'last-modified': 'Sat, 22 Oct 2022 13:25:55 GMT',
// 'x-oss-object-type': 'Normal',
// 'x-oss-hash-crc64ecma': '8835162692478804631',
// 'x-oss-storage-class': 'Standard',
// 'content-md5': 'OdEu1ztjuqwx+YD1Va5P3g==',
// 'x-oss-server-time': '14'
// }
assert.equal(r.res.status, 200);
assert.equal(r.res.headers['content-type'], 'image/png');
const buf = await readFile(imagePath);
assert.equal(r.res.headers['content-length'], `${buf.length}`);
assert.ok(r.content);
assert.equal(r.content.length, buf.length);
assert.deepEqual(r.content, buf);
});
it('should put object with http streaming way', async () => {
name = `${prefix}oss-client/oss/nodejs-1024x768.png`;
const nameCpy = `${prefix}oss-client/oss/nodejs-1024x768`;
const imagePath = path.join(__dirname, 'nodejs-1024x768.png');
await ossObject.putStream(name, createReadStream(imagePath), {
mime: 'image/png',
});
const signUrl = ossObject.signatureUrl(name, { expires: 3600 });
const { res: httpStream, status } = await request(signUrl, {
dataType: 'stream',
});
assert.equal(httpStream.headers['content-type'], 'image/png');
assert.equal(httpStream.headers['content-length'], '502182');
assert.equal(status, 200);
const putResult = await ossObject.putStream(nameCpy, httpStream);
assert.equal(putResult.res.status, 200);
const getResult = await ossObject.get(nameCpy);
assert.equal(getResult.res.status, 200);
assert.equal(
getResult.res.headers['content-type'],
'application/octet-stream'
);
assert.equal(
getResult.res.headers['content-length'],
httpStream.headers['content-length']
);
assert.equal(getResult.res.headers.etag, putResult.res.headers.etag);
assert.equal(getResult.res.headers.etag, httpStream.headers.etag);
});
// timeout on Node.js 18
it.skipIf(process.version.startsWith('v18.'))(
'should add very big file: 4mb with streaming way',
async () => {
name = `${prefix}oss-client/oss/bigfile-4mb.bin`;
const bigFile = path.join(tmpdir, 'bigfile-4mb.bin');
await writeFile(bigFile, Buffer.alloc(4 * 1024 * 1024).fill('a\n'));
const object = await ossObject.putStream(
name,
createReadStream(bigFile)
);
assert.equal(typeof object.res.headers['x-oss-request-id'], 'string');
assert.equal(typeof object.res.rt, 'number');
assert.equal(object.res.size, 0);
assert.equal(object.name, name);