Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 353 for stesti (0.03 seconds)

  1. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            return msg;
        }
    
        // ========== escapeQueryValue tests ==========
    
        @Test
        public void test_escapeQueryValue_null() {
            assertEquals("", chatClient.testEscapeQueryValue(null));
        }
    
        @Test
        public void test_escapeQueryValue_empty() {
            assertEquals("", chatClient.testEscapeQueryValue(""));
        }
    
        @Test
        public void test_escapeQueryValue_noSpecialChars() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

        }
    
        // Test process with available generator
        @Test
        public void test_process_availableGenerator() throws IOException {
            // Skip this test as it requires container components
            // The process method needs actual ThumbnailQueueBhv and other components
            assertTrue(true);
        }
    
        // Test process with unavailable generator
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/entity/PingResponseTest.java

            super.tearDown(testInfo);
        }
    
        @Test
        public void test_getStatus_returnsCorrectValue() {
            // Since we cannot easily create a real ClusterHealthResponse without a running cluster,
            // we'll test the class behavior through unit tests that verify the logic
            // The actual integration with ClusterHealthResponse is tested in integration tests
    
            // Test that the constructor and getters work with proper setup
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformerTest.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.TestInfo;
    
    /**
     * Unit tests for {@link AbstractFessFileTransformer}.
     * Tests file transformation logic including content extraction and metadata handling.
     */
    public class AbstractFessFileTransformerTest extends UnitFessTestCase {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java

        }
    
        // ========== Security Tests ==========
    
        /**
         * Security test: Verify that unregistered classes are rejected during serialization.
         * This test ensures that the Kryo registration requirement is working correctly.
         * Unregistered classes should throw an exception to prevent potential RCE attacks.
         */
        @Test
        public void test_security_unregisteredClassRejected() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.6K bytes
    - Click Count (0)
  6. .teamcity/src/main/kotlin/projects/SmokeTestProject.kt

            name = "Smoke Test"
            description = "Smoke tests against third-party plugins, Gradle build, and IDE sync"
        }) {
        init {
            smokeBuildTypes.forEach(this::buildType)
        }
    
        companion object {
            /**
             * Specific builds shown under the "Smoke Test" subproject in Pull Request Feedback.
             */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/app/web/api/ApiResultTest.java

        //                                                                        ============
    
        @Test
        public void test_Status_OK() {
            assertEquals(0, Status.OK.getId());
        }
    
        @Test
        public void test_Status_BAD_REQUEST() {
            assertEquals(1, Status.BAD_REQUEST.getId());
        }
    
        @Test
        public void test_Status_SYSTEM_ERROR() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  8. .teamcity/pom.xml

                            </goals>
                        </execution>
                        <execution>
                            <id>test-compile</id>
                            <phase>process-test-sources</phase>
                            <goals>
                                <goal>test-compile</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 22:03:46 GMT 2026
    - 7.4K bytes
    - Click Count (2)
  9. src/test/java/org/codelibs/fess/app/service/CrawlingInfoServiceTest.java

            pager.sessionId = "test-session-123";
            assertEquals("test-session-123", pager.sessionId);
        }
    
        @Test
        public void test_crawlingInfoPager_setId() {
            final CrawlingInfoPager pager = new CrawlingInfoPager();
            pager.id = "crawling-id-456";
            assertEquals("crawling-id-456", pager.id);
        }
    
        @Test
        public void test_crawlingInfoPager_pageSize() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  10. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                                cleanDestination = true
                                val perfResultArtifactRule =
                                    "results/performance/build/test-results-*.zip!performance-tests/perf-results*.json => " +
                                        "$performanceResultsDir/${performanceTest.bucketIndex}/"
                                artifactRules =
                                    if (index == 0) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Jan 07 10:42:35 GMT 2026
    - 5.8K bytes
    - Click Count (0)
Back to Top