Blame view

sources/3rdparty/sabre/dav/tests/Sabre/CalDAV/Schedule/OutboxTest.php 1.91 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  <?php
  
  namespace Sabre\CalDAV\Schedule;
  use Sabre\CalDAV;
  use Sabre\DAV;
  
  class OutboxTest extends \PHPUnit_Framework_TestCase {
  
      function testSetup() {
  
          $outbox = new Outbox('principals/user1');
          $this->assertEquals('outbox', $outbox->getName());
          $this->assertEquals(array(), $outbox->getChildren());
          $this->assertEquals('principals/user1', $outbox->getOwner());
          $this->assertEquals(null, $outbox->getGroup());
  
          $this->assertEquals(array(
              array(
                  'privilege' => '{' . CalDAV\Plugin::NS_CALDAV . '}schedule-query-freebusy',
                  'principal' => 'principals/user1',
                  'protected' => true,
              ),
              array(
                  'privilege' => '{' . CalDAV\Plugin::NS_CALDAV . '}schedule-post-vevent',
                  'principal' => 'principals/user1',
                  'protected' => true,
              ),
              array(
                  'privilege' => '{DAV:}read',
                  'principal' => 'principals/user1',
                  'protected' => true,
              ),
          ), $outbox->getACL());
  
          $ok = false;
          try {
              $outbox->setACL(array());
          } catch (DAV\Exception\MethodNotAllowed $e) {
              $ok = true;
          }
          if (!$ok) {
              $this->fail('Exception was not emitted');
          }
  
      }
  
      function testGetSupportedPrivilegeSet() {
  
          $outbox = new Outbox('principals/user1');
          $r = $outbox->getSupportedPrivilegeSet();
  
          $ok = 0;
          foreach($r['aggregates'] as $priv) {
  
              if ($priv['privilege'] == '{' . CalDAV\Plugin::NS_CALDAV . '}schedule-query-freebusy') {
                  $ok++;
              }
              if ($priv['privilege'] == '{' . CalDAV\Plugin::NS_CALDAV . '}schedule-post-vevent') {
                  $ok++;
              }
          }
  
          $this->assertEquals(2, $ok, "We're missing one or more privileges");
  
      }
  
  
  }