本文整理匯總了PHP中Zend\Uri\Http::expects方法的典型用法代碼示例。如果您正苦於以下問題:PHP Http::expects方法的具體用法?PHP Http::expects怎麽用?PHP Http::expects使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend\Uri\Http
的用法示例。
在下文中一共展示了Http::expects方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testCreateBuckets
/**
* Test create bucket
*
* @return void
*/
public function testCreateBuckets()
{
//Valid bucket name
$bucket = 'iamavalidbucket';
$location = '';
$accessKey = 'AKIAIDCZ2WXN6NNB7YZA';
$secretKey = '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';
$requestDate = DateTime::createFromFormat(DateTime::RFC1123, 'Tue, 15 May 2012 15:18:31 +0000');
$this->amazon->setRequestDate($requestDate);
$this->amazon->setKeys($accessKey, $secretKey);
//Fake keys
/**
* Check of request inside _makeRequest
*
*/
$this->uriHttp->expects($this->once())->method('getHost')->with()->will($this->returnValue('s3.amazonaws.com'));
$this->uriHttp->expects($this->once())->method('setHost')->with('iamavalidbucket.s3.amazonaws.com');
$this->uriHttp->expects($this->once())->method('setPath')->with('/');
$this->httpClient->expects($this->once())->method('setUri')->with($this->uriHttp);
$this->httpClient->expects($this->once())->method('setMethod')->with('PUT');
$this->httpClient->expects($this->once())->method('setHeaders')->with(array("Date" => "Tue, 15 May 2012 15:18:31 +0000", "Content-Type" => "application/xml", "Authorization" => "AWS " . $accessKey . ":Y+T4nZxI1wBi1Yn1BMnOK9CDiOM="));
/**
* Fake response inside _makeRequest
*
*/
// Http Response results
$this->httpResponse->expects($this->any())->method('getStatusCode')->will($this->returnValue(200));
// Expects to be called only once the method send() then return a Http Response.
$this->httpClient->expects($this->once())->method('send')->will($this->returnValue($this->httpResponse));
$response = $this->amazon->createBucket($bucket, $location);
$this->assertTrue($response);
}