44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace Qiniu\Tests;
 | 
						|
 | 
						|
use Qiniu\Http\Client;
 | 
						|
 | 
						|
class HttpTest extends \PHPUnit_Framework_TestCase
 | 
						|
{
 | 
						|
    public function testGet()
 | 
						|
    {
 | 
						|
        $response = Client::get('baidu.com');
 | 
						|
        $this->assertEquals($response->statusCode, 200);
 | 
						|
        $this->assertNotNull($response->body);
 | 
						|
        $this->assertNull($response->error);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testGetQiniu()
 | 
						|
    {
 | 
						|
        $response = Client::get('up.qiniu.com');
 | 
						|
        $this->assertEquals(405, $response->statusCode);
 | 
						|
        $this->assertNotNull($response->body);
 | 
						|
        $this->assertNotNull($response->xReqId());
 | 
						|
        $this->assertNotNull($response->xLog());
 | 
						|
        $this->assertNotNull($response->error);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testPost()
 | 
						|
    {
 | 
						|
        $response = Client::post('baidu.com', null);
 | 
						|
        $this->assertEquals($response->statusCode, 200);
 | 
						|
        $this->assertNotNull($response->body);
 | 
						|
        $this->assertNull($response->error);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testPostQiniu()
 | 
						|
    {
 | 
						|
        $response = Client::post('up.qiniu.com', null);
 | 
						|
        $this->assertEquals($response->statusCode, 400);
 | 
						|
        $this->assertNotNull($response->body);
 | 
						|
        $this->assertNotNull($response->xReqId());
 | 
						|
        $this->assertNotNull($response->xLog());
 | 
						|
        $this->assertNotNull($response->error);
 | 
						|
    }
 | 
						|
}
 |