You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2018/12/02 10:53:32 UTC

[sling-org-apache-sling-karaf-integration-tests] branch master updated (211e3d1 -> 53cb865)

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

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


    from 211e3d1  SLING-3017 Improve Karaf integration tests
     new 8048683  SLING-3027 Improve Launchpad Karaf Features
     new ecfe07a  SLING-8143 Update Pax Exam to 4.13.0
     new 53cb865  SLING-3017 Improve Karaf integration tests

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                                      |  8 ++++----
 .../sling/karaf/tests/bootstrap/SlingScriptingSightlyIT.java | 12 +++++++++---
 2 files changed, 13 insertions(+), 7 deletions(-)


[sling-org-apache-sling-karaf-integration-tests] 02/03: SLING-8143 Update Pax Exam to 4.13.0

Posted by ol...@apache.org.
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

commit ecfe07a306a05529b9d897a13a53ab016c46e410
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sun Dec 2 11:12:41 2018 +0100

    SLING-8143 Update Pax Exam to 4.13.0
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 0ff0adb..3186a39 100644
--- a/pom.xml
+++ b/pom.xml
@@ -131,17 +131,17 @@
     <dependency>
       <groupId>org.ops4j.pax.exam</groupId>
       <artifactId>pax-exam</artifactId>
-      <version>4.12.0</version>
+      <version>4.13.0</version>
     </dependency>
     <dependency>
       <groupId>org.ops4j.pax.exam</groupId>
       <artifactId>pax-exam-container-karaf</artifactId>
-      <version>4.12.0</version>
+      <version>4.13.0</version>
     </dependency>
     <dependency>
       <groupId>org.ops4j.pax.exam</groupId>
       <artifactId>pax-exam-junit4</artifactId>
-      <version>4.12.0</version>
+      <version>4.13.0</version>
       <scope>test</scope>
     </dependency>
     <dependency>


[sling-org-apache-sling-karaf-integration-tests] 03/03: SLING-3017 Improve Karaf integration tests

Posted by ol...@apache.org.
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

commit 53cb8657b34c24d7d1126b95514ce68f41f2806a
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sun Dec 2 11:53:16 2018 +0100

    SLING-3017 Improve Karaf integration tests
    
    use latest releases
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 3186a39..9b7199f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -90,7 +90,7 @@
     <dependency>
       <groupId>org.apache.sling</groupId>
       <artifactId>org.apache.sling.engine</artifactId>
-      <version>2.6.14</version>
+      <version>2.6.16</version>
       <scope>test</scope>
     </dependency>
     <dependency>


[sling-org-apache-sling-karaf-integration-tests] 01/03: SLING-3027 Improve Launchpad Karaf Features

Posted by ol...@apache.org.
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

commit 8048683f097454a8a764990155bc50ff5b742d28
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sun Dec 2 11:08:27 2018 +0100

    SLING-3027 Improve Launchpad Karaf Features
    
    adjust test to feature
---
 .../sling/karaf/tests/bootstrap/SlingScriptingSightlyIT.java | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingSightlyIT.java b/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingSightlyIT.java
index 93ef69a..2966d28 100644
--- a/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingSightlyIT.java
+++ b/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingSightlyIT.java
@@ -40,27 +40,33 @@ public class SlingScriptingSightlyIT extends KarafTestSupport {
     public Option[] configuration() {
         return OptionUtils.combine(baseConfiguration(),
             addSlingFeatures(
-                "sling-commons-fsclassloader",
                 "sling-scripting-sightly"
             )
         );
     }
 
     @Test
-    public void testOrgApacheSlingSightly() {
+    public void testOrgApacheSlingScriptingSightly() {
         final Bundle bundle = findBundle("org.apache.sling.scripting.sightly");
         assertNotNull(bundle);
         assertEquals(Bundle.ACTIVE, bundle.getState());
     }
 
     @Test
-    public void testOrgApacheSlingSightlyJsProvider() {
+    public void testOrgApacheSlingScriptingSightlyJsProvider() {
         final Bundle bundle = findBundle("org.apache.sling.scripting.sightly.js.provider");
         assertNotNull(bundle);
         assertEquals(Bundle.ACTIVE, bundle.getState());
     }
 
     @Test
+    public void testOrgApacheSlingScriptingSightlyRuntime() {
+        final Bundle bundle = findBundle("org.apache.sling.scripting.sightly.runtime");
+        assertNotNull(bundle);
+        assertEquals(Bundle.ACTIVE, bundle.getState());
+    }
+
+    @Test
     public void testOrgApacheServicemixBundlesRhino() {
         final Bundle bundle = findBundle("org.apache.servicemix.bundles.rhino");
         assertNotNull(bundle);