org.apache.jackrabbit.test.api.version
Class WorkspaceRestoreTest

java.lang.Object
  extended by junit.framework.Assert
      extended by junit.framework.TestCase
          extended by org.apache.jackrabbit.test.JUnitTest
              extended by org.apache.jackrabbit.test.AbstractJCRTest
                  extended by org.apache.jackrabbit.test.api.version.AbstractVersionTest
                      extended by org.apache.jackrabbit.test.api.version.WorkspaceRestoreTest
All Implemented Interfaces:
junit.framework.Test

public class WorkspaceRestoreTest
extends AbstractVersionTest

WorkspaceRestoreTest provides test methods for the Workspace.restore(javax.jcr.version.Version[], boolean) method.


Field Summary
 
Fields inherited from class org.apache.jackrabbit.test.api.version.AbstractVersionTest
nonVersionableNode, nonVersionableNodeType, propertyValue, versionableNode, versionableNodeType
 
Fields inherited from class org.apache.jackrabbit.test.AbstractJCRTest
isReadOnly, jcrBaseVersion, jcrCopiedFrom, jcrCreated, jcrFrozenNode, jcrFrozenUuid, jcrIsCheckedOut, jcrlockIsDeep, jcrLockOwner, jcrMergeFailed, jcrMixinTypes, jcrPredecessors, jcrPrimaryType, jcrRootVersion, jcrSuccessors, jcrSystem, jcrUUID, jcrVersionHistory, mixLockable, mixReferenceable, mixShareable, mixSimpleVersionable, mixVersionable, nodeName1, nodeName2, nodeName3, nodeName4, NS_JCR_URI, NS_MIX_URI, NS_NT_URI, NS_SV_URI, ntBase, ntFrozenNode, ntQuery, ntUnstructured, ntVersion, ntVersionHistory, ntVersionLabels, propertyName1, propertyName2, superuser, testNodeType, testNodeTypeNoChildren, testPath, testRoot, testRootNode, vf, workspaceName
 
Fields inherited from class org.apache.jackrabbit.test.JUnitTest
log
 
Constructor Summary
WorkspaceRestoreTest()
           
 
Method Summary
protected  void setUp()
           
protected  void tearDown()
           
 void testWorkspaceRestoreHasCorrespondingNode()
          Test if VersionException is thrown if the specified version array does not contain a version that has a corresponding node in this workspace.
 void testWorkspaceRestoreHasCorrespondingNodeJcr2()
          Test if VersionException is thrown if the specified version array does not contain a version that has a corresponding node in this workspace.
 void testWorkspaceRestoreOnCheckedInNode()
          Test if workspace-restoring a node works on checked-in node.
 void testWorkspaceRestoreOnCheckedInNodeJcr2()
          Test if workspace-restoring a node works on checked-in node.
 void testWorkspaceRestoreOnCheckedOutNode()
          Test if workspace-restoring a node works on checked-out node.
 void testWorkspaceRestoreOnCheckedOutNodeJcr2()
          Test if workspace-restoring a node works on checked-out node.
 void testWorkspaceRestoreWithParent()
          Test if Workspace.restore(Version[], boolean) succeeds if the following two preconditions are fulfilled: For every version V in S that corresponds to a missing node in the workspace, there must also be a parent of V in S. S must contain at least one version that corresponds to an existing node in the workspace.
 void testWorkspaceRestoreWithParentJcr2()
          Test if VersionManager.restore(Version[], boolean) succeeds if the following two preconditions are fulfilled: For every version V in S that corresponds to a missing node in the workspace, there must also be a parent of V in S. S must contain at least one version that corresponds to an existing node in the workspace.
 void testWorkspaceRestoreWithPendingChanges()
          Test if InvalidItemStateException is thrown if the session affected by Workspace.restore(Version[], boolean) has pending changes.
 void testWorkspaceRestoreWithPendingChangesJcr2()
          Test if InvalidItemStateException is thrown if the session affected by VersionManager.restore(Version[], boolean) has pending changes.
 void testWorkspaceRestoreWithRemoveExisting()
          Test if the removeExisting-flag removes an existing node in case of uuid conflict.
 void testWorkspaceRestoreWithRemoveExistingJcr2()
          Test if the removeExisting-flag removes an existing node in case of uuid conflict.
 void testWorkspaceRestoreWithUUIDConflict()
          Tests if restoring the Version of an existing node throws an ItemExistsException if removeExisting is set to FALSE.
 void testWorkspaceRestoreWithUUIDConflictJcr2()
          Tests if restoring the Version of an existing node throws an ItemExistsException if removeExisting is set to FALSE.
 
Methods inherited from class org.apache.jackrabbit.test.api.version.AbstractVersionTest
createVersionableNode, getNumberOfVersions
 
Methods inherited from class org.apache.jackrabbit.test.AbstractJCRTest
checkSupportedOption, cleanUp, cleanUpTestRoot, createRandomString, ensureCanSetProperty, ensureCanSetProperty, ensureCanSetProperty, ensureKnowsNodeType, ensureMixinType, ensureMultipleWorkspacesSupported, getHelper, getJcrValue, getLocalName, getNonExistingWorkspaceName, getProperty, getProperty, getSize, isSupported, needsMixin, run
 
Methods inherited from class junit.framework.TestCase
countTestCases, createResult, getName, run, runBare, runTest, setName, toString
 
Methods inherited from class junit.framework.Assert
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

WorkspaceRestoreTest

public WorkspaceRestoreTest()
Method Detail

setUp

protected void setUp()
              throws Exception
Overrides:
setUp in class AbstractVersionTest
Throws:
Exception

tearDown

protected void tearDown()
                 throws Exception
Overrides:
tearDown in class AbstractVersionTest
Throws:
Exception

testWorkspaceRestoreWithPendingChanges

public void testWorkspaceRestoreWithPendingChanges()
                                            throws RepositoryException
Test if InvalidItemStateException is thrown if the session affected by Workspace.restore(Version[], boolean) has pending changes.

Throws:
RepositoryException

testWorkspaceRestoreWithPendingChangesJcr2

public void testWorkspaceRestoreWithPendingChangesJcr2()
                                                throws RepositoryException
Test if InvalidItemStateException is thrown if the session affected by VersionManager.restore(Version[], boolean) has pending changes.

Throws:
RepositoryException

testWorkspaceRestoreHasCorrespondingNode

public void testWorkspaceRestoreHasCorrespondingNode()
                                              throws RepositoryException
Test if VersionException is thrown if the specified version array does not contain a version that has a corresponding node in this workspace.

Throws:
RepositoryException

testWorkspaceRestoreHasCorrespondingNodeJcr2

public void testWorkspaceRestoreHasCorrespondingNodeJcr2()
                                                  throws RepositoryException
Test if VersionException is thrown if the specified version array does not contain a version that has a corresponding node in this workspace.

Throws:
RepositoryException

testWorkspaceRestoreWithParent

public void testWorkspaceRestoreWithParent()
                                    throws RepositoryException
Test if Workspace.restore(Version[], boolean) succeeds if the following two preconditions are fulfilled:

Throws:
RepositoryException

testWorkspaceRestoreWithParentJcr2

public void testWorkspaceRestoreWithParentJcr2()
                                        throws RepositoryException
Test if VersionManager.restore(Version[], boolean) succeeds if the following two preconditions are fulfilled:

Throws:
RepositoryException

testWorkspaceRestoreWithRemoveExisting

public void testWorkspaceRestoreWithRemoveExisting()
                                            throws NotExecutableException,
                                                   RepositoryException
Test if the removeExisting-flag removes an existing node in case of uuid conflict.

Throws:
NotExecutableException
RepositoryException

testWorkspaceRestoreWithRemoveExistingJcr2

public void testWorkspaceRestoreWithRemoveExistingJcr2()
                                                throws NotExecutableException,
                                                       RepositoryException
Test if the removeExisting-flag removes an existing node in case of uuid conflict.

Throws:
NotExecutableException
RepositoryException

testWorkspaceRestoreWithUUIDConflict

public void testWorkspaceRestoreWithUUIDConflict()
                                          throws RepositoryException,
                                                 NotExecutableException
Tests if restoring the Version of an existing node throws an ItemExistsException if removeExisting is set to FALSE.

Throws:
RepositoryException
NotExecutableException

testWorkspaceRestoreWithUUIDConflictJcr2

public void testWorkspaceRestoreWithUUIDConflictJcr2()
                                              throws RepositoryException,
                                                     NotExecutableException
Tests if restoring the Version of an existing node throws an ItemExistsException if removeExisting is set to FALSE.

Throws:
RepositoryException
NotExecutableException

testWorkspaceRestoreOnCheckedInNode

public void testWorkspaceRestoreOnCheckedInNode()
                                         throws RepositoryException
Test if workspace-restoring a node works on checked-in node.

Throws:
RepositoryException

testWorkspaceRestoreOnCheckedInNodeJcr2

public void testWorkspaceRestoreOnCheckedInNodeJcr2()
                                             throws RepositoryException
Test if workspace-restoring a node works on checked-in node.

Throws:
RepositoryException

testWorkspaceRestoreOnCheckedOutNode

public void testWorkspaceRestoreOnCheckedOutNode()
                                          throws RepositoryException
Test if workspace-restoring a node works on checked-out node.

Throws:
RepositoryException

testWorkspaceRestoreOnCheckedOutNodeJcr2

public void testWorkspaceRestoreOnCheckedOutNodeJcr2()
                                              throws RepositoryException
Test if workspace-restoring a node works on checked-out node.

Throws:
RepositoryException


Copyright © 2004-2010 The Apache Software Foundation. All Rights Reserved.