Skip to content

Commit 035f12e

Browse files
committed
fix: 补充单测 (merge request !35)
Squash merge branch 'dev/ut' into 'master' fix: 补充单测
1 parent 5f22059 commit 035f12e

File tree

7 files changed

+833
-351
lines changed

7 files changed

+833
-351
lines changed

dist/cos-js-sdk-v5.js

-9
Original file line numberDiff line numberDiff line change
@@ -8738,10 +8738,6 @@ var util = __webpack_require__(/*! ./util */ "./src/util.js");
87388738
* @param {Function} callback 回调函数,必须
87398739
*/
87408740
function getService(params, callback) {
8741-
if (typeof params === 'function') {
8742-
callback = params;
8743-
params = {};
8744-
}
87458741
var protocol = this.options.Protocol || (util.isBrowser && (typeof location === "undefined" ? "undefined" : _typeof(location)) === 'object' && location.protocol === 'http:' ? 'http:' : 'https:');
87468742
var domain = this.options.ServiceDomain;
87478743
var appId = params.AppId || this.options.appId;
@@ -13140,10 +13136,6 @@ var initTask = function initTask(cos) {
1314013136
var waiting = task && task.state === 'waiting';
1314113137
var running = task && (task.state === 'checking' || task.state === 'uploading');
1314213138
if (switchToState === 'canceled' && task.state !== 'canceled' || switchToState === 'paused' && waiting || switchToState === 'paused' && running) {
13143-
if (switchToState === 'paused' && task.params.Body && typeof task.params.Body.pipe === 'function') {
13144-
console.error('stream not support pause');
13145-
return;
13146-
}
1314713139
task.state = switchToState;
1314813140
cos.emit('inner-kill-task', {
1314913141
TaskId: id,
@@ -13614,7 +13606,6 @@ var Tracker = /*#__PURE__*/function () {
1361413606
if (!this.beacon && !this.clsReporter) return;
1361513607
this.formatResult(err, data);
1361613608
var formattedParams = formatParams(this.params);
13617-
console.log(formattedParams);
1361813609
if (this.beacon) {
1361913610
this.sendEventsToBeacon(formattedParams);
1362013611
}

dist/cos-js-sdk-v5.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.d.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -2047,8 +2047,9 @@ declare class COS {
20472047

20482048
// 实例方法
20492049
/** 获取用户的 bucket 列表 @see https://cloud.tencent.com/document/product/436/8291 */
2050+
getService(callback: (err: COS.CosError, data: COS.GetServiceResult) => void): void;
20502051
getService(params: COS.GetServiceParams, callback: (err: COS.CosError, data: COS.GetServiceResult) => void): void;
2051-
getService(params: COS.GetServiceParams): Promise<COS.GetServiceResult>;
2052+
getService(params?: COS.GetServiceParams): Promise<COS.GetServiceResult>;
20522053

20532054
/** 创建 Bucket,并初始化访问权限 @see https://cloud.tencent.com/document/product/436/7738 */
20542055
putBucket(params: COS.PutBucketParams, callback: (err: COS.CosError, data: COS.PutBucketResult) => void): void;
@@ -2559,10 +2560,6 @@ declare class COS {
25592560
/** 判断上传队列是否有未完成的任务 */
25602561
isUploadRunning(): boolean;
25612562

2562-
/** 分片复制文件 */
2563-
request(params: COS.RequestParams, callback: (err: COS.CosError, data: COS.RequestResult) => void): void;
2564-
request(params: COS.RequestParams): Promise<COS.RequestResult>;
2565-
25662563
/** 获取文件下载链接 @see https://cloud.tencent.com/document/product/436/35651 */
25672564
getObjectUrl(
25682565
params: COS.GetObjectUrlParams,

src/base.js

-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ var util = require('./util');
1010
* @param {Function} callback 回调函数,必须
1111
*/
1212
function getService(params, callback) {
13-
if (typeof params === 'function') {
14-
callback = params;
15-
params = {};
16-
}
1713
var protocol =
1814
this.options.Protocol ||
1915
(util.isBrowser && typeof location === 'object' && location.protocol === 'http:' ? 'http:' : 'https:');

src/task.js

-4
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,6 @@ var initTask = function (cos) {
123123
(switchToState === 'paused' && waiting) ||
124124
(switchToState === 'paused' && running)
125125
) {
126-
if (switchToState === 'paused' && task.params.Body && typeof task.params.Body.pipe === 'function') {
127-
console.error('stream not support pause');
128-
return;
129-
}
130126
task.state = switchToState;
131127
cos.emit('inner-kill-task', { TaskId: id, toState: switchToState });
132128
try {

src/tracker.js

-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,6 @@ class Tracker {
351351
if (!this.beacon && !this.clsReporter) return;
352352
this.formatResult(err, data);
353353
const formattedParams = formatParams(this.params);
354-
console.log(formattedParams);
355354
if (this.beacon) {
356355
this.sendEventsToBeacon(formattedParams);
357356
}

0 commit comments

Comments
 (0)