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.catalogResolver;
  27 import static catalog.ResolutionChecker.checkPubIdResolution;
  28 import static catalog.ResolutionChecker.expectExceptionOnPubId;
  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.Listeners;
  35 import org.testng.annotations.Test;
  36 
  37 /*
  38  * @test
  39  * @bug 8077931
  40  * @library /javax/xml/jaxp/libs
  41  * @run testng/othervm -DrunSecMngr=true catalog.DelegatePublicTest
  42  * @run testng/othervm catalog.DelegatePublicTest
  43  * @summary Get matched URIs from DelegatePublic entries.
  44  */
  45 @Listeners({jaxp.library.FilePolicy.class})
  46 public class DelegatePublicTest {
  47 
  48     @Test(dataProvider = "publicId-matchedUri")
  49     public void testMatch(String publicId, String matchedUri) {
  50         checkPubIdResolution(createResolver(), publicId, matchedUri);
  51     }
  52 
  53     @DataProvider(name = "publicId-matchedUri")
  54     public Object[][] dataOnMatch() {
  55         return new Object[][] {
  56                 // The matched URI of the specified public id is defined in
  57                 // a delegate catalog file of the current catalog file.
  58                 { "-//REMOTE//DTD ALICE DOCALICE XML//EN",
  59                         "http://local/dtd/docAlicePub.dtd" },
  60 
  61                 // The current catalog file defines two delegatePublic entries
  62                 // with the same publicIdStartString, and both of them match the
  63                 // specified public id. But the matched URI should be in the
  64                 // delegate catalog file, which is defined in the upper
  65                 // delegatePublic entry.
  66                 { "-//REMOTE//DTD BOB DOCBOB XML//EN",
  67                         "http://local/base/dtd/bob/docBobPub.dtd" },
  68 
  69                 // The current catalog file defines two delegatePublic entries,
  70                 // and both of them match the specified public id. But the
  71                 // matched URI should be in the delegate catalog file, which is
  72                 // defined in the longest matched delegatePublic entry.
  73                 { "-//REMOTE//DTD CARL DOCCARL XML//EN",
  74                         "http://local/base/dtd/carl/docCarlPub.dtd" } };
  75     }
  76 
  77     @Test(dataProvider = "publicId-expectedExceptionClass")
  78     public void testException(String publicId,
  79             Class<? extends Throwable> expectedExceptionClass) {
  80         expectExceptionOnPubId(createResolver(), publicId,
  81                 expectedExceptionClass);
  82     }
  83 
  84     @DataProvider(name = "publicId-expectedExceptionClass")
  85     public Object[][] dataOnException() {
  86         return new Object[][] {
  87                 // The matched delegatePublic entry of the specified public id
  88                 // defines a non-existing delegate catalog file. That should
  89                 // raise a RuntimeException.
  90                 { "-//REMOTE//DTD DAVID DOCDAVID XML//EN",
  91                         RuntimeException.class },
  92 
  93                 // There's no match of the specified public id in the catalog
  94                 // structure. That should raise a CatalogException.
  95                 { "-//REMOTE//DTD GHOST DOCGHOST XML//EN",
  96                         CatalogException.class } };
  97     }
  98 
  99     private CatalogResolver createResolver() {
 100         return catalogResolver("delegatePublic.xml");
 101     }
 102 }
 103