class DOMNodeComparator in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/sebastian/comparator/src/DOMNodeComparator.php \SebastianBergmann\Comparator\DOMNodeComparator
Compares DOMNode instances for equality.
Hierarchy
- class \SebastianBergmann\Comparator\Comparator
- class \SebastianBergmann\Comparator\ArrayComparator
- class \SebastianBergmann\Comparator\ObjectComparator
- class \SebastianBergmann\Comparator\DOMNodeComparator
- class \SebastianBergmann\Comparator\ObjectComparator
- class \SebastianBergmann\Comparator\ArrayComparator
Expanded class hierarchy of DOMNodeComparator
File
- vendor/
sebastian/ comparator/ src/ DOMNodeComparator.php, line 19
Namespace
SebastianBergmann\ComparatorView source
class DOMNodeComparator extends ObjectComparator {
/**
* Returns whether the comparator can compare two values.
*
* @param mixed $expected The first value to compare
* @param mixed $actual The second value to compare
* @return bool
*/
public function accepts($expected, $actual) {
return $expected instanceof DOMNode && $actual instanceof DOMNode;
}
/**
* Asserts that two values are equal.
*
* @param mixed $expected The first value to compare
* @param mixed $actual The second value to compare
* @param float $delta The allowed numerical distance between two values to
* consider them equal
* @param bool $canonicalize If set to TRUE, arrays are sorted before
* comparison
* @param bool $ignoreCase If set to TRUE, upper- and lowercasing is
* ignored when comparing string values
* @throws ComparisonFailure Thrown when the comparison
* fails. Contains information about the
* specific errors that lead to the failure.
*/
public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = false, $ignoreCase = false) {
$expectedAsString = $this
->nodeToText($expected, true, $ignoreCase);
$actualAsString = $this
->nodeToText($actual, true, $ignoreCase);
if ($expectedAsString !== $actualAsString) {
if ($expected instanceof DOMDocument) {
$type = 'documents';
}
else {
$type = 'nodes';
}
throw new ComparisonFailure($expected, $actual, $expectedAsString, $actualAsString, false, sprintf("Failed asserting that two DOM %s are equal.\n", $type));
}
}
/**
* Returns the normalized, whitespace-cleaned, and indented textual
* representation of a DOMNode.
*
* @param DOMNode $node
* @param bool $canonicalize
* @param bool $ignoreCase
* @return string
*/
private function nodeToText(DOMNode $node, $canonicalize, $ignoreCase) {
if ($canonicalize) {
$document = new DOMDocument();
$document
->loadXML($node
->C14N());
$node = $document;
}
if ($node instanceof DOMDocument) {
$document = $node;
}
else {
$document = $node->ownerDocument;
}
$document->formatOutput = true;
$document
->normalizeDocument();
if ($node instanceof DOMDocument) {
$text = $node
->saveXML();
}
else {
$text = $document
->saveXML($node);
}
if ($ignoreCase) {
$text = strtolower($text);
}
return $text;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ArrayComparator:: |
protected | function | ||
Comparator:: |
protected | property | ||
Comparator:: |
protected | property | ||
Comparator:: |
public | function | ||
Comparator:: |
public | function | ||
DOMNodeComparator:: |
public | function |
Returns whether the comparator can compare two values. Overrides ObjectComparator:: |
|
DOMNodeComparator:: |
public | function |
Asserts that two values are equal. Overrides ObjectComparator:: |
|
DOMNodeComparator:: |
private | function | Returns the normalized, whitespace-cleaned, and indented textual representation of a DOMNode. | |
ObjectComparator:: |
protected | function | Converts an object to an array containing all of its private, protected and public properties. | 2 |