1 /*
   2  * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package catalog;
  25 
  26 import static catalog.CatalogTestUtils.CATALOG_URI;
  27 import static catalog.CatalogTestUtils.RESOLVE_CONTINUE;
  28 import static catalog.CatalogTestUtils.catalogUriResolver;
  29 import static catalog.ResolutionChecker.checkNoMatch;
  30 import static catalog.ResolutionChecker.checkUriResolution;
  31 
  32 import javax.xml.catalog.CatalogException;
  33 import javax.xml.catalog.CatalogFeatures;
  34 import javax.xml.catalog.CatalogUriResolver;
  35 
  36 import org.testng.annotations.DataProvider;
  37 import org.testng.annotations.Listeners;
  38 import org.testng.annotations.Test;
  39 
  40 /*
  41  * @test
  42  * @bug 8077931
  43  * @summary Get matched URIs from uri entries.
  44  * @compile ../../libs/catalog/CatalogTestUtils.java
  45  * @compile ../../libs/catalog/ResolutionChecker.java
  46  */
  47 @Listeners({jaxp.library.FilePolicy.class})
  48 public class UriTest {
  49 
  50     @Test(dataProvider = "uri-matchedUri")
  51     public void testMatch(String uri, String matchedUri) {
  52         checkUriResolution(createResolver(), uri, matchedUri);
  53     }
  54 
  55     @DataProvider(name = "uri-matchedUri")
  56     public Object[][] dataOnMatch() {
  57         return new Object[][] {
  58                 // The matched URI of the specified URI reference is defined in
  59                 // a uri entry. The match is an absolute path.
  60                 { "http://remote/dtd/alice/docAlice.dtd",
  61                         "http://local/dtd/docAliceURI.dtd" },
  62 
  63                 // The matched URI of the specified URI reference is defined in
  64                 // a uri entry. But the match isn't an absolute path, so the
  65                 // returned URI should include the base, which is defined by the
  66                 // catalog file, as the prefix.
  67                 { "http://remote/dtd/bob/docBob.dtd",
  68                         "http://local/base/dtd/docBobURI.dtd" },
  69 
  70                 // The catalog file defines two uri entries, and both of them
  71                 // match the specified URI reference. But the first matched URI
  72                 // should be returned.
  73                 { "http://remote/dtd/david/docDavid.dtd",
  74                         "http://local/base/dtd/docDavidURI1.dtd" } };
  75     }
  76 
  77     /*
  78      * Specify base location via method CatalogUriResolver.resolve(href, base).
  79      */
  80     @Test
  81     public void testSpecifyBaseByAPI() {
  82         checkUriResolution(createResolver(),
  83                 "http://remote/dtd/carl/docCarl.dtd",
  84                 "http://local/carlBase/dtd/docCarlURI.dtd");
  85 
  86         CatalogUriResolver continueResolver = catalogUriResolver(
  87                 CatalogFeatures.builder().with(CatalogFeatures.Feature.RESOLVE,
  88                         RESOLVE_CONTINUE).build(), CATALOG_URI);
  89         checkUriResolution(continueResolver, "docCarl.dtd",
  90                 "http://local/alternativeBase/dtd/",
  91                 "http://local/alternativeBase/dtd/docCarl.dtd");
  92     }
  93 
  94     /*
  95      * If no match is found, a CatalogException should be thrown.
  96      */
  97     @Test(expectedExceptions = CatalogException.class)
  98     public void testNoMatch() {
  99         checkNoMatch(createResolver());
 100     }
 101 
 102     private CatalogUriResolver createResolver() {
 103         return catalogUriResolver(CATALOG_URI);
 104     }
 105 }