Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for destData (0.98 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/FilenameExtractorEnhancedTest.java

         * Test that input stream content is not read (only validated).
         */
        public void test_getText_doesNotReadInputStream() throws Exception {
            final byte[] testData = "This data should not be read".getBytes();
            final InputStream in = new ByteArrayInputStream(testData);
            final Map<String, String> params = new HashMap<>();
            params.put(ExtractData.RESOURCE_NAME_KEY, "filename.txt");
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractorTest.java

         */
        public void test_validateInputStream_doesNotConsumeStream() throws Exception {
            final byte[] testData = "test data for validation".getBytes();
            final ByteArrayInputStream in = new ByteArrayInputStream(testData);
            final int availableBefore = in.available();
    
            extractor.testValidateInputStream(in);
    
            final int availableAfter = in.available();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. README.md

    You should see a JSON response when Fess is ready.
    
    #### 3. Clone Test Data
    
    Required for SearchApiTests:
    
        $ git clone https://github.com/codelibs/fess-testdata.git /tmp/fess-testdata
    
    #### 4. Run Integration Tests
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    
    To run a single test case:
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 00:28:33 UTC 2025
    - 7.8K bytes
    - Viewed (2)
Back to top