< prev index next >

test/javax/xml/jaxp/functional/catalog/SystemTest.java

Print this page


   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_SYSTEM;
  27 import static catalog.CatalogTestUtils.catalogResolver;
  28 import static catalog.ResolutionChecker.checkNoMatch;
  29 import static catalog.ResolutionChecker.checkSysIdResolution;
  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.Test;
  36 
  37 /*
  38  * @test
  39  * @bug 8077931
  40  * @summary Get matched URIs from system entries.
  41  * @compile ../../libs/catalog/CatalogTestUtils.java
  42  * @compile ../../libs/catalog/ResolutionChecker.java
  43  */

  44 public class SystemTest {
  45 
  46     @Test(dataProvider = "systemId-matchedUri")
  47     public void testMatch(String systemId, String matchedUri) {
  48         checkSysIdResolution(createResolver(), systemId, matchedUri);
  49     }
  50 
  51     @DataProvider(name = "systemId-matchedUri")
  52     public Object[][] dataOnMatch() {
  53         return new Object[][] {
  54                 // The matched URI of the specified system id is defined in a
  55                 // system entry. The match is an absolute path.
  56                 { "http://remote/dtd/alice/docAlice.dtd",
  57                         "http://local/dtd/docAliceSys.dtd" },
  58 
  59                 // The matched URI of the specified system id is defined in a
  60                 // public entry. But the match isn't an absolute path, so the
  61                 // returned URI should include the base, which is defined by the
  62                 // catalog file, as the prefix.
  63                 { "http://remote/dtd/bob/docBob.dtd",


   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_SYSTEM;
  27 import static catalog.CatalogTestUtils.catalogResolver;
  28 import static catalog.ResolutionChecker.checkNoMatch;
  29 import static catalog.ResolutionChecker.checkSysIdResolution;
  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  * @summary Get matched URIs from system entries.
  42  * @compile ../../libs/catalog/CatalogTestUtils.java
  43  * @compile ../../libs/catalog/ResolutionChecker.java
  44  */
  45 @Listeners({jaxp.library.FilePolicy.class})
  46 public class SystemTest {
  47 
  48     @Test(dataProvider = "systemId-matchedUri")
  49     public void testMatch(String systemId, String matchedUri) {
  50         checkSysIdResolution(createResolver(), systemId, matchedUri);
  51     }
  52 
  53     @DataProvider(name = "systemId-matchedUri")
  54     public Object[][] dataOnMatch() {
  55         return new Object[][] {
  56                 // The matched URI of the specified system id is defined in a
  57                 // system entry. The match is an absolute path.
  58                 { "http://remote/dtd/alice/docAlice.dtd",
  59                         "http://local/dtd/docAliceSys.dtd" },
  60 
  61                 // The matched URI of the specified system id is defined in a
  62                 // public 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",


< prev index next >