Stian Soiland-Reyes created CXF-4919:
----------------------------------------
Summary: HttpUtils.relativize broken
Key: CXF-4919
URL: https://issues.apache.org/jira/browse/CXF-4919
Project: CXF
Issue Type: Bug
Components: JAX-RS
Affects Versions: 2.7.3
Reporter: Stian Soiland-Reyes
None of these tests pass:
{code}
@Test
public void testRelativize() throws Exception {
URI ab = URI.create("http://example.com/a/b/");
URI abcd = URI.create("http://example.com/a/b/c/d");
assertEquals("b/", HttpUtils.relativize(ab, ab));
assertEquals(URI.create("c/d"), HttpUtils.relativize(ab, abcd));
assertEquals(URI.create("../"), HttpUtils.relativize(abcd, ab));
assertEquals("", HttpUtils.relativize(abcd, abcd));
URI abcd2 = URI.create("http://example.com/a/b/c/d2");
assertEquals(URI.create("d2"), HttpUtils.relativize(abcd, abcd2));
URI ab2cd = URI.create("http://example.com/a/b2/c/d");
assertEquals(URI.create("../../b2/c/d"), HttpUtils.relativize(abcd,
ab2cd));
}
{code}
This affects LinkBuilder.buildRelativize() and UriInfo.relativize()
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira