-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathobjectOverwrite.js
More file actions
212 lines (185 loc) · 7.71 KB
/
objectOverwrite.js
File metadata and controls
212 lines (185 loc) · 7.71 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
const assert = require('assert');
const {
PutObjectCommand,
PutBucketVersioningCommand,
HeadObjectCommand,
GetObjectCommand,
} = require('@aws-sdk/client-s3');
const withV4 = require('../support/withV4');
const BucketUtility = require('../../lib/utility/bucket-util');
const { fakeMetadataArchive, fakeMetadataTransition, getMetadata, initMetadata } = require('../utils/init');
const coldStateScenarios = [
{
name: 'transition in progress',
transitionInProgress: true,
},
{
name: 'archived',
archiveState: {
archiveInfo: { archiveId: 'archive-1' },
restoreRequestedAt: new Date(0).toISOString(),
restoreRequestedDays: 5,
},
},
{
name: 'restored (not expired)',
archiveState: {
archiveInfo: { archiveId: 'archive-restored' },
restoreRequestedAt: new Date(0).toISOString(),
restoreRequestedDays: 5,
restoreCompletedAt: new Date(Date.now() - 60 * 60 * 1000).toISOString(),
restoreWillExpireAt: new Date(Date.now() + 24 * 60 * 60 * 1000).toISOString(),
},
},
{
name: 'restored (expired)',
archiveState: {
archiveInfo: { archiveId: 'archive-expired' },
restoreRequestedAt: new Date(0).toISOString(),
restoreRequestedDays: 5,
restoreCompletedAt: new Date(Date.now() - 48 * 60 * 60 * 1000).toISOString(),
restoreWillExpireAt: new Date(Date.now() - 24 * 60 * 60 * 1000).toISOString(),
},
},
];
const objectName = 'someObject';
const firstPutMetadata = {
firstput: 'firstValue',
firstputagain: 'firstValue',
evenmoreonfirst: 'stuff',
};
const secondPutMetadata = {
secondput: 'secondValue',
secondputagain: 'secondValue',
};
describe('Put object with same key as prior object', () => {
withV4(sigCfg => {
let bucketUtil;
let s3;
let bucketName;
before(async () => {
bucketUtil = new BucketUtility('default', sigCfg);
s3 = bucketUtil.s3;
bucketName = await bucketUtil.createRandom(1);
await initMetadata();
});
beforeEach(async () => {
await s3.send(new PutObjectCommand({
Bucket: bucketName,
Key: objectName,
Body: 'I am the best content ever',
Metadata: firstPutMetadata,
}));
const res = await s3.send(new HeadObjectCommand({
Bucket: bucketName,
Key: objectName
}));
assert.deepStrictEqual(res.Metadata, firstPutMetadata);
});
afterEach(async () => await bucketUtil.empty(bucketName));
after(async () => await bucketUtil.deleteOne(bucketName));
it('should overwrite all user metadata and data on overwrite put',
async () => {
await s3.send(new PutObjectCommand({
Bucket: bucketName,
Key: objectName,
Body: 'Much different',
Metadata: secondPutMetadata,
}));
const res = await s3.send(new GetObjectCommand({
Bucket: bucketName,
Key: objectName
}));
assert.deepStrictEqual(res.Metadata, secondPutMetadata);
const bodyText = await res.Body.transformToString();
assert.deepStrictEqual(bodyText, 'Much different');
});
coldStateScenarios.forEach(({ name, transitionInProgress, archiveState }) => {
it(`should replace object with cold-state metadata (${name}) in non-versioned bucket`, async () => {
if (transitionInProgress) {
await fakeMetadataTransition(bucketName, objectName, undefined);
} else {
await fakeMetadataArchive(bucketName, objectName, undefined, archiveState);
}
await s3.send(new PutObjectCommand({
Bucket: bucketName,
Key: objectName,
Body: `overwrite cold state ${name}`,
Metadata: secondPutMetadata,
}));
const currentMD = await getMetadata(bucketName, objectName, undefined);
assert.strictEqual(currentMD.archive, undefined);
assert.strictEqual(currentMD['x-amz-scal-transition-in-progress'], undefined);
});
});
it('should create a new version when replacing archived current object in versioned bucket', async () => {
await bucketUtil.empty(bucketName);
await s3.send(new PutBucketVersioningCommand({
Bucket: bucketName,
VersioningConfiguration: { Status: 'Enabled' },
}));
const firstPutRes = await s3.send(new PutObjectCommand({
Bucket: bucketName,
Key: objectName,
Body: 'versioned first payload',
Metadata: firstPutMetadata,
}));
assert(firstPutRes.VersionId);
await fakeMetadataArchive(bucketName, objectName, undefined, {
archiveInfo: { archiveId: 'archive-versioned-current' },
restoreRequestedAt: new Date(0).toISOString(),
restoreRequestedDays: 5,
});
const secondPutRes = await s3.send(new PutObjectCommand({
Bucket: bucketName,
Key: objectName,
Body: 'versioned second payload',
Metadata: secondPutMetadata,
}));
assert(secondPutRes.VersionId);
assert.notStrictEqual(secondPutRes.VersionId, firstPutRes.VersionId);
const headRes = await s3.send(new HeadObjectCommand({
Bucket: bucketName,
Key: objectName,
}));
assert.deepStrictEqual(headRes.Metadata, secondPutMetadata);
const currentMD = await getMetadata(bucketName, objectName, undefined);
assert.strictEqual(currentMD.archive, undefined);
});
it('should replace archived current null version in version-suspended bucket', async () => {
await bucketUtil.empty(bucketName);
await s3.send(new PutBucketVersioningCommand({
Bucket: bucketName,
VersioningConfiguration: { Status: 'Enabled' },
}));
await s3.send(new PutObjectCommand({
Bucket: bucketName,
Key: objectName,
Body: 'enabled-version-payload',
}));
await s3.send(new PutBucketVersioningCommand({
Bucket: bucketName,
VersioningConfiguration: { Status: 'Suspended' },
}));
await s3.send(new PutObjectCommand({
Bucket: bucketName,
Key: objectName,
Body: 'null-current-before-archive',
}));
await fakeMetadataArchive(bucketName, objectName, undefined, {
archiveInfo: { archiveId: 'archive-null-current' },
restoreRequestedAt: new Date(0).toISOString(),
restoreRequestedDays: 5,
});
await s3.send(new PutObjectCommand({
Bucket: bucketName,
Key: objectName,
Body: 'replace archived null current',
Metadata: secondPutMetadata,
}));
const currentMD = await getMetadata(bucketName, objectName, undefined);
assert.strictEqual(currentMD.archive, undefined);
assert.deepStrictEqual(currentMD['x-amz-meta-secondput'], secondPutMetadata.secondput);
});
});
});