You've already forked qlg.tsgz.moe
							
							
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
namespace OSS\Tests;
 | 
						|
 | 
						|
use OSS\Http\ResponseCore;
 | 
						|
use OSS\Model\StorageCapacityConfig;
 | 
						|
use OSS\Result\GetStorageCapacityResult;
 | 
						|
use OSS\Core\OssException;
 | 
						|
 | 
						|
class StorageCapacityTest extends \PHPUnit_Framework_TestCase
 | 
						|
{
 | 
						|
 | 
						|
    private $inValidXml = <<<BBBB
 | 
						|
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
<BucketUserQos>
 | 
						|
   <OssStorageCapacity>1</OssStorageCapacity>
 | 
						|
</BucketUserQos>
 | 
						|
BBBB;
 | 
						|
 | 
						|
    private $validXml = <<<BBBB
 | 
						|
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
<BucketUserQos>
 | 
						|
   <StorageCapacity>1</StorageCapacity>
 | 
						|
</BucketUserQos>
 | 
						|
BBBB;
 | 
						|
 | 
						|
    public function testParseInValidXml()
 | 
						|
    {
 | 
						|
        $response = new ResponseCore(array(), $this->inValidXml, 300);
 | 
						|
        try {
 | 
						|
            new GetStorageCapacityResult($response);
 | 
						|
            $this->assertTrue(false);
 | 
						|
        } catch (OssException $e) {}
 | 
						|
    }
 | 
						|
 | 
						|
    public function testParseEmptyXml()
 | 
						|
    {
 | 
						|
        $response = new ResponseCore(array(), "", 300);
 | 
						|
        try {
 | 
						|
            new GetStorageCapacityResult($response);
 | 
						|
            $this->assertTrue(false);
 | 
						|
        } catch (OssException $e) {}
 | 
						|
    }
 | 
						|
 | 
						|
    public function testParseValidXml()
 | 
						|
    {
 | 
						|
        $response = new ResponseCore(array(), $this->validXml, 200);
 | 
						|
        $result = new GetStorageCapacityResult($response);
 | 
						|
        $this->assertEquals($result->getData(), 1);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testSerializeToXml()
 | 
						|
    {
 | 
						|
        $xml = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<BucketUserQos><StorageCapacity>1</StorageCapacity></BucketUserQos>\n";
 | 
						|
        
 | 
						|
        $storageCapacityConfig = new StorageCapacityConfig(1);
 | 
						|
        $content = $storageCapacityConfig->serializeToXml();
 | 
						|
        $this->assertEquals($content, $xml);
 | 
						|
    }
 | 
						|
}
 |