-
Notifications
You must be signed in to change notification settings - Fork 8
xpath ancestor registration #74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
tvdijen
merged 7 commits into
simplesamlphp:master
from
ioigoume:xpath-ancestor-xmlns-registration
Nov 14, 2025
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
a71e04b
xpath ancestor registration
ioigoume e6b1f2c
Move xmlns to constants class
ioigoume c5367f0
Improve XPathTest.php imports/use statements
ioigoume fd976e5
restore composer xmlprovider installer
ioigoume 337d83b
fix dependency path
ioigoume 8f9ac48
Improve testing.Add descendants node access.
ioigoume 66bbb30
Fix quality errors
ioigoume File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,108 @@ | ||
| <?php | ||
|
|
||
| declare(strict_types=1); | ||
|
|
||
| namespace SimpleSAML\Test\XPath; | ||
|
|
||
| use PHPUnit\Framework\Attributes\CoversClass; | ||
| use PHPUnit\Framework\TestCase; | ||
| use SimpleSAML\XPath\XPath; | ||
tvdijen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| /** | ||
| * Tests for the SimpleSAML\XPath\XPath helper. | ||
| */ | ||
| #[CoversClass(XPath::class)] | ||
| final class XPathTest extends TestCase | ||
| { | ||
| public function testGetXPathCachesPerDocumentAndRegistersCoreNamespaces(): void | ||
| { | ||
| // Doc A with an xml:space attribute to validate 'xml' prefix usage works | ||
| $docA = new \DOMDocument(); | ||
| $docA->loadXML(<<<'XML' | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <root xml:space="preserve" xmlns:xml="http://www.w3.org/XML/1998/namespace"> | ||
| <child>value</child> | ||
| </root> | ||
| XML); | ||
|
|
||
| // Doc B is different | ||
| $docB = new \DOMDocument(); | ||
| $docB->loadXML(<<<'XML' | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <another><node/></another> | ||
| XML); | ||
|
|
||
| $xpA1 = XPath::getXPath($docA); | ||
| $xpA2 = XPath::getXPath($docA); | ||
| $xpB = XPath::getXPath($docB); | ||
|
|
||
| // Cached instance reused per same document | ||
| $this->assertSame($xpA1, $xpA2); | ||
| // Different document => different DOMXPath instance | ||
| $this->assertNotSame($xpA1, $xpB); | ||
|
|
||
| // 'xml' prefix registered: query should be valid and return xml:space attribute | ||
| $rootA = $docA->documentElement; | ||
| $this->assertInstanceOf(\DOMElement::class, $rootA); | ||
| $attrs = XPath::xpQuery($rootA, '@xml:space', $xpA1); | ||
| $this->assertCount(1, $attrs); | ||
| $this->assertSame('preserve', $attrs[0]->nodeValue); | ||
| } | ||
|
|
||
|
|
||
| public function testAncestorNamespaceRegistrationAllowsCustomPrefixes(): void | ||
| { | ||
| // Custom namespace declared on the root; query from a descendant node | ||
| $xml = <<<'XML' | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <r xmlns:foo="https://example.org/foo"> | ||
| <a> | ||
| <b> | ||
| <foo:item>ok</foo:item> | ||
| </b> | ||
| </a> | ||
| </r> | ||
| XML; | ||
| $doc = new \DOMDocument(); | ||
| $doc->loadXML($xml); | ||
|
|
||
| // Use a deep context node to ensure ancestor-walk picks up xmlns:foo from root | ||
| $context = $doc->getElementsByTagName('b')->item(0); | ||
| $this->assertInstanceOf(\DOMElement::class, $context); | ||
|
|
||
| $xp = XPath::getXPath($context); | ||
|
|
||
| $nodes = XPath::xpQuery($context, 'foo:item', $xp); | ||
| $this->assertCount(1, $nodes); | ||
| $this->assertSame('ok', $nodes[0]->textContent); | ||
| } | ||
|
|
||
|
|
||
| public function testXpQueryThrowsOnMalformedExpression(): void | ||
| { | ||
| $doc = new \DOMDocument(); | ||
| $doc->loadXML('<root><x/></root>'); | ||
| $xp = XPath::getXPath($doc); | ||
|
|
||
| // If xpQuery throws a specific exception, put that class here instead of \Throwable. | ||
| $this->expectException(\Throwable::class); | ||
| // Keep message assertion resilient to libxml version differences. | ||
| $this->expectExceptionMessageMatches('/(XPath|expression).*invalid|malformed|error/i'); | ||
|
|
||
| // Malformed XPath: missing closing bracket | ||
| $root = $doc->documentElement; | ||
| $this->assertInstanceOf(\DOMElement::class, $root); | ||
|
|
||
| // Avoid emitting a PHP warning; let xpQuery surface it as an exception. | ||
| \libxml_use_internal_errors(true); | ||
| try { | ||
| XPath::xpQuery($root, '//*[', $xp); | ||
| } finally { | ||
| $errors = \libxml_get_errors(); | ||
| self::assertCount(1, $errors); | ||
| self::assertEquals("Invalid expression\n", $errors[0]->message); | ||
| \libxml_clear_errors(); | ||
| \libxml_use_internal_errors(false); | ||
| } | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.