< prev index next >

test/javax/xml/jaxp/functional/catalog/SystemFamilyTest.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.catalogResolver;
  27 import static catalog.ResolutionChecker.checkNoMatch;
  28 import static catalog.ResolutionChecker.checkSysIdResolution;
  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 system, rewriteSystem, systemSuffix and
  40  *          delegateSystem entries. It tests the resolution priorities among
  41  *          the system family entries. The test rule is based on OASIS
  42  *          Standard V1.1 section 7.1.2. "Resolution of External Identifiers".
  43  * @compile ../../libs/catalog/CatalogTestUtils.java
  44  * @compile ../../libs/catalog/ResolutionChecker.java
  45  */

  46 public class SystemFamilyTest {
  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.
  58                 { "http://remote/dtd/alice/docAlice.dtd",
  59                         "http://local/base/dtd/docAliceSys.dtd" },
  60 
  61                 // The matched URI of the specified system id is defined in a
  62                 // rewriteSystem entry.
  63                 { "http://remote/dtd/bob/docBob.dtd",
  64                         "http://local/base/dtd/rs/docBob.dtd" },
  65 
   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.checkNoMatch;
  28 import static catalog.ResolutionChecker.checkSysIdResolution;
  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  * @summary Get matched URIs from system, rewriteSystem, systemSuffix and
  41  *          delegateSystem entries. It tests the resolution priorities among
  42  *          the system family entries. The test rule is based on OASIS
  43  *          Standard V1.1 section 7.1.2. "Resolution of External Identifiers".
  44  * @compile ../../libs/catalog/CatalogTestUtils.java
  45  * @compile ../../libs/catalog/ResolutionChecker.java
  46  */
  47 @Listeners({jaxp.library.FilePolicy.class})
  48 public class SystemFamilyTest {
  49 
  50     @Test(dataProvider = "systemId-matchedUri")
  51     public void testMatch(String systemId, String matchedUri) {
  52         checkSysIdResolution(createResolver(), systemId, matchedUri);
  53     }
  54 
  55     @DataProvider(name = "systemId-matchedUri")
  56     public Object[][] dataOnMatch() {
  57         return new Object[][] {
  58                 // The matched URI of the specified system id is defined in a
  59                 // system entry.
  60                 { "http://remote/dtd/alice/docAlice.dtd",
  61                         "http://local/base/dtd/docAliceSys.dtd" },
  62 
  63                 // The matched URI of the specified system id is defined in a
  64                 // rewriteSystem entry.
  65                 { "http://remote/dtd/bob/docBob.dtd",
  66                         "http://local/base/dtd/rs/docBob.dtd" },
  67 
< prev index next >