< prev index next >

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

Print this page




   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.catalogUriResolver;
  27 import static catalog.ResolutionChecker.checkNoMatch;
  28 import static catalog.ResolutionChecker.checkUriResolution;
  29 

  30 import javax.xml.catalog.CatalogException;
  31 import javax.xml.catalog.CatalogUriResolver;
  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.RewriteUriTest
  42  * @run testng/othervm catalog.RewriteUriTest
  43  * @summary Get matched URIs from rewriteURI entries.
  44  */
  45 @Listeners({jaxp.library.FilePolicy.class})
  46 public class RewriteUriTest {
  47 
  48     @Test(dataProvider = "uri-matchedUri")
  49     public void testMatch(String uri, String matchedUri) {
  50         checkUriResolution(createResolver(), uri, matchedUri);
  51     }


  71                         "http://local/carlBase/dtd/carl/ru/docCarl.dtd" },
  72 
  73                 // The catalog file defines two rewriteURI entries, and both of
  74                 // them match the specified URI reference. But the first matched
  75                 // URI should be returned.
  76                 { "http://remote/dtd/david/docDavid.dtd",
  77                         "http://local/base/dtd/david1/ru/docDavid.dtd" },
  78 
  79                 // The catalog file defines two rewriteURI entries, and both
  80                 // of them match the specified URI reference. But the longest
  81                 // match should be used.
  82                 { "http://remote/dtd/ella/docElla.dtd",
  83                         "http://local/base/dtd/ella/ru/docElla.dtd" } };
  84     }
  85 
  86     /*
  87      * If no match is found, a CatalogException should be thrown.
  88      */
  89     @Test(expectedExceptions = CatalogException.class)
  90     public void testNoMatch() {
  91         checkNoMatch(createResolver());
  92     }
  93 
  94     private CatalogUriResolver createResolver() {
  95         return catalogUriResolver("rewriteUri.xml");
  96     }
  97 }
  98 


   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.catalogUriResolver;
  27 import static catalog.ResolutionChecker.checkNoUriMatch;
  28 import static catalog.ResolutionChecker.checkUriResolution;
  29 
  30 import javax.xml.catalog.CatalogResolver;
  31 import javax.xml.catalog.CatalogException;

  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.RewriteUriTest
  42  * @run testng/othervm catalog.RewriteUriTest
  43  * @summary Get matched URIs from rewriteURI entries.
  44  */
  45 @Listeners({jaxp.library.FilePolicy.class})
  46 public class RewriteUriTest {
  47 
  48     @Test(dataProvider = "uri-matchedUri")
  49     public void testMatch(String uri, String matchedUri) {
  50         checkUriResolution(createResolver(), uri, matchedUri);
  51     }


  71                         "http://local/carlBase/dtd/carl/ru/docCarl.dtd" },
  72 
  73                 // The catalog file defines two rewriteURI entries, and both of
  74                 // them match the specified URI reference. But the first matched
  75                 // URI should be returned.
  76                 { "http://remote/dtd/david/docDavid.dtd",
  77                         "http://local/base/dtd/david1/ru/docDavid.dtd" },
  78 
  79                 // The catalog file defines two rewriteURI entries, and both
  80                 // of them match the specified URI reference. But the longest
  81                 // match should be used.
  82                 { "http://remote/dtd/ella/docElla.dtd",
  83                         "http://local/base/dtd/ella/ru/docElla.dtd" } };
  84     }
  85 
  86     /*
  87      * If no match is found, a CatalogException should be thrown.
  88      */
  89     @Test(expectedExceptions = CatalogException.class)
  90     public void testNoMatch() {
  91         checkNoUriMatch(createResolver());
  92     }
  93 
  94     private CatalogResolver createResolver() {
  95         return catalogUriResolver("rewriteUri.xml");
  96     }
  97 }

< prev index next >