Skip to content

Commit e73e782

Browse files
author
fengyunhai
committed
修复部分已知BUG,增加Fusion及dfop
修复已知bug:上传发生重试时,最后上传到空间的文件内容有错误 更新:默认不使用CDN 更新:上传时重试域名和原始上传域名保持一致 增加:Fusion模块 增加:Processing模块增加dfop功能
1 parent 97ae1da commit e73e782

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1353
-1714
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
**2016-12-01**
2+
3+
最新版本v7.0.0.5
4+
5+
增加:[Fusion](http://developer.qiniu.com/article/index.html#fusion)相关功能
6+
7+
增加: dfop
8+
9+
修复:上传(分片上传)文件发生重试时,上传到空间的文件内容错误
10+
11+
修改:默认不使用CDN(可自行设置);重试域名和原始上传域名保持一致
12+
13+
* * *
14+
15+
116
**2016-11-22**
217

318
最新版本v7.0.0.3,适用于.NET xx

Qiniu.Test/FusionManagerTest.cs

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
using System;
2+
using Microsoft.VisualStudio.TestTools.UnitTesting;
3+
using Qiniu.Fusion;
4+
using Qiniu.Fusion.Model;
5+
using Qiniu.Util;
6+
7+
namespace QiniuTest
8+
{
9+
/// <summary>
10+
/// Test class of BucketManager
11+
/// </summary>
12+
[TestClass]
13+
public class FusionManagerTest
14+
{
15+
/// <summary>
16+
/// get/set
17+
/// </summary>
18+
public TestContext Instance
19+
{
20+
get;
21+
set;
22+
}
23+
24+
/// <summary>
25+
/// Test method of BucketManager
26+
/// </summary>
27+
[TestMethod]
28+
public void fusionMgrTest()
29+
{
30+
//Settings.load();
31+
Settings.LoadFromFile();
32+
string testResUrl = "http://test.fengyh.cn/qiniu/files/hello.txt";
33+
Mac mac = new Mac(Settings.AccessKey, Settings.SecretKey);
34+
FusionManager target = new FusionManager(mac);
35+
36+
//
37+
}
38+
}
39+
}

Qiniu.Test/Models/PersistentOpsAvthumbTest.cs

Lines changed: 0 additions & 13 deletions
This file was deleted.

Qiniu.Test/PersistentOps.Avthumb.Test.cs

Lines changed: 0 additions & 111 deletions
This file was deleted.

0 commit comments

Comments
 (0)