Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_execute_processFailure (0.11 sec)

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

            assertTrue(result.contains("Session Id: custom-session-456"));
            assertEquals("custom-session-456", thumbnailJob.sessionId);
        }
    
        // Test execute with process failure
        public void test_execute_processFailure() {
            thumbnailJob.numOfThreads(1);
    
            testProcessHelper.exitValue = 1;
            testProcessHelper.processOutput = "Error: Thumbnail generation failed";
    
    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

            assertTrue(result.contains("Session Id: custom-session-123"));
            assertEquals("custom-session-123", pythonJob.sessionId);
        }
    
        // Test execute with process failure
        public void test_execute_processFailure() {
            pythonJob.filename("failing.py");
    
            testProcessHelper.exitValue = 1;
            testProcessHelper.processOutput = "Error: Script failed";
    
            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