ResumeUpTest.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. <?php
  2. namespace Qiniu\Tests;
  3. use phpDocumentor\Reflection\DocBlock\Tags\Version;
  4. use Qiniu\Region;
  5. use Qiniu\Storage\BucketManager;
  6. use Qiniu\Storage\ResumeUploader;
  7. use Qiniu\Storage\UploadManager;
  8. use Qiniu\Http\Client;
  9. use Qiniu\Config;
  10. use Qiniu\Zone;
  11. class ResumeUpTest extends \PHPUnit_Framework_TestCase
  12. {
  13. private static $keyToDelete = array();
  14. public static function tearDownAfterClass()
  15. {
  16. global $bucketName;
  17. global $testAuth;
  18. $config = new Config();
  19. $bucketManager = new BucketManager($testAuth, $config);
  20. foreach (self::$keyToDelete as $key) {
  21. $bucketManager->delete($bucketName, $key);
  22. }
  23. }
  24. protected $bucketName;
  25. protected $auth;
  26. protected function setUp()
  27. {
  28. global $bucketName;
  29. $this->bucketName = $bucketName;
  30. global $testAuth;
  31. $this->auth = $testAuth;
  32. }
  33. public function test4ML()
  34. {
  35. $key = "resumePutFile4ML_".rand();
  36. $upManager = new UploadManager();
  37. $token = $this->auth->uploadToken($this->bucketName, $key);
  38. $tempFile = qiniuTempFile(4 * 1024 * 1024 + 10);
  39. $resumeFile = tempnam(sys_get_temp_dir(), 'resume_file');
  40. $this->assertNotFalse($resumeFile);
  41. list($ret, $error) = $upManager->putFile(
  42. $token,
  43. $key,
  44. $tempFile,
  45. null,
  46. 'application/octet-stream',
  47. false,
  48. $resumeFile
  49. );
  50. $this->assertNull($error);
  51. $this->assertNotNull($ret['hash']);
  52. unlink($resumeFile);
  53. $domain = getenv('QINIU_TEST_DOMAIN');
  54. $response = Client::get("http://$domain/$key");
  55. $this->assertEquals(200, $response->statusCode);
  56. $this->assertEquals(md5_file($tempFile, true), md5($response->body(), true));
  57. unlink($tempFile);
  58. }
  59. public function test4ML2()
  60. {
  61. $key = 'resumePutFile4ML_'.rand();
  62. $zone = new Zone(array('upload.fake.qiniu.com'), array('upload.qiniup.com'));
  63. $cfg = new Config($zone);
  64. $upManager = new UploadManager($cfg);
  65. $token = $this->auth->uploadToken($this->bucketName, $key);
  66. $tempFile = qiniuTempFile(4 * 1024 * 1024 + 10);
  67. $resumeFile = tempnam(sys_get_temp_dir(), 'resume_file');
  68. $this->assertNotFalse($resumeFile);
  69. list($ret, $error) = $upManager->putFile(
  70. $token,
  71. $key,
  72. $tempFile,
  73. null,
  74. 'application/octet-stream',
  75. false,
  76. $resumeFile
  77. );
  78. $this->assertNull($error);
  79. $this->assertNotNull($ret['hash']);
  80. unlink($resumeFile);
  81. $domain = getenv('QINIU_TEST_DOMAIN');
  82. $response = Client::get("http://$domain/$key");
  83. $this->assertEquals(200, $response->statusCode);
  84. $this->assertEquals(md5_file($tempFile, true), md5($response->body(), true));
  85. unlink($tempFile);
  86. }
  87. // public function test8M()
  88. // {
  89. // $key = 'resumePutFile8M';
  90. // $upManager = new UploadManager();
  91. // $token = $this->auth->uploadToken($this->bucketName, $key);
  92. // $tempFile = qiniuTempFile(8*1024*1024+10);
  93. // list($ret, $error) = $upManager->putFile($token, $key, $tempFile);
  94. // $this->assertNull($error);
  95. // $this->assertNotNull($ret['hash']);
  96. // unlink($tempFile);
  97. // }
  98. public function testFileWithFileType()
  99. {
  100. $config = new Config();
  101. $bucketManager = new BucketManager($this->auth, $config);
  102. $testCases = array(
  103. array(
  104. "fileType" => 1,
  105. "name" => "IA"
  106. ),
  107. array(
  108. "fileType" => 2,
  109. "name" => "Archive"
  110. ),
  111. array(
  112. "fileType" => 3,
  113. "name" => "DeepArchive"
  114. )
  115. );
  116. foreach ($testCases as $testCase) {
  117. $key = 'FileType'.$testCase["name"].rand();
  118. $police = array(
  119. "fileType" => $testCase["fileType"],
  120. );
  121. $token = $this->auth->uploadToken($this->bucketName, $key, 3600, $police);
  122. $upManager = new UploadManager();
  123. list($ret, $error) = $upManager->putFile($token, $key, __file__, null, 'text/plain');
  124. $this->assertNull($error);
  125. $this->assertNotNull($ret);
  126. array_push(self::$keyToDelete, $key);
  127. list($ret, $err) = $bucketManager->stat($this->bucketName, $key);
  128. $this->assertNull($err);
  129. $this->assertEquals($testCase["fileType"], $ret["type"]);
  130. }
  131. }
  132. public function testResumeUploadWithParams()
  133. {
  134. $key = "resumePutFile4ML_".rand();
  135. $upManager = new UploadManager();
  136. $policy = array('returnBody' => '{"hash":$(etag),"fname":$(fname),"var_1":$(x:var_1),"var_2":$(x:var_2)}');
  137. $token = $this->auth->uploadToken($this->bucketName, $key, 3600, $policy);
  138. $tempFile = qiniuTempFile(4 * 1024 * 1024 + 10);
  139. $resumeFile = tempnam(sys_get_temp_dir(), 'resume_file');
  140. $this->assertNotFalse($resumeFile);
  141. list($ret, $error) = $upManager->putFile(
  142. $token,
  143. $key,
  144. $tempFile,
  145. ["x:var_1" => "val_1", "x:var_2" => "val_2", "x-qn-meta-m1" => "val_1", "x-qn-meta-m2" => "val_2"],
  146. 'application/octet-stream',
  147. false,
  148. $resumeFile
  149. );
  150. $this->assertNull($error);
  151. $this->assertNotNull($ret['hash']);
  152. $this->assertEquals("val_1", $ret['var_1']);
  153. $this->assertEquals("val_2", $ret['var_2']);
  154. $this->assertEquals(basename($tempFile), $ret['fname']);
  155. unlink($resumeFile);
  156. $domain = getenv('QINIU_TEST_DOMAIN');
  157. $response = Client::get("http://$domain/$key");
  158. $this->assertEquals(200, $response->statusCode);
  159. $this->assertEquals(md5_file($tempFile, true), md5($response->body(), true));
  160. $this->assertEquals("val_1", $response->headers()["X-Qn-Meta-M1"]);
  161. $this->assertEquals("val_2", $response->headers()["X-Qn-Meta-M2"]);
  162. unlink($tempFile);
  163. }
  164. public function testResumeUploadV2()
  165. {
  166. $zone = new Zone(array('up.qiniup.com'));
  167. $cfg = new Config($zone);
  168. $upManager = new UploadManager($cfg);
  169. $testFileSize = array(
  170. config::BLOCK_SIZE / 2,
  171. config::BLOCK_SIZE,
  172. config::BLOCK_SIZE + 10,
  173. config::BLOCK_SIZE * 2,
  174. config::BLOCK_SIZE * 2.5
  175. );
  176. $partSize = 5 * 1024 * 1024;
  177. foreach ($testFileSize as $item) {
  178. $key = 'resumePutFile4ML_'.rand()."_";
  179. $token = $this->auth->uploadToken($this->bucketName, $key);
  180. $tempFile = qiniuTempFile($item);
  181. $resumeFile = tempnam(sys_get_temp_dir(), 'resume_file');
  182. $this->assertNotFalse($resumeFile);
  183. list($ret, $error) = $upManager->putFile(
  184. $token,
  185. $key,
  186. $tempFile,
  187. null,
  188. 'application/octet-stream',
  189. false,
  190. $resumeFile,
  191. 'v2',
  192. $partSize
  193. );
  194. $this->assertNull($error);
  195. $this->assertNotNull($ret['hash']);
  196. unlink($resumeFile);
  197. $domain = getenv('QINIU_TEST_DOMAIN');
  198. $response = Client::get("http://$domain/$key");
  199. $this->assertEquals(200, $response->statusCode);
  200. $this->assertEquals(md5_file($tempFile, true), md5($response->body(), true));
  201. unlink($tempFile);
  202. }
  203. }
  204. public function testResumeUploadV2WithParams()
  205. {
  206. $key = "resumePutFile4ML_".rand();
  207. $upManager = new UploadManager();
  208. $policy = array('returnBody' => '{"hash":$(etag),"fname":$(fname),"var_1":$(x:var_1),"var_2":$(x:var_2)}');
  209. $token = $this->auth->uploadToken($this->bucketName, $key, 3600, $policy);
  210. $tempFile = qiniuTempFile(4 * 1024 * 1024 + 10);
  211. $resumeFile = tempnam(sys_get_temp_dir(), 'resume_file');
  212. $this->assertNotFalse($resumeFile);
  213. list($ret, $error) = $upManager->putFile(
  214. $token,
  215. $key,
  216. $tempFile,
  217. ["x:var_1" => "val_1", "x:var_2" => "val_2", "x-qn-meta-m1" => "val_1", "x-qn-meta-m2" => "val_2"],
  218. 'application/octet-stream',
  219. false,
  220. $resumeFile,
  221. 'v2'
  222. );
  223. $this->assertNull($error);
  224. $this->assertNotNull($ret['hash']);
  225. $this->assertEquals("val_1", $ret['var_1']);
  226. $this->assertEquals("val_2", $ret['var_2']);
  227. $this->assertEquals(basename($tempFile), $ret['fname']);
  228. unlink($resumeFile);
  229. $domain = getenv('QINIU_TEST_DOMAIN');
  230. $response = Client::get("http://$domain/$key");
  231. $this->assertEquals(200, $response->statusCode);
  232. $this->assertEquals(md5_file($tempFile, true), md5($response->body(), true));
  233. $this->assertEquals("val_1", $response->headers()["X-Qn-Meta-M1"]);
  234. $this->assertEquals("val_2", $response->headers()["X-Qn-Meta-M2"]);
  235. unlink($tempFile);
  236. }
  237. // valid versions are tested above
  238. // Use PHPUnit's Data Provider to test multiple Exception is better,
  239. // but not match the test style of this project
  240. public function testResumeUploadWithInvalidVersion()
  241. {
  242. $zone = new Zone(array('up.qiniup.com'));
  243. $cfg = new Config($zone);
  244. $upManager = new UploadManager($cfg);
  245. $testFileSize = config::BLOCK_SIZE * 2;
  246. $partSize = 5 * 1024 * 1024;
  247. $testInvalidVersions = array(
  248. // High probability invalid versions
  249. 'v',
  250. '1',
  251. '2'
  252. );
  253. $expectExceptionCount = 0;
  254. foreach ($testInvalidVersions as $invalidVersion) {
  255. $key = 'resumePutFile4ML_'.rand()."_";
  256. $token = $this->auth->uploadToken($this->bucketName, $key);
  257. $tempFile = qiniuTempFile($testFileSize);
  258. $resumeFile = tempnam(sys_get_temp_dir(), 'resume_file');
  259. $this->assertNotFalse($resumeFile);
  260. try {
  261. $upManager->putFile(
  262. $token,
  263. $key,
  264. $tempFile,
  265. null,
  266. 'application/octet-stream',
  267. false,
  268. $resumeFile,
  269. $invalidVersion,
  270. $partSize
  271. );
  272. } catch (\Exception $e) {
  273. $isRightException = false;
  274. $expectExceptionCount++;
  275. while ($e) {
  276. $isRightException = $e instanceof \UnexpectedValueException;
  277. if ($isRightException) {
  278. break;
  279. }
  280. $e = $e->getPrevious();
  281. }
  282. $this->assertTrue($isRightException);
  283. }
  284. unlink($resumeFile);
  285. unlink($tempFile);
  286. }
  287. $this->assertEquals(count($testInvalidVersions), $expectExceptionCount);
  288. }
  289. }