- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 718 for test5 (0.02 seconds)
-
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
} // Test command string construction edge cases @Test public void test_command_string_edge_cases() throws Exception { // Test with commands containing special characters final List<String> specialCommands = Arrays.asList("echo \"test with quotes\"", "echo 'test with single quotes'", "echo test with spaces", "echo test&with&ersand", "echo test|with|pipe");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
// Test with system property that exists System.setProperty("test.property", "test.value"); execJob.testAddSystemProperty(cmdList, "test.property", "default", null); assertEquals(1, cmdList.size()); assertEquals("-Dtest.property=test.value", cmdList.get(0)); // Test with append value cmdList.clear();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
} @Test public void test_calculateDocumentSize() { assertEquals(0, indexingHelper.calculateDocumentSize(Collections.emptyMap())); assertEquals(118, indexingHelper.calculateDocumentSize(Map.of("id", "test"))); assertEquals(249, indexingHelper.calculateDocumentSize(Map.of("id", "test", "url", "http://test.com/"))); } @Test public void test_setMaxRetryCount() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 29.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
assertNotNull(result); // Result depends on test data configuration } // Helper method to create test data private List<LabelType> createTestLabelTypeList() { List<LabelType> labelTypeList = new ArrayList<>(); LabelType labelType1 = new LabelType(); labelType1.setName("Test Label 1"); labelType1.setValue("test1");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 12.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
value = "${\\$}"; assertEquals(value, ResourceUtil.resolve(value)); System.setProperty("test.dir", "c:\\test1\\test2"); value = "${test.dir}"; assertEquals("c:\\test1\\test2", ResourceUtil.resolve(value)); } @Test public void test_getAppType() { // Test default empty when no env var is set String originalAppType = System.getenv("FESS_APP_TYPE");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 11.8K bytes - Click Count (0) -
src/test/resources/thumbnail/test_generate_thumbnail.sh
chmod +x "${GENERATE_THUMBNAIL}" echo "--- Basic argument tests ---" # Test: No arguments run_test "no arguments" 1 "${GENERATE_THUMBNAIL}" # Test: Empty command type run_test "empty command type" 1 "${GENERATE_THUMBNAIL}" "" "file:/tmp/test" "/tmp/out.png" # Test: Unsupported command type run_test "unsupported command type" 1 "${GENERATE_THUMBNAIL}" "unsupported" "file:/tmp/test" "/tmp/out.png" echo ""Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 04 08:02:36 GMT 2025 - 7.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
// Mixed content array assertEquals(84L, MemoryUtil.sizeOf(new Object[] { "test", 123, null })); // Nested arrays assertEquals(120L, MemoryUtil.sizeOf(new Object[] { new String[] { "test" }, new String[] { "test" } })); } @Test public void test_sizeOf_collectionVariations() { // Empty collectionCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java
// =================================================================================== // fess.var.path Tests // ==================== @Test public void test_validateFilePath_validPathUnderVarPath() throws Exception { final FessAdminAction action = createAction();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 22.7K bytes - Click Count (0) -
.github/workflows/notify-on-rc-for-manual-test.yml
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1773439473 +0000
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 22:04:33 GMT 2026 - 912 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java
} @Test public void test_getName() { assertEquals("groovy", groovyEngine.getName()); } // ===== Null-Safety Tests ===== /** * Test that evaluate returns null for null template */ @Test public void test_evaluate_nullTemplate() { final Map<String, Object> params = new HashMap<>(); params.put("test", "value");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 29.1K bytes - Click Count (0)