| | |
| | | package org.keycloak.protocol.cas; |
| | | |
| | | import com.jayway.jsonpath.JsonPath; |
| | | import com.sun.xml.bind.v2.util.FatalAdapter; |
| | | import org.junit.Test; |
| | | import org.keycloak.protocol.cas.representations.CASErrorCode; |
| | | import org.keycloak.protocol.cas.representations.CASServiceResponse; |
| | |
| | | import org.keycloak.protocol.cas.utils.ServiceResponseMarshaller; |
| | | import org.w3c.dom.Document; |
| | | import org.w3c.dom.Node; |
| | | import org.xml.sax.helpers.DefaultHandler; |
| | | import org.xmlunit.xpath.JAXPXPathEngine; |
| | | import org.xmlunit.xpath.XPathEngine; |
| | | |
| | | import javax.xml.XMLConstants; |
| | | import javax.xml.parsers.DocumentBuilder; |
| | | import javax.xml.parsers.DocumentBuilderFactory; |
| | | import javax.xml.validation.Schema; |
| | | import javax.xml.validation.SchemaFactory; |
| | | import java.io.ByteArrayInputStream; |
| | | import java.nio.charset.StandardCharsets; |
| | | import java.util.*; |
| | | |
| | | import static org.junit.Assert.assertEquals; |
| | | import static org.keycloak.protocol.cas.XMLValidator.parseAndValidate; |
| | | import static org.keycloak.protocol.cas.XMLValidator.schemaFromClassPath; |
| | | |
| | | public class ServiceResponseTest { |
| | | private final XPathEngine xpath = new JAXPXPathEngine(); |
| | |
| | | // Build and validate XML response |
| | | |
| | | String xml = ServiceResponseMarshaller.marshalXml(response); |
| | | Document doc = parseAndValidate(xml); |
| | | Document doc = parseAndValidate(xml, schemaFromClassPath("cas-response-schema.xsd")); |
| | | assertEquals("username", xpath.evaluate("/cas:serviceResponse/cas:authenticationSuccess/cas:user", doc)); |
| | | int idx = 0; |
| | | for (Node node : xpath.selectNodes("/cas:serviceResponse/cas:authenticationSuccess/cas:attributes/cas:list", doc)) { |
| | |
| | | // Build and validate XML response |
| | | |
| | | String xml = ServiceResponseMarshaller.marshalXml(response); |
| | | Document doc = parseAndValidate(xml); |
| | | Document doc = parseAndValidate(xml, schemaFromClassPath("cas-response-schema.xsd")); |
| | | assertEquals(CASErrorCode.INVALID_REQUEST.name(), xpath.evaluate("/cas:serviceResponse/cas:authenticationFailure/@code", doc)); |
| | | assertEquals("Error description", xpath.evaluate("/cas:serviceResponse/cas:authenticationFailure", doc)); |
| | | } |
| | | |
| | | /** |
| | | * Parse XML document and validate against CAS schema |
| | | */ |
| | | private Document parseAndValidate(String xml) throws Exception { |
| | | Schema schema = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI) |
| | | .newSchema(getClass().getResource("cas-response-schema.xsd")); |
| | | |
| | | DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); |
| | | factory.setSchema(schema); |
| | | factory.setNamespaceAware(true); |
| | | DocumentBuilder builder = factory.newDocumentBuilder(); |
| | | builder.setErrorHandler(new FatalAdapter(new DefaultHandler())); |
| | | return builder.parse(new ByteArrayInputStream(xml.getBytes(StandardCharsets.UTF_8))); |
| | | } |
| | | } |