Author: mduerig
Date: Wed Aug 31 16:09:55 2011
New Revision: 1163678
URL: http://svn.apache.org/viewvc?rev=1163678&view=rev
Log:
Microkernel based Jackrabbit prototype (WIP)
test: add known issues
Modified:
jackrabbit/sandbox/jackrabbit-mk/jackrabbit-spi2microkernel/pom.xml
Modified: jackrabbit/sandbox/jackrabbit-mk/jackrabbit-spi2microkernel/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/sandbox/jackrabbit-mk/jackrabbit-spi2microkernel/pom.xml?rev=1163678&r1=1163677&r2=1163678&view=diff
==============================================================================
--- jackrabbit/sandbox/jackrabbit-mk/jackrabbit-spi2microkernel/pom.xml (original)
+++ jackrabbit/sandbox/jackrabbit-mk/jackrabbit-spi2microkernel/pom.xml Wed Aug 31 16:09:55
2011
@@ -108,6 +108,63 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
+ <systemProperties>
+ <property>
+ <name>known.issues</name>
+ <value>
+ <!-- SNS are not supported -->
+ org.apache.jackrabbit.test.api.AddNodeTest#testSameNameSiblings
+ org.apache.jackrabbit.test.api.SerializationTest#testNodeTypeConstraintViolationWorkspaceWithHandler
+ org.apache.jackrabbit.test.api.SerializationTest#testNodeTypeConstraintViolationSessionWithHandler
+ org.apache.jackrabbit.test.api.SerializationTest#testNodeTypeConstraintViolationWorkspace
+ org.apache.jackrabbit.test.api.SerializationTest#testNodeTypeConstraintViolationSession
+
+ <!-- Constraints are not checked -->
+ org.apache.jackrabbit.test.api.SessionTest#testSaveContstraintViolationException
+ org.apache.jackrabbit.test.api.SessionUUIDTest#testSaveReferentialIntegrityException
+ org.apache.jackrabbit.test.api.NodeTest#testSaveContstraintViolationException
+ org.apache.jackrabbit.test.api.NodeTest#testRemoveMandatoryNode
+ org.apache.jackrabbit.test.api.NodeUUIDTest#testSaveReferentialIntegrityException
+
+ <!-- Throws PathNotFoundException instead of InvalidItemStateException
-->
+ org.apache.jackrabbit.test.api.SessionTest#testSaveInvalidStateException
+ org.apache.jackrabbit.test.api.SessionUUIDTest#testSaveMovedRefNode
+ org.apache.jackrabbit.test.api.NodeTest#testSaveInvalidStateException
+ org.apache.jackrabbit.test.api.NodeTest#testRemoveInvalidItemStateException
+ org.apache.jackrabbit.test.api.NodeUUIDTest#testSaveMovedRefNode
+
+ <!-- Not implemented: RepositoryService.update()
-->
+ org.apache.jackrabbit.test.api.NodeTest#testUpdate
+
+ <!-- Not implemented: versioning -->
+ org.apache.jackrabbit.test.api.SerializationTest#testVersioningExceptionFileParentWorkspaceContentHandler
+ org.apache.jackrabbit.test.api.SerializationTest#testVersioningExceptionFileParentSessionContentHandler
+ org.apache.jackrabbit.test.api.SerializationTest#testVersioningExceptionFileParentWorkspace
+ org.apache.jackrabbit.test.api.SerializationTest#testVersioningExceptionFileParentSession
+ org.apache.jackrabbit.test.api.SerializationTest#testVersioningExceptionFileChildWorkspaceContentHandler
+ org.apache.jackrabbit.test.api.SerializationTest#testVersioningExceptionFileChildSessionContentHandler
+ org.apache.jackrabbit.test.api.SerializationTest#testVersioningExceptionFileChildWorkspace
+ org.apache.jackrabbit.test.api.SerializationTest#testVersioningExceptionFileChildSession
+ org.apache.jackrabbit.test.api.SerializationTest#testLockExceptionWorkspaceWithHandler
+ org.apache.jackrabbit.test.api.SerializationTest#testLockExceptionSessionWithHandler
+ org.apache.jackrabbit.test.api.SerializationTest#testLockExceptionWorkspace
+ org.apache.jackrabbit.test.api.SerializationTest#testLockExceptionSession
+
+ <!-- Not implemented: import -->
+ org.apache.jackrabbit.test.api.SerializationTest#testInvalidXmlThrowsInvalidSerializedDataException
+ org.apache.jackrabbit.test.api.SerializationTest#testOverwriteExceptionWorkspace
+ org.apache.jackrabbit.test.api.SerializationTest#testStreamHandling
+ org.apache.jackrabbit.test.api.SerializationTest#testExportSysView_stream_workspace_skipBinary_noRecurse
+ org.apache.jackrabbit.test.api.SerializationTest#testExportSysView_stream_workspace_skipBinary_recurse
+ org.apache.jackrabbit.test.api.SerializationTest#testExportSysView_stream_workspace_saveBinary_noRecurse
+ org.apache.jackrabbit.test.api.SerializationTest#testExportSysView_stream_workspace_saveBinary_recurse
+ org.apache.jackrabbit.test.api.SerializationTest#testExportSysView_handler_workspace_skipBinary_noRecurse
+ org.apache.jackrabbit.test.api.SerializationTest#testExportSysView_handler_workspace_skipBinary_recurse
+ org.apache.jackrabbit.test.api.SerializationTest#testExportSysView_handler_workspace_saveBinary_noRecurse
+ org.apache.jackrabbit.test.api.SerializationTest#testExportSysView_handler_workspace_saveBinary_recurse
+ </value>
+ </property>
+ </systemProperties>
<includes>
<include>**/TckTests.java</include>
<include>**/*Test.java</include>
|