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


PHP Server::exposeVersion方法代码示例

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


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

示例1: testBeforeMethodNoVersion

 function testBeforeMethodNoVersion()
 {
     if (!SABRE_HASSQLITE) {
         $this->markTestSkipped('SQLite driver is not available');
     }
     $cbackend = TestUtil::getBackend();
     $props = array('uri' => 'UUID-123467', 'principaluri' => 'admin', 'id' => 1);
     $tree = array(new Calendar($cbackend, $props));
     $p = new ICSExportPlugin();
     $s = new DAV\Server($tree);
     $s->addPlugin($p);
     $s->addPlugin(new Plugin());
     $h = new HTTP\Request(array('QUERY_STRING' => 'export'));
     $s->httpRequest = $h;
     $s->httpResponse = new HTTP\ResponseMock();
     DAV\Server::$exposeVersion = false;
     $this->assertFalse($p->beforeMethod('GET', 'UUID-123467?export'));
     DAV\Server::$exposeVersion = true;
     $this->assertEquals('HTTP/1.1 200 OK', $s->httpResponse->status);
     $this->assertEquals(array('Content-Type' => 'text/calendar'), $s->httpResponse->headers);
     $obj = VObject\Reader::read($s->httpResponse->body);
     $this->assertEquals(5, count($obj->children()));
     $this->assertEquals(1, count($obj->VERSION));
     $this->assertEquals(1, count($obj->CALSCALE));
     $this->assertEquals(1, count($obj->PRODID));
     $this->assertFalse(strpos((string) $obj->PRODID, DAV\Version::VERSION) !== false);
     $this->assertEquals(1, count($obj->VTIMEZONE));
     $this->assertEquals(1, count($obj->VEVENT));
 }
开发者ID:samj1912,项目名称:repo,代码行数:29,代码来源:ICSExportPluginTest.php

示例2: testBeforeMethodNoVersion

 function testBeforeMethodNoVersion()
 {
     if (!SABRE_HASSQLITE) {
         $this->markTestSkipped('SQLite driver is not available');
     }
     $cbackend = TestUtil::getBackend();
     $props = ['uri' => 'UUID-123467', 'principaluri' => 'admin', 'id' => 1];
     $tree = [new Calendar($cbackend, $props)];
     $p = new ICSExportPlugin();
     $s = new DAV\Server($tree);
     $s->addPlugin($p);
     $s->addPlugin(new Plugin());
     $h = HTTP\Sapi::createFromServerArray(['REQUEST_URI' => '/UUID-123467?export', 'REQUEST_METHOD' => 'GET']);
     $s->httpRequest = $h;
     $s->httpResponse = new HTTP\ResponseMock();
     DAV\Server::$exposeVersion = false;
     $this->assertFalse($p->httpGet($h, $s->httpResponse));
     DAV\Server::$exposeVersion = true;
     $this->assertEquals(200, $s->httpResponse->status);
     $this->assertEquals(['Content-Type' => 'text/calendar'], $s->httpResponse->getHeaders());
     $obj = VObject\Reader::read($s->httpResponse->body);
     $this->assertEquals(5, count($obj->children()));
     $this->assertEquals(1, count($obj->VERSION));
     $this->assertEquals(1, count($obj->CALSCALE));
     $this->assertEquals(1, count($obj->PRODID));
     $this->assertFalse(strpos((string) $obj->PRODID, DAV\Version::VERSION) !== false);
     $this->assertEquals(1, count($obj->VTIMEZONE));
     $this->assertEquals(1, count($obj->VEVENT));
 }
开发者ID:mattes,项目名称:sabre-dav,代码行数:29,代码来源:ICSExportPluginTest.php

示例3: testBeforeMethodNoVersion

 function testBeforeMethodNoVersion()
 {
     $request = new HTTP\Request('GET', '/calendars/admin/UUID-123467?export');
     DAV\Server::$exposeVersion = false;
     $response = $this->request($request);
     DAV\Server::$exposeVersion = true;
     $this->assertEquals(200, $response->getStatus());
     $this->assertEquals('text/calendar', $response->getHeader('Content-Type'));
     $obj = VObject\Reader::read($response->body);
     $this->assertEquals(8, count($obj->children()));
     $this->assertEquals(1, count($obj->VERSION));
     $this->assertEquals(1, count($obj->CALSCALE));
     $this->assertEquals(1, count($obj->PRODID));
     $this->assertFalse(strpos((string) $obj->PRODID, DAV\Version::VERSION) !== false);
     $this->assertEquals(1, count($obj->VTIMEZONE));
     $this->assertEquals(1, count($obj->VEVENT));
 }
开发者ID:BlaBlaNet,项目名称:hubzilla,代码行数:17,代码来源:ICSExportPluginTest.php


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