- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 126 for initAll (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/it/search/HealthApiTests.java
import io.restassured.RestAssured; /** * Integration tests for the Health API (/api/v1/health) */ @Tag("it") public class HealthApiTests extends ITBase { @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); } @AfterAll protected static void tearDownAll() { deleteTestToken(); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 2.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/PopularWordsApiTests.java
/** * Integration tests for the Popular Words API (/api/v1/popular-words) */ @Tag("it") public class PopularWordsApiTests extends ITBase { @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); } @AfterAll protected static void tearDownAll() { deleteTestToken(); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 3.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/SuggestWordsApiTests.java
/** * Integration tests for the Suggest Words API (/api/v1/suggest-words) */ @Tag("it") public class SuggestWordsApiTests extends ITBase { @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); } @AfterAll protected static void tearDownAll() { deleteTestToken(); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/LabelsApiTests.java
private static final String TEST_LABEL_VALUE = "labelsApiTest_value"; private static String testLabelId; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); } @AfterAll protected static void tearDownAll() { if (testLabelId != null) { deleteLabel(testLabelId);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 4.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java
private static final String SEARCHLIST_API_PATH = "/api/admin/searchlist"; private static final String KEY_PROPERTY = "title"; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); } @AfterAll protected static void tearDownAll() { // Clean up test documentsCreated: 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/search/FavoritesApiTests.java
private static final String CRAWL_LABEL = NAME_PREFIX + "_label"; private static String fileConfigId; private static String crawlLabelId; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); // Create and execute a file crawler crawlLabelId = createCrawlLabel(); createFileConfig();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/CrudTestBase.java
// ================ // Constant // ================ protected String getIdKey() { return "id"; } @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); } @BeforeEach protected void init() { } @AfterEach protected void tearDown() {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/search/ScrollSearchApiTests.java
private static final String CRAWL_LABEL = NAME_PREFIX + "_label"; private static String fileConfigId; private static String crawlLabelId; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); // Create and execute a file crawler crawlLabelId = createCrawlLabel(); createFileConfig();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 7.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/JobLogTests.java
private static final String NAME_PREFIX = "jobLogTest_"; private static final String API_PATH = "/api/admin/joblog"; private static String webConfigId; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); // Create and execute a web crawler to generate job logs createWebConfig(); logger.info("WebConfig is created");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/search/SearchApiTests.java
private static final String TEST_LABEL = "tools"; private static String fileConfigId; private static String labelId; private static String crawlLabelId; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); // create and execute a file crawler labelId = createLabel(); crawlLabelId = createCrawlLabel();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:29:45 GMT 2025 - 19K bytes - Click Count (0)