Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_malformedUrl (0.08 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java

                fail("Should throw CrawlingAccessException");
            } catch (CrawlingAccessException e) {
                // Expected
            }
        }
    
        public void test_malformedUrl() throws Exception {
            ResponseData responseData = smbClient.doGet("not-a-valid-smb1-url");
            assertEquals(0, responseData.getStatus());
            assertEquals(404, responseData.getHttpStatusCode());
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Tue Sep 23 06:42:59 UTC 2025
    - 30K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java

                fail("Should throw CrawlingAccessException");
            } catch (CrawlingAccessException e) {
                // Expected
            }
        }
    
        public void test_malformedUrl() throws Exception {
            ResponseData responseData = smbClient.doGet("not-a-valid-smb-url");
            assertEquals(0, responseData.getStatus());
            assertEquals(404, responseData.getHttpStatusCode());
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Tue Sep 23 06:42:59 UTC 2025
    - 31.9K bytes
    - Viewed (0)
Back to top