Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getRoutingPath (0.07 sec)

  1. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

            assertEquals("/index.jsp", FessHtmlPath.path_IndexJsp.getRoutingPath());
            assertEquals("/search.jsp", FessHtmlPath.path_SearchJsp.getRoutingPath());
            assertEquals("/error/error.jsp", FessHtmlPath.path_Error_ErrorJsp.getRoutingPath());
            assertEquals("/login/index.jsp", FessHtmlPath.path_Login_IndexJsp.getRoutingPath());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

            HtmlNext result = virtualHostHelper.getVirtualHostPath(page);
            assertEquals("/search", result.getRoutingPath());
    
            // Matching host header
            request.addHeader("Host", "example.com");
            result = virtualHostHelper.getVirtualHostPath(page);
            assertEquals("/site1/search", result.getRoutingPath());
    
            // The header remains for subsequent tests due to static request handling
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top