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.catalogUriResolver;
  27 import static catalog.ResolutionChecker.checkUriResolution;
  28 import static catalog.ResolutionChecker.expectExceptionOnUri;
  29 
  30 import javax.xml.catalog.CatalogException;
  31 import javax.xml.catalog.CatalogUriResolver;
  32 
  33 import org.testng.annotations.DataProvider;
  34 import org.testng.annotations.Listeners;
  35 import org.testng.annotations.Test;
  36 
  37 /*
  38  * @test
  39  * @bug 8077931
  40  * @summary Get matched URIs from delegateURI entries.
  41  * @compile ../../libs/catalog/CatalogTestUtils.java
  42  * @compile ../../libs/catalog/ResolutionChecker.java
  43  */
  44 @Listeners({jaxp.library.FilePolicy.class})
  45 public class DelegateUriTest {
  46 
  47     @Test(dataProvider = "uri-matchedUri")
  48     public void testMatch(String uri, String matchedUri) {
  49         checkUriResolution(createResolver(), uri, matchedUri);
  50     }
  51 
  52     @DataProvider(name = "uri-matchedUri")
  53     private Object[][] data() {
  54         return new Object[][] {
  55                 // The matched URI of the specified URI reference is defined in
  56                 // a delegate catalog file of the current catalog file.
  57                 { "http://remote/dtd/alice/docAlice.dtd",
  58                         "http://local/base/dtd/alice/docAliceDU.dtd" },
  59 
  60                 // The current catalog file defines two delegateURI entries
  61                 // with the same uriStartString, and both of them match the
  62                 // specified URI reference. But the matched URI should be in
  63                 // the delegate catalog file, which is defined in the upper
  64                 // delegateURI entry.
  65                 { "http://remote/dtd/bob/docBob.dtd",
  66                         "http://local/base/dtd/bob/docBobDU.dtd" },
  67 
  68                 // The current catalog file defines two delegateURI entries,
  69                 // and both of them match the specified URI reference. But the
  70                 // matched URI should be in the delegate catalog file, which is
  71                 // defined in the longest matched delegateURI entry.
  72                 { "http://remote/dtd/carl/docCarl.dtd",
  73                         "http://local/base/dtd/carl/docCarlDU.dtd"} };
  74     }
  75 
  76     @Test(dataProvider = "uri-expectedExceptionClass")
  77     public void testException(String uri,
  78             Class<? extends Throwable> expectedExceptionClass) {
  79         expectExceptionOnUri(createResolver(), uri, expectedExceptionClass);
  80     }
  81 
  82     @DataProvider(name = "uri-expectedExceptionClass")
  83     private Object[][] dataOnException() {
  84         return new Object[][] {
  85                 // The matched delegateURI entry of the specified URI reference
  86                 // defines a non-existing delegate catalog file. That should
  87                 // raise a RuntimeException.
  88                 { "http://remote/dtd/david/docDavidDU.dtd",
  89                         RuntimeException.class },
  90 
  91                 // There's no match of the specified URI reference in the
  92                 // catalog structure. That should raise a CatalogException.
  93                 { "http://ghost/xml/dtd/ghost/docGhostDS.dtd",
  94                         CatalogException.class } };
  95     }
  96 
  97     private CatalogUriResolver createResolver() {
  98         return catalogUriResolver("delegateUri.xml");
  99     }
 100 }