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

svn commit: r1390430 - in /karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression: KeepFolderTest.java RemoveRuntimeFolderTest.java

Author: cschneider
Date: Wed Sep 26 12:18:50 2012
New Revision: 1390430

URL: http://svn.apache.org/viewvc?rev=1390430&view=rev
Log:
KARAF-1875 Adding a negative case and documenting how to check for deletion manually

Added:
    karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression/RemoveRuntimeFolderTest.java   (with props)
Modified:
    karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression/KeepFolderTest.java

Modified: karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression/KeepFolderTest.java
URL: http://svn.apache.org/viewvc/karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression/KeepFolderTest.java?rev=1390430&r1=1390429&r2=1390430&view=diff
==============================================================================
--- karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression/KeepFolderTest.java (original)
+++ karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression/KeepFolderTest.java Wed Sep 26 12:18:50 2012
@@ -17,13 +17,13 @@
 
 package org.apache.karaf.tooling.exam.regression;
 
-import static junit.framework.Assert.assertTrue;
 import static org.apache.karaf.tooling.exam.options.KarafDistributionOption.karafDistributionConfiguration;
 import static org.apache.karaf.tooling.exam.options.KarafDistributionOption.keepRuntimeFolder;
 import static org.ops4j.pax.exam.CoreOptions.maven;
 
 import java.io.File;
 
+import org.junit.Assert;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.ops4j.pax.exam.Option;
@@ -36,6 +36,8 @@ import org.ops4j.pax.exam.spi.reactors.A
 @ExamReactorStrategy(AllConfinedStagedReactorFactory.class)
 public class KeepFolderTest {
 
+    private File runtimeFolder;
+
     @Configuration
     public Option[] config() {
         return new Option[]{
@@ -46,33 +48,9 @@ public class KeepFolderTest {
 
     @Test
     public void test() throws Exception {
-        System.out.println("===========================================");
-        System.out.println("===========================================");
-        System.out.println("===========================================");
-        System.out.println("===========================================");
-        System.out.println("===========================================");
-        System.out.println("===========================================");
-        System.out.println("===========================================");
-        System.out.println("===========================================");
-        System.out.println("===========================================");
-        System.out.println("===========================================");
-        System.out.println("===========================================");
-        assertTrue(true);
-    }
-
-    @Test
-    public void test2() throws Exception {
-        System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXxx");
-        System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXxx");
-        System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXxx");
-        System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXxx");
-        System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXxx");
-        System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXxx");
-        System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXxx");
-        System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXxx");
-        System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXxx");
-        System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXxx");
-        System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXxx");
-        assertTrue(true);
+        runtimeFolder = new File(".").getAbsoluteFile().getParentFile();
+        Assert.assertTrue("Runtime folder should exist while test runs", runtimeFolder.exists());
+        System.out.println("Please check manually that the folder " + runtimeFolder.getAbsolutePath() + " still exists after this test");
     }
+    
 }

Added: karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression/RemoveRuntimeFolderTest.java
URL: http://svn.apache.org/viewvc/karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression/RemoveRuntimeFolderTest.java?rev=1390430&view=auto
==============================================================================
--- karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression/RemoveRuntimeFolderTest.java (added)
+++ karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression/RemoveRuntimeFolderTest.java Wed Sep 26 12:18:50 2012
@@ -0,0 +1,57 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.tooling.exam.regression;
+
+import static org.apache.karaf.tooling.exam.options.KarafDistributionOption.karafDistributionConfiguration;
+import static org.ops4j.pax.exam.CoreOptions.maven;
+
+import java.io.File;
+
+import org.junit.Assert;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.ops4j.pax.exam.Option;
+import org.ops4j.pax.exam.junit.Configuration;
+import org.ops4j.pax.exam.junit.ExamReactorStrategy;
+import org.ops4j.pax.exam.junit.JUnit4TestRunner;
+import org.ops4j.pax.exam.spi.reactors.AllConfinedStagedReactorFactory;
+
+@RunWith(JUnit4TestRunner.class)
+@ExamReactorStrategy(AllConfinedStagedReactorFactory.class)
+public class RemoveRuntimeFolderTest {
+
+    private static File runtimeFolder;
+
+    @Configuration
+    public Option[] config() {
+        return new Option[]{
+            karafDistributionConfiguration().frameworkUrl(
+                maven().groupId("org.apache.karaf").artifactId("apache-karaf").type("zip")
+                    .versionAsInProject())
+                    // unpackDirectory seems to be necessary to make sure the working directory is set like we use below
+                    .unpackDirectory(new File("target/paxexam/unpack/")) };
+    }
+
+    @Test
+    public void test() throws Exception {
+        runtimeFolder = new File(".").getAbsoluteFile().getParentFile();
+        Assert.assertTrue("Runtime folder should exist while test runs", runtimeFolder.exists());
+        System.out.println("Please check manually that the folder " + runtimeFolder.getAbsolutePath() + " is deleted after this test");
+    }
+
+}

Propchange: karaf/trunk/tooling/exam/regression/src/test/java/org/apache/karaf/tooling/exam/regression/RemoveRuntimeFolderTest.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain