当前位置: 首页>>代码示例>>PHP>>正文


PHP Request::setUrl方法代码示例

本文整理汇总了PHP中Sabre\HTTP\Request::setUrl方法的典型用法代码示例。如果您正苦于以下问题:PHP Request::setUrl方法的具体用法?PHP Request::setUrl怎么用?PHP Request::setUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Sabre\HTTP\Request的用法示例。


在下文中一共展示了Request::setUrl方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testSharing

 public function testSharing()
 {
     $this->book->expects($this->once())->method('updateShares')->with([['href' => 'principal:principals/admin', 'commonName' => null, 'summary' => null, 'readOnly' => false]], ['mailto:wilfredo@example.com']);
     // setup request
     $request = new Request();
     $request->addHeader('Content-Type', 'application/xml');
     $request->setUrl('addressbook1.vcf');
     $request->setBody('<?xml version="1.0" encoding="utf-8" ?><CS:share xmlns:D="DAV:" xmlns:CS="http://owncloud.org/ns"><CS:set><D:href>principal:principals/admin</D:href><CS:read-write/></CS:set> <CS:remove><D:href>mailto:wilfredo@example.com</D:href></CS:remove></CS:share>');
     $response = new Response();
     $this->plugin->httpPost($request, $response);
 }
开发者ID:rchicoli,项目名称:owncloud-core,代码行数:11,代码来源:PluginTest.php

示例2: testValidRequest

 function testValidRequest()
 {
     $accessKey = 'accessKey';
     $secretKey = 'secretKey';
     $content = 'thisisthebody';
     $contentMD5 = base64_encode(md5($content, true));
     $date = new \DateTime('now');
     $date->setTimeZone(new \DateTimeZone('GMT'));
     $date = $date->format('D, d M Y H:i:s \\G\\M\\T');
     $sig = base64_encode($this->hmacsha1($secretKey, "POST\n{$contentMD5}\n\n{$date}\nx-amz-date:{$date}\n/evert"));
     $this->request->setUrl('/evert');
     $this->request->setMethod('POST');
     $this->request->setHeaders(['Authorization' => "AWS {$accessKey}:{$sig}", 'Content-MD5' => $contentMD5, 'X-amz-date' => $date]);
     $this->request->setBody($content);
     $this->auth->init();
     $result = $this->auth->validate($secretKey);
     $this->assertTrue($result, 'Signature did not validate, got errorcode ' . $this->auth->errorCode);
     $this->assertEquals($accessKey, $this->auth->getAccessKey());
 }
开发者ID:siite,项目名称:choose-sa-cloud,代码行数:19,代码来源:AWSTest.php


注:本文中的Sabre\HTTP\Request::setUrl方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。