Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_convertCrawlingPath_gcs_not_converted (0.13 seconds)

  1. src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java

            // Verify it's not being converted to file: protocol
            assertFalse(wizardAction.convertCrawlingPath(s3Path).startsWith("file:"));
        }
    
        @Test
        public void test_convertCrawlingPath_gcs_not_converted() {
            // GCS paths should be returned as-is, not converted
            String gcsPath = "gcs://my-bucket/path/to/object";
            assertEquals(gcsPath, wizardAction.convertCrawlingPath(gcsPath));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.9K bytes
    - Click Count (0)
Back to Top