Kevin Minder created KNOX-691:
---------------------------------

             Summary: URL Template matching not properly handling encoded URLs
                 Key: KNOX-691
                 URL: https://issues.apache.org/jira/browse/KNOX-691
             Project: Apache Knox
          Issue Type: Bug
          Components: Server
    Affects Versions: 0.9.0
            Reporter: Kevin Minder
             Fix For: 0.9.0


For example as shown below the literal {{test-scheme://test-host:42/%7C}} does 
not match the template {{*://*:*/|}} as it probably should.  The test below can 
be added to 
knox-url-decode/gateway-util-urltemplate/src/test/java/org/apache/hadoop/gateway/util/urltemplate/MatcherTest.java
 to help work on the issue.
{code}
  @Test
  public void testEncodedUrlMatching() throws Exception {
    Template template;
    Template input;
    Matcher<String> matcher;
    Matcher<?>.Match match;

    matcher = new Matcher<String>();

    template = Parser.parseTemplate( "*://*:*/example" );
    matcher.add( template, "test-example" );

    template = Parser.parseTemplate( "*://*:*/|" );
    matcher.add( template, "test-pipe-in-path" );

    template = Parser.parseTemplate( "*://*:*/test-path?{|=*}" );
    matcher.add( template, "test-pipe-in-query-param-name" );

    template = Parser.parseTemplate( "*://*:*/test-path?{test-param-name=*}" );
    matcher.add( template, "test-pipe-in-query-param-value" );

    template = Parser.parseTemplate( "*://*:*/path#|" );
    matcher.add( template, "test-pipe-in-fragment" );

    input = Parser.parseLiteral( "test-scheme://test-host:42/example" );
    match = matcher.match( input );
    assertThat( match, notNullValue() );
    assertThat( (String)match.getValue(), is( "test-example" ) );

    input = Parser.parseLiteral( "test-scheme://test-host:42/%7C" );
    match = matcher.match( input );
    assertThat( match, notNullValue() );
    assertThat( (String)match.getValue(), is( "test-pipe-in-path" ) );

    input = Parser.parseLiteral( 
"test-scheme://test-host:42/test-path?%7C=test-param-value" );
    match = matcher.match( input );
    assertThat( match, notNullValue() );
    assertThat( (String)match.getValue(), is( "test-pipe-in-query-param-name" ) 
);

    input = Parser.parseLiteral( 
"test-scheme://test-host:42/test-path?test-param-name=%7C" );
    match = matcher.match( input );
    assertThat( match, notNullValue() );
    assertThat( (String)match.getValue(), is( "test-pipe-in-query-param-value" 
) );

    input = Parser.parseLiteral( "test-scheme://test-host:42/test-path#%7C" );
    match = matcher.match( input );
    assertThat( match, notNullValue() );
    assertThat( (String)match.getValue(), is( "test-pipe-in-fragment" ) );
  }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to