Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for anyString (0.5 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerThreadTest.java

        public void test_run_noUrlsInQueue() throws Exception {
            when(urlQueueService.poll(anyString())).thenReturn(null);
            crawlerContext.setStatus(CrawlerStatus.RUNNING);
            crawlerContext.maxThreadCheckCount = 1; // Will exit after 1 check
    
            crawlerThread.run();
    
            verify(urlQueueService, times(1)).poll(anyString());
        }
    
        /**
         * Test run method with crawler status DONE.
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImplTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.service.impl;
    
    import static org.mockito.ArgumentMatchers.anyString;
    import static org.mockito.ArgumentMatchers.eq;
    import static org.mockito.Mockito.verify;
    import static org.mockito.Mockito.when;
    
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.LinkedList;
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            }
    
            // Should not throw exception for file with only comments
            assertNotNull(robotsTxt);
            // Everything should be allowed by default
            assertTrue(robotsTxt.allows("/anything", "AnyBot"));
        }
    
        public void testParse_onlyWhitespace() {
            RobotsTxt robotsTxt;
            final InputStream in = RobotsTxtHelperTest.class.getResourceAsStream("robots_only_whitespace.txt");
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java

                    }
                }
    
                // If pattern doesn't end with $, it implicitly matches anything after it
                if (pattern.isEmpty() || pattern.charAt(pattern.length() - 1) != '$') {
                    // This makes "/fish" match "/fish", "/fishing", "/fish/", etc.
                    // No need to add anything - the pattern naturally continues
                }
    
                return Pattern.compile(regex.toString());
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/RobotsTxtTest.java

        }
    
        public void test_directiveAllowsDefaultAllow() {
            // Test that paths are allowed by default
            Directive directive = new Directive("MyBot");
    
            assertTrue(directive.allows("/anything"));
            assertTrue(directive.allows("/public/"));
            assertTrue(directive.allows("/admin/"));
        }
    
        public void test_directiveAllowsPrecedence() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 14.4K bytes
    - Viewed (0)
Back to top