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.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.Test;
  35 
  36 /*
  37  * @test
  38  * @bug 8077931
  39  * @summary Get matched URIs from rewriteURI entries.
  40  * @compile ../../libs/catalog/CatalogTestUtils.java
  41  * @compile ../../libs/catalog/ResolutionChecker.java
  42  */
  43 public class UriSuffixTest {
  44 
  45     @Test(dataProvider = "uri-matchedUri")
  46     public void testMatch(String uri, String matchedUri) {
  47         checkUriResolution(createResolver(), uri, matchedUri);
  48     }
  49 
  50     @DataProvider(name = "uri-matchedUri")
  51     public Object[][] dataOnMatch() {
  52         return new Object[][] {
  53                 // The matched URI of the specified URI reference is defined in
  54                 // a uriSuffix entry. The match is an absolute path.
  55                 { "http://remote/dtd/alice/docAlice.dtd",
  56                         "http://local/dtd/docAliceUS.dtd" },
  57 
  58                 // The matched URI of the specified URI reference is defined in
  59                 // a uriSuffix entry. The match isn't an absolute path.
  60                 { "http://remote/dtd/bob/docBob.dtd",
  61                         "http://local/base/dtd/docBobUS.dtd" },
  62 
  63                 // The matched URI of the specified URI reference is defined in
  64                 // a uriSuffix entry. The match isn't an absolute path, and the
  65                 // uriSuffix entry defines alternative base. So the returned
  66                 // URI should include the alternative base.
  67                 { "http://remote/dtd/carl/cdocCarl.dtd",
  68                         "http://local/carlBase/dtd/docCarlUS.dtd" },
  69 
  70                 // The catalog file defines two uriSuffix entries, and both of
  71                 // them match the specified URI reference. But the first matched
  72                 // URI should be returned.
  73                 { "http://remote/dtd/david/docDavid.dtd",
  74                         "http://local/base/dtd/docDavidUS1.dtd" },
  75 
  76                 // The catalog file defines two uriSuffix entries, and both
  77                 // of them match the specified URI reference. But the longest
  78                 // match should be used.
  79                 { "http://remote/dtd/ella/docElla.dtd",
  80                         "http://local/base/dtd/docEllaUS.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 CatalogUriResolver createResolver() {
  92         return catalogUriResolver("uriSuffix.xml");
  93     }
  94 }