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