You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by al...@apache.org on 2013/07/16 11:12:14 UTC

svn commit: r1503622 - in /jackrabbit/oak/trunk/oak-jcr: pom.xml src/test/java/org/apache/jackrabbit/oak/jcr/observation/ObservationJcrTest.java

Author: alexparvulescu
Date: Tue Jul 16 09:12:14 2013
New Revision: 1503622

URL: http://svn.apache.org/r1503622
Log:
OAK-900 Run Jackrabbit Observation tests

Added:
    jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/observation/ObservationJcrTest.java   (with props)
Modified:
    jackrabbit/oak/trunk/oak-jcr/pom.xml

Modified: jackrabbit/oak/trunk/oak-jcr/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-jcr/pom.xml?rev=1503622&r1=1503621&r2=1503622&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-jcr/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-jcr/pom.xml Tue Jul 16 09:12:14 2013
@@ -334,6 +334,12 @@
       org.apache.jackrabbit.core.query.SelectClauseTest#testSameNameSiblingSQL                       <!-- OAK-203 -->
       org.apache.jackrabbit.core.query.ShareableNodeTest#testName                                    <!-- OAK-118 -->
       org.apache.jackrabbit.core.query.ShareableNodeTest#testPathConstraint                          <!-- OAK-118 -->
+      org.apache.jackrabbit.core.observation.MixinTest#testSingleMixin                               <!-- OAK-900 -->
+      org.apache.jackrabbit.core.observation.MixinTest#testMultipleMixin                             <!-- OAK-900 -->
+      org.apache.jackrabbit.core.observation.MixinTest#testMultipleMixinOnNode                       <!-- OAK-900 -->
+      org.apache.jackrabbit.core.observation.MixinTest#testDerivedMixin                              <!-- OAK-900 -->
+      org.apache.jackrabbit.core.observation.ShareableNodesTest#testAddShare                         <!-- OAK-900 -->
+      org.apache.jackrabbit.core.observation.ShareableNodesTest#testRemoveShare                      <!-- OAK-900 -->
     </known.issues>
   </properties>
 

Added: jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/observation/ObservationJcrTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/observation/ObservationJcrTest.java?rev=1503622&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/observation/ObservationJcrTest.java (added)
+++ jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/observation/ObservationJcrTest.java Tue Jul 16 09:12:14 2013
@@ -0,0 +1,40 @@
+/*
+ * 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.jackrabbit.oak.jcr.observation;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+import org.apache.jackrabbit.core.observation.MixinTest;
+import org.apache.jackrabbit.core.observation.MoveInPlaceTest;
+import org.apache.jackrabbit.core.observation.ReorderTest;
+import org.apache.jackrabbit.core.observation.ShareableNodesTest;
+import org.apache.jackrabbit.test.ConcurrentTestSuite;
+
+public class ObservationJcrTest extends TestCase {
+
+    public static Test suite() {
+        TestSuite suite = new ConcurrentTestSuite(
+                "Jackrabbit Observation tests");
+        suite.addTestSuite(ReorderTest.class);
+        suite.addTestSuite(MoveInPlaceTest.class);
+        suite.addTestSuite(MixinTest.class);
+        suite.addTestSuite(ShareableNodesTest.class);
+        return suite;
+    }
+}

Propchange: jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/observation/ObservationJcrTest.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain