Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for test_execute_withCustomSessionId (0.36 seconds)

  1. 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
        @Test
        public void test_execute_withCustomSessionId() {
            pythonJob.filename("test.py");
            pythonJob.sessionId = "custom-session-123";
    
            testProcessHelper.exitValue = 0;
    
            String result = pythonJob.execute();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  2. 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
        @Test
        public void test_execute_withCustomSessionId() {
            thumbnailJob.sessionId = "custom-session-456";
            thumbnailJob.cleanup();
    
            testProcessHelper.exitValue = 0;
    
            String result = thumbnailJob.execute();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 19K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

    Shinsuke Sugaya <******@****.***> 1773442886 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

    Shinsuke Sugaya <******@****.***> 1773565718 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
Back to Top