PathMap map = new PathMap();
map.put( "/webhdfs", "/webhdfs" );
map.put( "/webhdfs/dfshealth.jsp", "/webhdfs/dfshealth.jsp" );
map.put( "/webhdfs/*", "/webhdfs/*" );
assertThat( (String)map.match( "/webhdfs" ), equalTo( "/webhdfs" ) );
assertThat( (String)map.match( "/webhdfs/dfshealth.jsp" ), equalTo( "/webhdfs/dfshealth.jsp" ) );
assertThat( (String)map.match( "/webhdfs/v1" ), equalTo( "/webhdfs/*" ) );
}
}