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 f2b8f63  SLING-7442 Upgrade Karaf Features to Oak 1.8
f2b8f63 is described below

commit f2b8f63972ecec36a2a7a74959ddd63a109e20c9
Author: Oliver Lietz <o...@apache.org>
AuthorDate: Sun Mar 4 22:28:46 2018 +0100

    SLING-7442 Upgrade Karaf Features to Oak 1.8
---
 .../karaf/tests/bootstrap/JackrabbitOakIT.java     | 65 ++++++++++++++++++++--
 .../tests/bootstrap/SlingQuickstartOakMongoIT.java |  7 +++
 2 files changed, 68 insertions(+), 4 deletions(-)

diff --git 
a/src/test/java/org/apache/sling/karaf/tests/bootstrap/JackrabbitOakIT.java 
b/src/test/java/org/apache/sling/karaf/tests/bootstrap/JackrabbitOakIT.java
index 8250519..e390a0f 100644
--- a/src/test/java/org/apache/sling/karaf/tests/bootstrap/JackrabbitOakIT.java
+++ b/src/test/java/org/apache/sling/karaf/tests/bootstrap/JackrabbitOakIT.java
@@ -44,8 +44,23 @@ public class JackrabbitOakIT extends KarafTestSupport {
     }
 
     @Test
-    public void testOrgApacheJackrabbitOakCore() {
-        final Bundle bundle = findBundle("org.apache.jackrabbit.oak-core");
+    public void testOrgApacheJackrabbitOakApi() {
+        final Bundle bundle = findBundle("org.apache.jackrabbit.oak-api");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+    @Test
+    public void testOrgApacheJackrabbitOakBlob() {
+        final Bundle bundle = findBundle("org.apache.jackrabbit.oak-blob");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+
+    @Test
+    public void testOrgApacheJackrabbitOakBlobPlugins() {
+        final Bundle bundle = 
findBundle("org.apache.jackrabbit.oak-blob-plugins");
         assertNotNull(bundle);
         assertEquals(Bundle.ACTIVE, bundle.getState());
     }
@@ -58,8 +73,15 @@ public class JackrabbitOakIT extends KarafTestSupport {
     }
 
     @Test
-    public void testOrgApacheJackrabbitOakBlob() {
-        final Bundle bundle = findBundle("org.apache.jackrabbit.oak-blob");
+    public void testOrgApacheJackrabbitOakCore() {
+        final Bundle bundle = findBundle("org.apache.jackrabbit.oak-core");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+    @Test
+    public void testOrgApacheJackrabbitOakCoreSpi() {
+        final Bundle bundle = findBundle("org.apache.jackrabbit.oak-core-spi");
         assertNotNull(bundle);
         assertEquals(Bundle.ACTIVE, bundle.getState());
     }
@@ -72,6 +94,34 @@ public class JackrabbitOakIT extends KarafTestSupport {
     }
 
     @Test
+    public void testOrgApacheJackrabbitOakQuerySpi() {
+        final Bundle bundle = 
findBundle("org.apache.jackrabbit.oak-query-spi");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+    @Test
+    public void testOrgApacheJackrabbitOakSecuritySpi() {
+        final Bundle bundle = 
findBundle("org.apache.jackrabbit.oak-security-spi");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+    @Test
+    public void testOrgApacheJackrabbitOakStoreCompositeSpi() {
+        final Bundle bundle = 
findBundle("org.apache.jackrabbit.oak-store-composite");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+    @Test
+    public void testOrgApacheJackrabbitOakStoreSpi() {
+        final Bundle bundle = 
findBundle("org.apache.jackrabbit.oak-store-spi");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+    @Test
     public void testComGoogleGuava() {
         final Bundle bundle = findBundle("com.google.guava");
         assertNotNull(bundle);
@@ -85,4 +135,11 @@ public class JackrabbitOakIT extends KarafTestSupport {
         assertEquals(Bundle.ACTIVE, bundle.getState());
     }
 
+    @Test
+    public void testIoDropwizardMetricsCore() {
+        final Bundle bundle = findBundle("io.dropwizard.metrics.core");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
 }
diff --git 
a/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingQuickstartOakMongoIT.java
 
b/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingQuickstartOakMongoIT.java
index 9a1eb82..75dac9c 100644
--- 
a/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingQuickstartOakMongoIT.java
+++ 
b/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingQuickstartOakMongoIT.java
@@ -93,6 +93,13 @@ public class SlingQuickstartOakMongoIT extends 
AbstractSlingQuickstartOakTestSup
     }
 
     @Test
+    public void testOrgApacheJackrabbitOakStoreDocument() {
+        final Bundle bundle = 
findBundle("org.apache.jackrabbit.oak-store-document");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+    @Test
     public void testOrgApacheJackrabbitOakLucene() {
         final Bundle bundle = findBundle("org.apache.jackrabbit.oak-lucene");
         assertNotNull(bundle);

-- 
To stop receiving notification emails like this one, please contact
o...@apache.org.

Reply via email to