http-request-087 (AB)
Tests p:http-request: Test correct answer to authentication. (Ported http-request #010)
Test is expected to pass.
The pipeline
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc"
xmlns:t="http://xproc.org/ns/testsuite/3.0" version="3.0">
<p:option name="WHOST"
select="'http://localhost:8246'" static="true"/>
<p:output port="result"/>
<p:http-request href="{$WHOST}/docs/basic-auth/"
auth="map{'username' : 'testuser', 'password' : 'testpassword', 'auth-method' : 'Basic', 'preemptive-auth' : true()}">
<p:with-input>
<p:empty/>
</p:with-input>
</p:http-request>
</p:declare-step>
Result
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:t="http://xproc.org/ns/testsuite/3.0">
<head>
<title>Basic authentication test</title>
</head>
<body>
<h1>Basic authentication test</h1>
<p>Success!</p>
</body>
</html>
Schematron checks
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron"
xmlns:t="http://xproc.org/ns/testsuite/3.0" queryBinding="xslt2">
<s:ns prefix="h" uri="http://www.w3.org/1999/xhtml"/>
<s:pattern>
<s:rule context="/">
<s:assert test="h:html">The document root is not h:html.</s:assert>
<s:assert test="h:html/h:body/h:p/text()='Success!'">The authentication failed.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 23 May 2025, Norm Tovey-Walsh
- Added static options for web server host and port.
- 10 Jun 2021, Achim Berndzen
- Added attribute 'queryBinding' to schematron's schema.
- 15 Jan 2020, Achim Berndzen
- Added new tests for p:http-request.