You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2012/09/14 15:03:11 UTC

svn commit: r1384752 - /karaf/branches/karaf-2.3.x/itests/src/test/java/org/apache/karaf/itests/EnterpriseFeaturesTest.java

Author: jbonofre
Date: Fri Sep 14 13:03:10 2012
New Revision: 1384752

URL: http://svn.apache.org/viewvc?rev=1384752&view=rev
Log:
[KARAF-1798] Add enterprise features itests

Added:
    karaf/branches/karaf-2.3.x/itests/src/test/java/org/apache/karaf/itests/EnterpriseFeaturesTest.java

Added: karaf/branches/karaf-2.3.x/itests/src/test/java/org/apache/karaf/itests/EnterpriseFeaturesTest.java
URL: http://svn.apache.org/viewvc/karaf/branches/karaf-2.3.x/itests/src/test/java/org/apache/karaf/itests/EnterpriseFeaturesTest.java?rev=1384752&view=auto
==============================================================================
--- karaf/branches/karaf-2.3.x/itests/src/test/java/org/apache/karaf/itests/EnterpriseFeaturesTest.java (added)
+++ karaf/branches/karaf-2.3.x/itests/src/test/java/org/apache/karaf/itests/EnterpriseFeaturesTest.java Fri Sep 14 13:03:10 2012
@@ -0,0 +1,60 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.karaf.itests;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.ops4j.pax.exam.junit.ExamReactorStrategy;
+import org.ops4j.pax.exam.junit.JUnit4TestRunner;
+import org.ops4j.pax.exam.spi.reactors.AllConfinedStagedReactorFactory;
+
+import static org.junit.Assert.assertFalse;
+
+@RunWith(JUnit4TestRunner.class)
+@ExamReactorStrategy(AllConfinedStagedReactorFactory.class)
+public class EnterpriseFeaturesTest extends KarafTestSupport {
+
+    @Test
+    public void testTransactionFeature() throws Exception {
+        System.out.println(executeCommand("feature:install transaction"));
+        String transactionFeatureStatus = executeCommand("feature:list | grep transaction");
+        System.out.println(transactionFeatureStatus);
+        assertFalse("transaction feature is not installed", transactionFeatureStatus.isEmpty());
+    }
+
+    @Test
+    public void testJpaFeature() throws Exception {
+        System.out.println(executeCommand("feature:install jpa"));
+        String jpaFeatureStatus = executeCommand("feature:list | grep jpa");
+        System.out.println(jpaFeatureStatus);
+        assertFalse("jpa feature is not installed", jpaFeatureStatus.isEmpty());
+    }
+
+    @Test
+    public void testJndiFeature() throws Exception {
+        System.out.println(executeCommand("feature:install jndi"));
+        String jndiFeatureStatus = executeCommand("feature:list | grep jndi");
+        System.out.println(jndiFeatureStatus);
+        assertFalse("jndi feature is not installed", jndiFeatureStatus.isEmpty());
+    }
+
+    @Test
+    public void testApplicationWithoutIsolationFeature() throws Exception {
+        System.out.println(executeCommand("feature:install application-without-isolation"));
+        String applicationWithoutIsolationFeatureStatus = executeCommand("feature:list | grep application-without-isolation");
+        System.out.println(applicationWithoutIsolationFeatureStatus);
+        assertFalse("application-without-isolation feature is not installed", applicationWithoutIsolationFeatureStatus.isEmpty());
+    }
+
+}