aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/DAVACL/Exception/AceConflictTest.php
blob: 60fb8f3e8ff6e39ae9afb213cac660777b58c67e (plain) (tree)
1
2
3
4
5
6
7
8

     

                        



                                 



                                                         


                                         

                                                        



                                       
                   
                           
                                             
          





                                                 

                                                
                                                                                                                                                                                               
         
     
 
<?php

declare(strict_types=1);

namespace Sabre\DAVACL\Exception;

use Sabre\DAV;

class AceConflictTest extends \PHPUnit\Framework\TestCase
{
    public function testSerialize()
    {
        $ex = new AceConflict('message');

        $server = new DAV\Server();
        $dom = new \DOMDocument('1.0', 'utf-8');
        $root = $dom->createElementNS('DAV:', 'd:root');
        $dom->appendChild($root);

        $ex->serialize($server, $root);

        $xpaths = [
            '/d:root' => 1,
            '/d:root/d:no-ace-conflict' => 1,
        ];

        // Reloading because PHP DOM sucks
        $dom2 = new \DOMDocument('1.0', 'utf-8');
        $dom2->loadXML($dom->saveXML());

        $dxpath = new \DOMXPath($dom2);
        $dxpath->registerNamespace('d', 'DAV:');
        foreach ($xpaths as $xpath => $count) {
            $this->assertEquals($count, $dxpath->query($xpath)->length, 'Looking for : '.$xpath.', we could only find '.$dxpath->query($xpath)->length.' elements, while we expected '.$count);
        }
    }
}