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
24package catalog;
25
26import static catalog.CatalogTestUtils.CATALOG_URI;
27import static catalog.CatalogTestUtils.RESOLVE_CONTINUE;
28import static catalog.CatalogTestUtils.catalogUriResolver;
29import static catalog.ResolutionChecker.checkNoUriMatch;
30import static catalog.ResolutionChecker.checkUriResolution;
31
32import javax.xml.catalog.CatalogResolver;
33import javax.xml.catalog.CatalogException;
34import javax.xml.catalog.CatalogFeatures;
35
36import org.testng.annotations.DataProvider;
37import org.testng.annotations.Listeners;
38import org.testng.annotations.Test;
39
40/*
41 * @test
42 * @bug 8077931
43 * @library /javax/xml/jaxp/libs
44 * @run testng/othervm -DrunSecMngr=true catalog.UriTest
45 * @run testng/othervm catalog.UriTest
46 * @summary Get matched URIs from uri entries.
47 */
48@Listeners({jaxp.library.FilePolicy.class})
49public class UriTest {
50
51    @Test(dataProvider = "uri-matchedUri")
52    public void testMatch(String uri, String matchedUri) {
53        checkUriResolution(createResolver(), uri, matchedUri);
54    }
55
56    @DataProvider(name = "uri-matchedUri")
57    public Object[][] dataOnMatch() {
58        return new Object[][] {
59                // The matched URI of the specified URI reference is defined in
60                // a uri entry. The match is an absolute path.
61                { "http://remote/dtd/uri/alice/docAlice.dtd",
62                        "http://local/dtd/docAliceURI.dtd" },
63
64                // The matched URI of the specified URI reference is defined in
65                // a uri entry. But the match isn't an absolute path, so the
66                // returned URI should include the base, which is defined by the
67                // catalog file, as the prefix.
68                { "http://remote/dtd/bob/docBob.dtd",
69                        "http://local/base/dtd/docBobURI.dtd" },
70
71                // The catalog file defines two uri entries, and both of them
72                // match the specified URI reference. But the first matched URI
73                // should be returned.
74                { "http://remote/dtd/david/docDavid.dtd",
75                        "http://local/base/dtd/docDavidURI1.dtd" } };
76    }
77
78    /*
79     * Specify base location via method CatalogResolver.resolve(href, base).
80     */
81    @Test
82    public void testSpecifyBaseByAPI() {
83        checkUriResolution(createResolver(),
84                "http://remote/dtd/carl/docCarl.dtd",
85                "http://local/carlBase/dtd/docCarlURI.dtd");
86
87        CatalogResolver continueResolver = catalogUriResolver(
88                CatalogFeatures.builder().with(CatalogFeatures.Feature.RESOLVE,
89                        RESOLVE_CONTINUE).build(), CATALOG_URI);
90        checkUriResolution(continueResolver, "docCarl.dtd",
91                "http://local/alternativeBase/dtd/",
92                "http://local/alternativeBase/dtd/docCarl.dtd");
93    }
94
95    /*
96     * If no match is found, a CatalogException should be thrown.
97     */
98    @Test(expectedExceptions = CatalogException.class)
99    public void testNoMatch() {
100        checkNoUriMatch(createResolver());
101    }
102
103    private CatalogResolver createResolver() {
104        return catalogUriResolver(CATALOG_URI);
105    }
106}
107