- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for testAaa (0.23 sec)
-
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) -
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) -
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)