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_PUBLIC;
  27 import static catalog.CatalogTestUtils.catalogResolver;
  28 import static catalog.ResolutionChecker.checkNoMatch;
  29 import static catalog.ResolutionChecker.checkPubIdResolution;
  30 
  31 import javax.xml.catalog.CatalogException;
  32 import javax.xml.catalog.CatalogResolver;
  33 
  34 import org.testng.annotations.DataProvider;
  35 import org.testng.annotations.Listeners;
  36 import org.testng.annotations.Test;
  37 
  38 /*
  39  * @test
  40  * @bug 8077931
  41  * @library /javax/xml/jaxp/libs
  42  * @run testng/othervm -DrunSecMngr=true catalog.PublicTest
  43  * @run testng/othervm catalog.PublicTest
  44  * @summary Get matched URIs from public entries.
  45  */
  46 @Listeners({jaxp.library.FilePolicy.class})
  47 public class PublicTest {
  48 
  49     @Test(dataProvider = "publicId-matchedUri")
  50     public void testPublic(String publicId, String matchedUri) {
  51         checkPubIdResolution(createResolver(), publicId, matchedUri);
  52     }
  53 
  54     @DataProvider(name = "publicId-matchedUri")
  55     public Object[][] data() {
  56         return new Object[][] {
  57                 // The matched URI of the specified public id is defined in a
  58                 // public entry. The match is an absolute path.
  59                 { "-//REMOTE//DTD ALICE DOCALICE XML//EN",
  60                         "http://local/dtd/docAlicePub.dtd" },
  61 
  62                 // The matched URI of the specified public id is defined in a
  63                 // public entry. But the match isn't an absolute path, so the
  64                 // returned URI should include the base, which is defined by the
  65                 // catalog file, as the prefix.
  66                 { "-//REMOTE//DTD BOB DOCBOB XML//EN",
  67                         "http://local/base/dtd/docBobPub.dtd" },
  68 
  69                 // The matched URI of the specified public id is defined in a
  70                 // public entry. The match isn't an absolute path, and the
  71                 // public entry defines alternative base. So the returned URI
  72                 // should include the alternative base.
  73                 { "-//REMOTE//DTD CARL DOCCARL XML//EN",
  74                         "http://local/carlBase/dtd/docCarlPub.dtd" },
  75 
  76                 // The catalog file defines two public entries, and both of them
  77                 // match the specified public id. But the first matched URI
  78                 // should be returned.
  79                 { "-//REMOTE//DTD DAVID DOCDAVID XML//EN",
  80                         "http://local/base/dtd/docDavidPub1.dtd" } };
  81     }
  82 
  83     /*
  84      * If no match is found, a CatalogException should be thrown.
  85      */
  86     @Test(expectedExceptions = CatalogException.class)
  87     public void testNoMatch() {
  88         checkNoMatch(createResolver());
  89     }
  90 
  91     private CatalogResolver createResolver() {
  92         return catalogResolver(CATALOG_PUBLIC);
  93     }
  94 }
  95