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

olli pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-integration-tests.git


The following commit(s) were added to refs/heads/master by this push:
     new c9c0896  SLING-3027 Improve Launchpad Karaf Features
c9c0896 is described below

commit c9c0896de3eee94b4539d744959204936f3f231b
Author: Oliver Lietz <[email protected]>
AuthorDate: Wed Feb 7 22:26:53 2018 +0100

    SLING-3027 Improve Launchpad Karaf Features
    
    replace Tika (Uber) Bundle by Tika Parsers and PDFBox bundles, see 
SLING-7125
---
 .../apache/sling/karaf/tests/bootstrap/TikaIT.java | 25 ++++++++++++++++++++--
 1 file changed, 23 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/sling/karaf/tests/bootstrap/TikaIT.java 
b/src/test/java/org/apache/sling/karaf/tests/bootstrap/TikaIT.java
index 8b6298f..8aaa2eb 100644
--- a/src/test/java/org/apache/sling/karaf/tests/bootstrap/TikaIT.java
+++ b/src/test/java/org/apache/sling/karaf/tests/bootstrap/TikaIT.java
@@ -52,8 +52,29 @@ public class TikaIT extends KarafTestSupport {
     }
 
     @Test
-    public void testOrgApacheTikaBundle() {
-        final Bundle bundle = findBundle("org.apache.tika.bundle");
+    public void testOrgApacheTikaParsers() {
+        final Bundle bundle = findBundle("org.apache.tika.parsers");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+    @Test
+    public void testOrgApachePdfbox() {
+        final Bundle bundle = findBundle("org.apache.pdfbox");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+    @Test
+    public void testOrgApachePdfboxFontbox() {
+        final Bundle bundle = findBundle("org.apache.pdfbox.fontbox");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+    @Test
+    public void testOrgApachePdfboxJempbox() {
+        final Bundle bundle = findBundle("org.apache.pdfbox.jempbox");
         assertNotNull(bundle);
         assertEquals(Bundle.ACTIVE, bundle.getState());
     }

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to