Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 148 for initAll (0.04 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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 documents
    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)
  6. src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.java

        private static final String NAME_PREFIX = "failureUrlTest_";
        private static final String API_PATH = "/api/admin/failureurl";
    
        private static String webConfigId;
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
    
            // Create and execute a web crawler to generate failure URL logs
            createWebConfig();
            logger.info("WebConfig is created");
    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)
  7. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

        private static final String NAME_PREFIX = "crawlingInfoTest_";
    
        private static String webConfigId;
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
    
            // create and execute a web crawler
            createWebConfig();
            logger.info("WebConfig is created");
            refresh();
    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)
  8. 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)
  9. 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)
  10. 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)
Back to Top