Skip to content

Commit

Permalink
feat: pic-operations加入签名计算 (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
livehigh committed Dec 5, 2023
1 parent 735ab44 commit 7f11784
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 30 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cos-nodejs-sdk-v5",
"version": "2.12.5",
"version": "2.12.6",
"description": "cos nodejs sdk v5",
"main": "index.js",
"types": "index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions sdk/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ var signHeaders = [
'origin',
'range',
'transfer-encoding',
'pic-operations',
];

var getSignHeaderObj = function (headers) {
Expand Down
62 changes: 33 additions & 29 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ group('getService()', function () {
}
);
})
.catch(function () { });
.catch(function () {});
});
test('getService 不传Region和Domain', function (done, assert) {
var cos = new COS({
Expand All @@ -369,7 +369,7 @@ group('getService()', function () {
done();
});
})
.catch(function () { });
.catch(function () {});
});
test('能正常列出 Bucket', function (done, assert) {
prepareBucket()
Expand All @@ -391,7 +391,7 @@ group('getService()', function () {
}
);
})
.catch(function () { });
.catch(function () {});
});
});

Expand Down Expand Up @@ -773,7 +773,7 @@ group('putObject(),cancelTask()', function () {
done();
}
);
cos.on('task-list-update', function () { });
cos.on('task-list-update', function () {});
});
});

Expand All @@ -792,7 +792,7 @@ group('task 队列', function () {
taskId = id;
},
},
function (err, data) { }
function (err, data) {}
);
};
for (var i = 0; i < 1200; i++) {
Expand Down Expand Up @@ -881,8 +881,8 @@ group('sliceUploadFile() 完整上传文件', function () {
FilePath: filePath,
onTaskReady: function (taskId) {
TaskId = taskId;
cos.on('list-update', info => {
const fileTask = info.list.find(item => item.id === taskId);
cos.on('list-update', (info) => {
const fileTask = info.list.find((item) => item.id === taskId);
if (fileTask && paused && restarted) {
if (fileTask.percent === 0) return;
assert.ok(fileTask.percent > 0.3, '暂停和重试成功');
Expand Down Expand Up @@ -953,7 +953,7 @@ group('sliceUploadFile() 完整上传文件', function () {
}
},
},
function (err, data) { }
function (err, data) {}
);
}
);
Expand Down Expand Up @@ -1249,7 +1249,7 @@ group('putObject()', function () {
Bucket: config.Bucket,
Region: config.Region,
Key: filename,
onProgress: function (info) { },
onProgress: function (info) {},
Output: outputStream,
},
function (err, data) {
Expand Down Expand Up @@ -2985,18 +2985,18 @@ group('BucketPolicy', function () {
],
resource: [
'qcs::cos:' +
config.Region +
':uid/' +
AppId +
':' +
BucketLongName +
'//' +
AppId +
'/' +
BucketShortName +
'/' +
Prefix +
'/*',
config.Region +
':uid/' +
AppId +
':' +
BucketLongName +
'//' +
AppId +
'/' +
BucketShortName +
'/' +
Prefix +
'/*',
], // 1250000000 是 appid
},
],
Expand Down Expand Up @@ -3115,8 +3115,8 @@ group('BucketLocation', function () {
};
assert.ok(
data.LocationConstraint === config.Region ||
data.LocationConstraint === map1[config.Region] ||
data.LocationConstraint === map2[config.Region]
data.LocationConstraint === map1[config.Region] ||
data.LocationConstraint === map2[config.Region]
);
done();
}
Expand Down Expand Up @@ -3271,7 +3271,7 @@ group('BucketWebsite', function () {
Redirect: {
Protocol: 'https',
ReplaceKeyWith: '404.html',
URLRedirect: 'Enabled'
URLRedirect: 'Enabled',
},
},
{
Expand All @@ -3281,7 +3281,7 @@ group('BucketWebsite', function () {
Redirect: {
Protocol: 'https',
ReplaceKeyPrefixWith: 'documents/',
URLRedirect: 'Enabled'
URLRedirect: 'Enabled',
},
},
{
Expand All @@ -3291,7 +3291,7 @@ group('BucketWebsite', function () {
Redirect: {
Protocol: 'https',
ReplaceKeyWith: 'picture.jpg',
URLRedirect: 'Enabled'
URLRedirect: 'Enabled',
},
},
];
Expand Down Expand Up @@ -4057,7 +4057,7 @@ group('Cache-Control', function () {
console.log('data.headers 4057', data.headers);
assert.ok(
data.headers['cache-control'] === 'no-cache' ||
data.headers['cache-control'] === 'no-cache, max-age=259200',
data.headers['cache-control'] === 'no-cache, max-age=259200',
'cache-control 正确'
);
done();
Expand Down Expand Up @@ -4139,7 +4139,7 @@ group('Cache-Control', function () {
console.log('data.headers 4139', data.headers);
assert.ok(
data.headers['cache-control'] === 'no-cache' ||
data.headers['cache-control'] === 'no-cache, max-age=259200',
data.headers['cache-control'] === 'no-cache, max-age=259200',
'cache-control 正确'
);
fs.unlinkSync(filePath);
Expand Down Expand Up @@ -5237,7 +5237,11 @@ group('BucketReplication', function () {
Region: config.Region,
},
function (err, data) {
console.log('data.ReplicationConfiguration.Rules[0].ID', data.ReplicationConfiguration.Rules[0].ID, ruleId);
console.log(
'data.ReplicationConfiguration.Rules[0].ID',
data.ReplicationConfiguration.Rules[0].ID,
ruleId
);
assert.ok(data.ReplicationConfiguration.Rules[0].ID === ruleId);
done();
}
Expand Down

0 comments on commit 7f11784

Please sign in to comment.