/* * eXist Open Source Native XML Database * Copyright (C) 2009 The eXist Project * http://exist-db.org * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * $Id$ */ package org.exist.xquery.functions.validate; import org.custommonkey.xmlunit.exceptions.XpathException; import org.exist.TestUtils; import org.exist.test.ExistXmldbEmbeddedServer; import org.exist.util.FileUtils; import org.junit.*; import static org.junit.Assert.*; import static org.custommonkey.xmlunit.XMLAssert.assertXpathEvaluatesTo; import java.io.IOException; import java.nio.file.Path; import java.util.function.Predicate; import org.xml.sax.SAXException; import org.xmldb.api.base.Collection; import org.xmldb.api.base.ResourceSet; import org.xmldb.api.base.XMLDBException; /** * Tests for the validation:jaxp() function with Catalog (resolvers). * * @author dizzzz@exist-db.org */ public class JaxpXsdCatalogTest { @ClassRule public static final ExistXmldbEmbeddedServer existEmbeddedServer = new ExistXmldbEmbeddedServer(false, true); private static final String noValidation = "<?xml version='1.0'?>" + "<collection xmlns=\"http://exist-db.org/collection-config/1.0\">" + "<validation mode=\"no\"/>" + "</collection>"; @BeforeClass public static void prepareResources() throws XMLDBException, IOException { // Switch off validation Collection conf = null; try { conf = existEmbeddedServer.createCollection(existEmbeddedServer.getRoot(), "system/config/db/parse"); ExistXmldbEmbeddedServer.storeResource(conf, "collection.xconf", noValidation.getBytes()); } finally { if(conf != null) { conf.close(); } } // Create filter final Predicate<Path> filter = path -> FileUtils.fileName(path).endsWith(".xsd"); Collection schemasCollection = null; try { schemasCollection = existEmbeddedServer.createCollection(existEmbeddedServer.getRoot(), "parse/schemas"); final Path schemas = TestUtils.resolveSample("validation/parse/schemas"); for (final Path file : FileUtils.list(schemas, filter)) { final byte[] data = TestUtils.readFile(file); ExistXmldbEmbeddedServer.storeResource(schemasCollection, FileUtils.fileName(file), data); } } finally { if(schemasCollection != null) { schemasCollection.close(); } } final Path catalog = TestUtils.resolveSample("validation/parse"); Collection parseCollection = null; try { parseCollection = existEmbeddedServer.createCollection(existEmbeddedServer.getRoot(), "parse"); final byte[] data = TestUtils.readFile(catalog, "catalog.xml"); ExistXmldbEmbeddedServer.storeResource(parseCollection, "catalog.xml", data); } finally { if(parseCollection != null) { parseCollection.close(); } } final Path instance = TestUtils.resolveSample("validation/parse/instance"); Collection instanceCollection = null; try { instanceCollection = existEmbeddedServer.createCollection(existEmbeddedServer.getRoot(), "parse/instance"); final byte[] valid = TestUtils.readFile(instance, "valid.xml"); ExistXmldbEmbeddedServer.storeResource(instanceCollection, "valid.xml", valid); final byte[] invalid = TestUtils.readFile(instance, "invalid.xml"); ExistXmldbEmbeddedServer.storeResource(instanceCollection, "invalid.xml", invalid); } finally { if(instanceCollection != null) { instanceCollection.close(); } } } @Before public void clearGrammarCache() throws XMLDBException { final ResourceSet results = existEmbeddedServer.executeQuery("validation:clear-grammar-cache()"); results.getResource(0).getContent(); } @Test public void xsd_stored_catalog_valid() throws XMLDBException, SAXException, XpathException, IOException { final String query = "validation:jaxp-report( " + "doc('/db/parse/instance/valid.xml'), false()," + "doc('/db/parse/catalog.xml') )"; executeAndEvaluate(query,"valid"); } @Test public void xsd_stored_catalog_invalid() throws XMLDBException, SAXException, XpathException, IOException { final String query = "validation:jaxp-report( " + "doc('/db/parse/instance/invalid.xml'), false()," + "doc('/db/parse/catalog.xml') )"; executeAndEvaluate(query,"invalid"); } @Test public void xsd_anyURI_catalog_valid() throws XMLDBException, SAXException, XpathException, IOException { final String query = "validation:jaxp-report( " + "xs:anyURI('/db/parse/instance/valid.xml'), false()," + "xs:anyURI('/db/parse/catalog.xml') )"; executeAndEvaluate(query,"valid"); } @Test public void xsd_anyURI_catalog_invalid() throws XMLDBException, SAXException, XpathException, IOException { final String query = "validation:jaxp-report( " + "xs:anyURI('/db/parse/instance/invalid.xml'), false()," + "xs:anyURI('/db/parse/catalog.xml') )"; executeAndEvaluate(query,"invalid"); } @Test public void xsd_searched_valid() throws XMLDBException, SAXException, XpathException, IOException { final String query = "validation:jaxp-report( " + "doc('/db/parse/instance/valid.xml'), false()," + "xs:anyURI('/db/parse/') )"; executeAndEvaluate(query,"valid"); } @Test public void xsd_searched_invalid() throws XMLDBException, SAXException, XpathException, IOException { final String query = "validation:jaxp-report( " + "doc('/db/parse/instance/invalid.xml'), false()," + "xs:anyURI('/db/parse/') )"; executeAndEvaluate(query,"invalid"); } // test boolean function @Test public void xsd_searched_valid_boolean() throws XMLDBException { final String query = "validation:jaxp( " + "doc('/db/parse/instance/valid.xml'), false()," + "xs:anyURI('/db/parse/') )"; assertEquals("true", existEmbeddedServer.executeOneValue(query)); } // test boolean function @Test public void xsd_searched_invalid_boolean() throws XMLDBException { final String query = "validation:jaxp( " + "doc('/db/parse/instance/invalid.xml'), false()," + "xs:anyURI('/db/parse/') )"; assertEquals("false", existEmbeddedServer.executeOneValue(query)); } // test parse function @Test public void xsd_searched_parse_valid() throws SAXException, IOException, XpathException, XMLDBException { final String query = "validation:jaxp-parse( " + "doc('/db/parse/instance/valid.xml'), false()," + "xs:anyURI('/db/parse/') )"; final String r = existEmbeddedServer.executeOneValue(query); assertXpathEvaluatesTo("2006-05-04T18:13:51.0Z", "//Y", r); } // test parse function @Test public void xsd_searched_parse_invalid() throws SAXException, IOException, XpathException, XMLDBException { final String query = "validation:jaxp-parse( " + "doc('/db/parse/instance/invalid.xml'), false()," + "xs:anyURI('/db/parse/') )"; final String r = existEmbeddedServer.executeOneValue(query); assertXpathEvaluatesTo("2006-05-04T18:13:51.0Z", "//Y", r); } private void executeAndEvaluate(final String query, final String expectedValue) throws XMLDBException, SAXException, IOException, XpathException { final ResourceSet results = existEmbeddedServer.executeQuery(query); assertEquals(1, results.getSize()); final String r = (String) results.getResource(0).getContent(); assertXpathEvaluatesTo(expectedValue, "//status/text()", r); } }