-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathblobs.test.ts
More file actions
85 lines (75 loc) · 2.76 KB
/
blobs.test.ts
File metadata and controls
85 lines (75 loc) · 2.76 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
// Copyright © 2024 Kaleido, Inc.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import stream from 'stream';
import { expect } from 'chai';
import * as blobs from '../../src/handlers/blobs';
const SAMPLE_TEXT_FILE_CONTENTS = 'This is the contents of the sample file';
const SAMPLE_TEXT_FILE_CONTENTS_HASH = '4791654392ed1850e18b594c5731187802451a16f5beeaad19f5efcb708b082a';
const SAMPLE_TEXT_FILE_PATH = '/other/my_test.txt';
describe('blobs', () => {
it('Store blob', async () => {
let readableStream = new stream.PassThrough();
readableStream.write(SAMPLE_TEXT_FILE_CONTENTS);
readableStream.end();
const metadata = await blobs.storeBlob({
key: 'file',
name: 'test.txt',
readableStream
}, SAMPLE_TEXT_FILE_PATH);
expect(metadata.hash).to.equal(SAMPLE_TEXT_FILE_CONTENTS_HASH);
expect(metadata.size).to.equal(SAMPLE_TEXT_FILE_CONTENTS.length);
});
it('Retreive blob', async () => {
const readStream = await blobs.retrieveBlob(SAMPLE_TEXT_FILE_PATH);
await new Promise<void>(resolve => {
let contents = '';
readStream.on('data', data => {
contents += data;
}).on('end', () => {
expect(contents).to.equal(SAMPLE_TEXT_FILE_CONTENTS);
resolve();
});
});
});
it('Retreive blob metadata', async () => {
const metadata = await blobs.retrieveMetadata(SAMPLE_TEXT_FILE_PATH);
expect(metadata.hash).to.equal(SAMPLE_TEXT_FILE_CONTENTS_HASH);
expect(metadata.size).to.equal(SAMPLE_TEXT_FILE_CONTENTS.length);
});
it('Delete blob', async () => {
await blobs.deleteBlob(SAMPLE_TEXT_FILE_PATH);
});
it('Should not return deleted blob', async () => {
let exceptionHandled = false;
try {
await blobs.retrieveBlob(SAMPLE_TEXT_FILE_PATH);
} catch (err: any) {
expect(err.responseCode).to.equal(404);
exceptionHandled = true;
}
expect(exceptionHandled).to.equal(true);
});
it('Should not return deleted blob metadata', async () => {
let exceptionHandled = false;
try {
await blobs.retrieveMetadata(SAMPLE_TEXT_FILE_PATH);
} catch (err: any) {
expect(err.responseCode).to.equal(404);
exceptionHandled = true;
}
expect(exceptionHandled).to.equal(true);
});
});