This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 51f4c49bf369aded727d7b84559ac13e8a67cca1 Author: JiriOndrusek <ondrusek.j...@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",