- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 15 for SearchBody (0.05 seconds)
-
src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.java
logger.info("[BEGIN] testSearchByErrorCount"); final Map<String, Object> searchBody = new HashMap<>(); searchBody.put("error_count_min", 1); searchBody.put("error_count_max", 100); searchBody.put("size", 100); String response = checkMethodBase(searchBody).get(API_PATH + "/logs").asString();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/StatsTests.java
final Map<String, Object> searchBody = new HashMap<>(); String response1 = checkGetMethod(searchBody, "").asString(); Integer status1 = JsonPath.from(response1).get("response.status"); assertEquals(Integer.valueOf(0), status1, "First call should return status 0"); String response2 = checkGetMethod(searchBody, "").asString();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java
} @AfterAll protected static void tearDownAll() { // Clean up test documents final Map<String, Object> searchBody = new HashMap<>(); searchBody.put("size", 1000); searchBody.put("q", NAME_PREFIX + "*"); String response = checkMethodBase(searchBody).get(SEARCHLIST_API_PATH + "/docs").asString(); List<Map<String, Object>> docs = JsonPath.from(response).getList("response.docs");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/CrudTestBase.java
final Map<String, Object> searchBody = createSearchBody(SEARCH_ALL_NUM); int count = 0; List<String> idList = getIdList(searchBody); while (idList.size() > 0 && count < NUM) { final String id = idList.get(0); checkDeleteMethod(getItemEndpointSuffix() + "/" + id.toString()); refresh(); idList = getIdList(searchBody); count += 1; } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:29:45 GMT 2025 - 9.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/LogTests.java
fail(); // Unreachable return null; } @Override protected void testRead() { final Map<String, Object> searchBody = new HashMap<>(); final String response = checkMethodBase(searchBody).get(API_PATH + "/" + LIST_ENDPOINT_SUFFIX).asString(); assertEquals(Integer.valueOf(0), JsonPath.from(response).get("response.status")); } @Override @AfterEach
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 2.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/JobLogTests.java
private void testSearchByJobName() { logger.info("[BEGIN] testSearchByJobName"); final Map<String, Object> searchBody = new HashMap<>(); searchBody.put("job_name", NAME_PREFIX); searchBody.put("size", 100); String response = checkMethodBase(searchBody).get(API_PATH + "/logs").asString(); List<Map<String, Object>> logs = JsonPath.from(response).getList("response.logs");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:29:45 GMT 2025 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
} protected static String getJsonResponse(final String path) { final Map<String, Object> searchBody = new HashMap<>(); final String response = checkMethodBase(searchBody).get(path).asString(); return response; } protected static String buildWebConfigJobScript(final String webCofigId) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
assertTrue(logs.size() >= 1); // Test with pagination searchBody.put("size", 10); searchBody.put("page", 1); response = checkMethodBase(searchBody).get("/api/admin/crawlinginfo/logs").asString(); assertEquals(0, JsonPath.from(response).getInt("response.status")); // Test with session ID filter if (!logList.isEmpty()) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Mar 30 14:01:34 GMT 2026 - 13.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/BackupTests.java
fail(); // Unreachable return null; } @Override protected void testRead() { final Map<String, Object> searchBody = new HashMap<>(); final String response = checkMethodBase(searchBody).get(API_PATH + "/" + LIST_ENDPOINT_SUFFIX).asString(); assertEquals(Integer.valueOf(0), JsonPath.from(response).get("response.status")); } @Override @AfterEach
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 2.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/dict/DictTests.java
fail(); // Unreachable return null; } @Override protected void testRead() { final Map<String, Object> searchBody = new HashMap<>(); String response = checkGetMethod(searchBody, "").asString(); final int total = JsonPath.from(response).getInt("response.total"); final List<Map<String, String>> dicts = JsonPath.from(response).getList("response.settings");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 2.7K bytes - Click Count (0)