1 /*
   2  * Copyright (c) 2015, 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.Test;
  38 
  39 /*
  40  * @test
  41  * @bug 8077931
  42  * @summary Get matched URIs from uri entries.
  43  * @compile ../../libs/catalog/CatalogTestUtils.java
  44  * @compile ../../libs/catalog/ResolutionChecker.java
  45  */
  46 public class UriTest {
  47 
  48     @Test(dataProvider = "uri-matchedUri")
  49     public void testMatch(String uri, String matchedUri) {
  50         checkUriResolution(createResolver(), uri, matchedUri);
  51     }
  52 
  53     @DataProvider(name = "uri-matchedUri")
  54     public Object[][] dataOnMatch() {
  55         return new Object[][] {
  56                 // The matched URI of the specified URI reference is defined in
  57                 // a uri entry. The match is an absolute path.
  58                 { "http://remote/dtd/alice/docAlice.dtd",
  59                         "http://local/dtd/docAliceURI.dtd" },
  60 
  61                 // The matched URI of the specified URI reference is defined in
  62                 // a uri entry. But the match isn't an absolute path, so the
  63                 // returned URI should include the base, which is defined by the
  64                 // catalog file, as the prefix.
  65                 { "http://remote/dtd/bob/docBob.dtd",
  66                         "http://local/base/dtd/docBobURI.dtd" },
  67 
  68                 // The catalog file defines two uri entries, and both of them
  69                 // match the specified URI reference. But the first matched URI
  70                 // should be returned.
  71                 { "http://remote/dtd/david/docDavid.dtd",
  72                         "http://local/base/dtd/docDavidURI1.dtd" } };
  73     }
  74 
  75     /*
  76      * Specify base location via method CatalogUriResolver.resolve(href, base).
  77      */
  78     @Test
  79     public void testSpecifyBaseByAPI() {
  80         checkUriResolution(createResolver(),
  81                 "http://remote/dtd/carl/docCarl.dtd",
  82                 "http://local/carlBase/dtd/docCarlURI.dtd");
  83 
  84         CatalogUriResolver continueResolver = catalogUriResolver(
  85                 CatalogFeatures.builder().with(CatalogFeatures.Feature.RESOLVE,
  86                         RESOLVE_CONTINUE).build(), CATALOG_URI);
  87         checkUriResolution(continueResolver, "docCarl.dtd",
  88                 "http://local/alternativeBase/dtd/",
  89                 "http://local/alternativeBase/dtd/docCarl.dtd");
  90     }
  91 
  92     /*
  93      * If no match is found, a CatalogException should be thrown.
  94      */
  95     @Test(expectedExceptions = CatalogException.class)
  96     public void testNoMatch() {
  97         checkNoMatch(createResolver());
  98     }
  99 
 100     private CatalogUriResolver createResolver() {
 101         return catalogUriResolver(CATALOG_URI);
 102     }
 103 }