sonarrradarrplexorganizrnginxdashboardhtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelanding
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							163 lines
						
					
					
						
							4.2 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							163 lines
						
					
					
						
							4.2 KiB
						
					
					
				| <?php | |
| /* | |
|  * This file is part of sebastian/comparator. | |
|  * | |
|  * (c) Sebastian Bergmann <sebastian@phpunit.de> | |
|  * | |
|  * For the full copyright and license information, please view the LICENSE | |
|  * file that was distributed with this source code. | |
|  */ | |
| 
 | |
| namespace SebastianBergmann\Comparator; | |
| 
 | |
| use DOMDocument; | |
| use DOMNode; | |
| use PHPUnit\Framework\TestCase; | |
| 
 | |
| /** | |
|  * @coversDefaultClass SebastianBergmann\Comparator\DOMNodeComparator | |
|  * | |
|  * @uses SebastianBergmann\Comparator\Comparator | |
|  * @uses SebastianBergmann\Comparator\Factory | |
|  * @uses SebastianBergmann\Comparator\ComparisonFailure | |
|  */ | |
| class DOMNodeComparatorTest extends TestCase | |
| { | |
|     private $comparator; | |
| 
 | |
|     protected function setUp() | |
|     { | |
|         $this->comparator = new DOMNodeComparator; | |
|     } | |
| 
 | |
|     public function acceptsSucceedsProvider() | |
|     { | |
|         $document = new DOMDocument; | |
|         $node     = new DOMNode; | |
| 
 | |
|         return [ | |
|           [$document, $document], | |
|           [$node, $node], | |
|           [$document, $node], | |
|           [$node, $document] | |
|         ]; | |
|     } | |
| 
 | |
|     public function acceptsFailsProvider() | |
|     { | |
|         $document = new DOMDocument; | |
| 
 | |
|         return [ | |
|           [$document, null], | |
|           [null, $document], | |
|           [null, null] | |
|         ]; | |
|     } | |
| 
 | |
|     public function assertEqualsSucceedsProvider() | |
|     { | |
|         return [ | |
|           [ | |
|             $this->createDOMDocument('<root></root>'), | |
|             $this->createDOMDocument('<root/>') | |
|           ], | |
|           [ | |
|             $this->createDOMDocument('<root attr="bar"></root>'), | |
|             $this->createDOMDocument('<root attr="bar"/>') | |
|           ], | |
|           [ | |
|             $this->createDOMDocument('<root><foo attr="bar"></foo></root>'), | |
|             $this->createDOMDocument('<root><foo attr="bar"/></root>') | |
|           ], | |
|           [ | |
|             $this->createDOMDocument("<root>\n  <child/>\n</root>"), | |
|             $this->createDOMDocument('<root><child/></root>') | |
|           ], | |
|         ]; | |
|     } | |
| 
 | |
|     public function assertEqualsFailsProvider() | |
|     { | |
|         return [ | |
|           [ | |
|             $this->createDOMDocument('<root></root>'), | |
|             $this->createDOMDocument('<bar/>') | |
|           ], | |
|           [ | |
|             $this->createDOMDocument('<foo attr1="bar"/>'), | |
|             $this->createDOMDocument('<foo attr1="foobar"/>') | |
|           ], | |
|           [ | |
|             $this->createDOMDocument('<foo> bar </foo>'), | |
|             $this->createDOMDocument('<foo />') | |
|           ], | |
|           [ | |
|             $this->createDOMDocument('<foo xmlns="urn:myns:bar"/>'), | |
|             $this->createDOMDocument('<foo xmlns="urn:notmyns:bar"/>') | |
|           ], | |
|           [ | |
|             $this->createDOMDocument('<foo> bar </foo>'), | |
|             $this->createDOMDocument('<foo> bir </foo>') | |
|           ] | |
|         ]; | |
|     } | |
| 
 | |
|     private function createDOMDocument($content) | |
|     { | |
|         $document                     = new DOMDocument; | |
|         $document->preserveWhiteSpace = false; | |
|         $document->loadXML($content); | |
| 
 | |
|         return $document; | |
|     } | |
| 
 | |
|     /** | |
|      * @covers       ::accepts | |
|      * @dataProvider acceptsSucceedsProvider | |
|      */ | |
|     public function testAcceptsSucceeds($expected, $actual) | |
|     { | |
|         $this->assertTrue( | |
|           $this->comparator->accepts($expected, $actual) | |
|         ); | |
|     } | |
| 
 | |
|     /** | |
|      * @covers       ::accepts | |
|      * @dataProvider acceptsFailsProvider | |
|      */ | |
|     public function testAcceptsFails($expected, $actual) | |
|     { | |
|         $this->assertFalse( | |
|           $this->comparator->accepts($expected, $actual) | |
|         ); | |
|     } | |
| 
 | |
|     /** | |
|      * @covers       ::assertEquals | |
|      * @dataProvider assertEqualsSucceedsProvider | |
|      */ | |
|     public function testAssertEqualsSucceeds($expected, $actual) | |
|     { | |
|         $exception = null; | |
| 
 | |
|         try { | |
|             $this->comparator->assertEquals($expected, $actual); | |
|         } catch (ComparisonFailure $exception) { | |
|         } | |
| 
 | |
|         $this->assertNull($exception, 'Unexpected ComparisonFailure'); | |
|     } | |
| 
 | |
|     /** | |
|      * @covers       ::assertEquals | |
|      * @dataProvider assertEqualsFailsProvider | |
|      */ | |
|     public function testAssertEqualsFails($expected, $actual) | |
|     { | |
|         $this->expectException(ComparisonFailure::class); | |
|         $this->expectExceptionMessage('Failed asserting that two DOM'); | |
| 
 | |
|         $this->comparator->assertEquals($expected, $actual); | |
|     } | |
| }
 | |
| 
 |