aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/DAVACL/PluginUpdatePropertiesTest.php
blob: 169629a03f6e30020d7e1f4716047657544991f4 (plain) (tree)
1
2
3
4
5
6
7
8

     

                        


                       
 



                                                                    
                 
                                            
          
                                        
                                                  

                                         
                                                    
                                 
           
 
                     
                               
          

                                                

     

                                            


                                            
                                        


                                                    
 
                                                    
                                             
           
 
                     
                                            
          

                                                
                                                               

     

                                         
                 
                                            
          
                                        


                                                    
 
                                                    
                                                                                          
           
 
                     
                                            
          

                                                
                                                                           


       
                                              
       

                                     


                                            
                                        


                                                    
 
                                                    
                                                        
           

     

                                    
                 
                                            
          
                                        


                                                    
 
                                                    
                                                                                           
           
 


                                            

                                                

     
<?php

declare(strict_types=1);

namespace Sabre\DAVACL;

use Sabre\DAV;

class PluginUpdatePropertiesTest extends \PHPUnit\Framework\TestCase
{
    public function testUpdatePropertiesPassthrough()
    {
        $tree = [
            new DAV\SimpleCollection('foo'),
        ];
        $server = new DAV\Server($tree);
        $server->addPlugin(new DAV\Auth\Plugin());
        $server->addPlugin(new Plugin());

        $result = $server->updateProperties('foo', [
            '{DAV:}foo' => 'bar',
        ]);

        $expected = [
            '{DAV:}foo' => 403,
        ];

        $this->assertEquals($expected, $result);
    }

    public function testRemoveGroupMembers()
    {
        $tree = [
            new MockPrincipal('foo', 'foo'),
        ];
        $server = new DAV\Server($tree);
        $plugin = new Plugin();
        $plugin->allowUnauthenticatedAccess = false;
        $server->addPlugin($plugin);

        $result = $server->updateProperties('foo', [
            '{DAV:}group-member-set' => null,
        ]);

        $expected = [
            '{DAV:}group-member-set' => 204,
        ];

        $this->assertEquals($expected, $result);
        $this->assertEquals([], $tree[0]->getGroupMemberSet());
    }

    public function testSetGroupMembers()
    {
        $tree = [
            new MockPrincipal('foo', 'foo'),
        ];
        $server = new DAV\Server($tree);
        $plugin = new Plugin();
        $plugin->allowUnauthenticatedAccess = false;
        $server->addPlugin($plugin);

        $result = $server->updateProperties('foo', [
            '{DAV:}group-member-set' => new DAV\Xml\Property\Href(['/bar', '/baz'], true),
        ]);

        $expected = [
            '{DAV:}group-member-set' => 200,
        ];

        $this->assertEquals($expected, $result);
        $this->assertEquals(['bar', 'baz'], $tree[0]->getGroupMemberSet());
    }

    /**
     * @expectedException \Sabre\DAV\Exception
     */
    public function testSetBadValue()
    {
        $tree = [
            new MockPrincipal('foo', 'foo'),
        ];
        $server = new DAV\Server($tree);
        $plugin = new Plugin();
        $plugin->allowUnauthenticatedAccess = false;
        $server->addPlugin($plugin);

        $result = $server->updateProperties('foo', [
            '{DAV:}group-member-set' => new \StdClass(),
        ]);
    }

    public function testSetBadNode()
    {
        $tree = [
            new DAV\SimpleCollection('foo'),
        ];
        $server = new DAV\Server($tree);
        $plugin = new Plugin();
        $plugin->allowUnauthenticatedAccess = false;
        $server->addPlugin($plugin);

        $result = $server->updateProperties('foo', [
            '{DAV:}group-member-set' => new DAV\Xml\Property\Href(['/bar', '/baz'], false),
        ]);

        $expected = [
            '{DAV:}group-member-set' => 403,
        ];

        $this->assertEquals($expected, $result);
    }
}