testUri = testUri.substring(index + 1);
}
if (!testUri.startsWith(curpath.getCtxpath())) {
return "@wrong uri:" + testUri;
}
MappingNode tree = inv.getRose().getMappingTree();
RequestPath testPath = new RequestPath(//
testMethod, testUri, curpath.getCtxpath(), curpath.getDispatcher());
//
ArrayList<MatchResult> matchResults = tree.match(testPath);
if (matchResults == null) {
// not rose uri
return ("@404: <br>not rose uri: '" + testUri + "'");
}