Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_execute_withCustomSessionId (0.52 sec)

  1. src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java

            // The execute method catches the exception and returns the session ID
        }
    
        // Test execute with custom session ID
        public void test_execute_withCustomSessionId() {
            thumbnailJob.sessionId = "custom-session-456";
            thumbnailJob.cleanup();
    
            testProcessHelper.exitValue = 0;
    
            String result = thumbnailJob.execute();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/PythonJobTest.java

            // and causes an exception which is caught and added to result
            assertTrue(result.contains("Session Id:"));
        }
    
        // Test execute with custom session ID
        public void test_execute_withCustomSessionId() {
            pythonJob.filename("test.py");
            pythonJob.sessionId = "custom-session-123";
    
            testProcessHelper.exitValue = 0;
    
            String result = pythonJob.execute();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
Back to top