123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- namespace Qiniu\Tests;
-
- use Qiniu\Storage\FormUploader;
- use Qiniu\Storage\UploadManager;
- use Qiniu\Config;
-
- class FormUpTest extends \PHPUnit_Framework_TestCase
- {
- protected $bucketName;
- protected $auth;
- protected $cfg;
-
- protected function setUp()
- {
- global $bucketName;
- $this->bucketName = $bucketName;
-
- global $testAuth;
- $this->auth = $testAuth;
- $this->cfg = new Config();
- }
-
- public function testData()
- {
- $token = $this->auth->uploadToken($this->bucketName);
- list($ret, $error) = FormUploader::put($token, 'formput', 'hello world', $this->cfg, null, 'text/plain', null);
- $this->assertNull($error);
- $this->assertNotNull($ret['hash']);
- }
-
- public function testData2()
- {
- $upManager = new UploadManager();
- $token = $this->auth->uploadToken($this->bucketName);
- list($ret, $error) = $upManager->put($token, 'formput', 'hello world', null, 'text/plain', null);
- $this->assertNull($error);
- $this->assertNotNull($ret['hash']);
- }
-
- public function testFile()
- {
- $key = 'formPutFile';
- $token = $this->auth->uploadToken($this->bucketName, $key);
- list($ret, $error) = FormUploader::putFile($token, $key, __file__, $this->cfg, null, 'text/plain', null);
- $this->assertNull($error);
- $this->assertNotNull($ret['hash']);
- }
-
- public function testFile2()
- {
- $key = 'formPutFile';
- $token = $this->auth->uploadToken($this->bucketName, $key);
- $upManager = new UploadManager();
- list($ret, $error) = $upManager->putFile($token, $key, __file__, null, 'text/plain', null);
- $this->assertNull($error);
- $this->assertNotNull($ret['hash']);
- }
- }
|