You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ji...@apache.org on 2023/10/05 14:00:05 UTC

[camel-quarkus] 10/45: Disabled tika tests using pdfbox (see #5234)

This is an automated email from the ASF dual-hosted git repository.

jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 836b0059e7263f455c481917a7d86321d388ba3d
Author: JiriOndrusek <on...@gmail.com>
AuthorDate: Wed Aug 30 10:39:39 2023 +0200

    Disabled tika tests using pdfbox (see #5234)
---
 .../test/java/org/apache/camel/quarkus/component/tika/it/TikaTest.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/integration-tests/tika/src/test/java/org/apache/camel/quarkus/component/tika/it/TikaTest.java b/integration-tests/tika/src/test/java/org/apache/camel/quarkus/component/tika/it/TikaTest.java
index 64b983641a..45fc59d695 100644
--- a/integration-tests/tika/src/test/java/org/apache/camel/quarkus/component/tika/it/TikaTest.java
+++ b/integration-tests/tika/src/test/java/org/apache/camel/quarkus/component/tika/it/TikaTest.java
@@ -23,6 +23,7 @@ import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.http.ContentType;
 import io.restassured.response.ValidatableResponse;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.Matchers.containsStringIgnoringCase;
@@ -33,11 +34,13 @@ import static org.hamcrest.Matchers.startsWith;
 @QuarkusTest
 class TikaTest {
 
+    @Disabled //https://github.com/apache/camel-quarkus/issues/5234
     @Test
     public void testPdf() throws Exception {
         testParse("quarkus.pdf", "application/pdf", "Hello Quarkus");
     }
 
+    @Disabled //https://github.com/apache/camel-quarkus/issues/5234
     @Test
     public void testOdf() throws Exception {
         testParse("testOpenOffice2.odt", "application/vnd.oasis.opendocument.text",