Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GOOGLEBOT (0.13 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/RobotsTxtTest.java

            // Test GoogleBot
            assertFalse(robotsTxt.allows("/admin/secret.html", "GoogleBot"));
            assertTrue(robotsTxt.allows("/admin/public/info.html", "GoogleBot"));
            assertTrue(robotsTxt.allows("/public/", "GoogleBot"));
            assertEquals(0, robotsTxt.getCrawlDelay("GoogleBot"));
    
            // Test BingBot
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

                assertTrue(robotsTxt.allows("/foo/bar/index.html", userAgent));
                assertEquals(1314000, robotsTxt.getCrawlDelay(userAgent));
            }
    
            for (String userAgent : new String[] { "GOOGLEBOT", "GoogleBot", "googlebot" }) {
                assertTrue(robotsTxt.allows("/aaa", userAgent));
                assertTrue(robotsTxt.allows("/private/", userAgent));
                assertTrue(robotsTxt.allows("/private/index.html", userAgent));
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top