Added 'nodeArchiveService' bean

- Added tests around transaction visibility
 - TODO: Need to set the owner of archived and restored nodes


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2786 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2006-05-08 13:47:19 +00:00
parent 7ae60915a5
commit 501f4b02a4
12 changed files with 384 additions and 68 deletions

View File

@@ -28,6 +28,20 @@
</property> </property>
</bean> </bean>
<!-- Wrapper component to handle restore and purge of archived nodes -->
<bean id="nodeArchiveService" class="org.alfresco.repo.node.archive.NodeArchiveServiceImpl" >
<property name="nodeService">
<ref bean="NodeService"/>
</property>
<property name="searchService">
<ref bean="SearchService"/>
</property>
<property name="transactionService">
<ref bean="transactionComponent"/>
</property>
</bean>
<!-- NodeService implemented to persist to Database --> <!-- NodeService implemented to persist to Database -->
<bean id="dbNodeService" class="org.alfresco.repo.node.db.DbNodeServiceImpl" init-method="init" > <bean id="dbNodeService" class="org.alfresco.repo.node.db.DbNodeServiceImpl" init-method="init" >
<property name="dictionaryService"> <property name="dictionaryService">

View File

@@ -28,6 +28,7 @@ import junit.framework.TestCase;
import org.alfresco.model.ContentModel; import org.alfresco.model.ContentModel;
import org.alfresco.repo.node.StoreArchiveMap; import org.alfresco.repo.node.StoreArchiveMap;
import org.alfresco.repo.node.archive.RestoreNodeReport.RestoreStatus;
import org.alfresco.repo.security.authentication.AuthenticationComponent; import org.alfresco.repo.security.authentication.AuthenticationComponent;
import org.alfresco.service.ServiceRegistry; import org.alfresco.service.ServiceRegistry;
import org.alfresco.service.cmr.repository.AssociationRef; import org.alfresco.service.cmr.repository.AssociationRef;
@@ -62,6 +63,7 @@ public class ArchiveAndRestoreTest extends TestCase
private static ApplicationContext ctx = ApplicationContextHelper.getApplicationContext(); private static ApplicationContext ctx = ApplicationContextHelper.getApplicationContext();
private NodeArchiveService nodeArchiveService;
private NodeService nodeService; private NodeService nodeService;
private PermissionService permissionService; private PermissionService permissionService;
private AuthenticationComponent authenticationComponent; private AuthenticationComponent authenticationComponent;
@@ -95,6 +97,7 @@ public class ArchiveAndRestoreTest extends TestCase
public void setUp() throws Exception public void setUp() throws Exception
{ {
ServiceRegistry serviceRegistry = (ServiceRegistry) ctx.getBean("ServiceRegistry"); ServiceRegistry serviceRegistry = (ServiceRegistry) ctx.getBean("ServiceRegistry");
nodeArchiveService = (NodeArchiveService) ctx.getBean("nodeArchiveService");
nodeService = serviceRegistry.getNodeService(); nodeService = serviceRegistry.getNodeService();
permissionService = serviceRegistry.getPermissionService(); permissionService = serviceRegistry.getPermissionService();
authenticationService = serviceRegistry.getAuthenticationService(); authenticationService = serviceRegistry.getAuthenticationService();
@@ -142,10 +145,7 @@ public class ArchiveAndRestoreTest extends TestCase
{ {
try try
{ {
if (txn.getStatus() == Status.STATUS_ACTIVE) txn.rollback();
{
txn.rollback();
}
} }
catch (Throwable e) catch (Throwable e)
{ {
@@ -461,4 +461,84 @@ public class ArchiveAndRestoreTest extends TestCase
System.out.println("Average delete time: " + averageDeleteTimeMs + " ms"); System.out.println("Average delete time: " + averageDeleteTimeMs + " ms");
System.out.println("Average create time: " + averageCreateTimeMs + " ms"); System.out.println("Average create time: " + averageCreateTimeMs + " ms");
} }
public void testInTransactionRestore() throws Exception
{
RestoreNodeReport report = nodeArchiveService.restoreArchivedNode(a);
// expect a failure due to missing archive node
assertEquals("Expected failure", RestoreStatus.FAILURE_INVALID_ARCHIVE_NODE, report.getStatus());
// check that our transaction was not affected
assertEquals("Transaction should still be valid", Status.STATUS_ACTIVE, txn.getStatus());
}
public void testInTransactionPurge() throws Exception
{
nodeArchiveService.purgeArchivedNode(a);
// the node should still be there (it was not available to the purge transaction)
assertTrue("Node should not have been touched", nodeService.exists(a));
// check that our transaction was not affected
assertEquals("Transaction should still be valid", Status.STATUS_ACTIVE, txn.getStatus());
}
private void commitAndBeginNewTransaction() throws Exception
{
txn.commit();
txn = transactionService.getUserTransaction();
txn.begin();
}
public void testMassRestore() throws Exception
{
nodeService.deleteNode(a);
nodeService.deleteNode(b);
commitAndBeginNewTransaction();
List<RestoreNodeReport> reports = nodeArchiveService.restoreAllArchivedNodes(workStoreRef);
// check that both a and b were restored
assertEquals("Incorrect number of node reports", 2, reports.size());
commitAndBeginNewTransaction();
// all nodes must be restored, but some of the inter a-b assocs might not be
verifyNodeExistence(a, true);
verifyNodeExistence(b, true);
verifyNodeExistence(aa, true);
verifyNodeExistence(bb, true);
verifyNodeExistence(a_, false);
verifyNodeExistence(b_, false);
verifyNodeExistence(aa_, false);
verifyNodeExistence(bb_, false);
}
public void testMassPurge() throws Exception
{
nodeService.deleteNode(a);
nodeService.deleteNode(b);
commitAndBeginNewTransaction();
nodeArchiveService.purgeAllArchivedNodes(workStoreRef);
commitAndBeginNewTransaction();
// all nodes must be gone
verifyNodeExistence(a, false);
verifyNodeExistence(b, false);
verifyNodeExistence(aa, false);
verifyNodeExistence(bb, false);
verifyNodeExistence(a_, false);
verifyNodeExistence(b_, false);
verifyNodeExistence(aa_, false);
verifyNodeExistence(bb_, false);
}
//
// public void testPermissionsForRestore() throws Exception
// {
// // user A deletes 'a'
// authenticationService.authenticate(USER_A, USER_A.toCharArray());
// nodeService.deleteNode(a);
// // user B deletes 'b'
// authenticationService.authenticate(USER_B, USER_B.toCharArray());
// nodeService.deleteNode(b);
//
// // user B can't see archived 'a'
// List<RestoreNodeReport> restoredByB = nodeArchiveService.restoreAllArchivedNodes(workStoreRef);
// assertEquals("User B should not have seen A's delete", 1, restoredByB.size());
// }
} }

View File

@@ -19,11 +19,23 @@ package org.alfresco.repo.node.archive;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import org.alfresco.model.ContentModel;
import org.alfresco.repo.node.archive.RestoreNodeReport.RestoreStatus;
import org.alfresco.repo.transaction.TransactionUtil;
import org.alfresco.repo.transaction.TransactionUtil.TransactionWork;
import org.alfresco.service.cmr.repository.InvalidNodeRefException;
import org.alfresco.service.cmr.repository.NodeRef; import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.repository.NodeService; import org.alfresco.service.cmr.repository.NodeService;
import org.alfresco.service.cmr.repository.StoreRef; import org.alfresco.service.cmr.repository.StoreRef;
import org.alfresco.service.cmr.search.ResultSet;
import org.alfresco.service.cmr.search.ResultSetRow;
import org.alfresco.service.cmr.search.SearchParameters;
import org.alfresco.service.cmr.search.SearchService;
import org.alfresco.service.namespace.QName; import org.alfresco.service.namespace.QName;
import org.alfresco.service.transaction.TransactionService; import org.alfresco.service.transaction.TransactionService;
import org.alfresco.util.EqualsHelper;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/** /**
* Implementation of the node archive abstraction. * Implementation of the node archive abstraction.
@@ -32,7 +44,10 @@ import org.alfresco.service.transaction.TransactionService;
*/ */
public class NodeArchiveServiceImpl implements NodeArchiveService public class NodeArchiveServiceImpl implements NodeArchiveService
{ {
private static Log logger = LogFactory.getLog(NodeArchiveServiceImpl.class);
private NodeService nodeService; private NodeService nodeService;
private SearchService searchService;
private TransactionService transactionService; private TransactionService transactionService;
public void setNodeService(NodeService nodeService) public void setNodeService(NodeService nodeService)
@@ -45,11 +60,99 @@ public class NodeArchiveServiceImpl implements NodeArchiveService
this.transactionService = transactionService; this.transactionService = transactionService;
} }
public void setSearchService(SearchService searchService)
{
this.searchService = searchService;
}
public NodeRef getStoreArchiveNode(StoreRef storeRef) public NodeRef getStoreArchiveNode(StoreRef storeRef)
{ {
return nodeService.getStoreArchiveNode(storeRef); return nodeService.getStoreArchiveNode(storeRef);
} }
/**
* Get all the nodes that were archived <b>from</b> the given store.
*/
private ResultSet getArchivedNodes(StoreRef originalStoreRef)
{
// Get the archive location
NodeRef archiveParentNodeRef = nodeService.getStoreArchiveNode(originalStoreRef);
StoreRef archiveStoreRef = archiveParentNodeRef.getStoreRef();
// build the query
String query = String.format("PARENT:\"%s\" AND ASPECT:\"%s\"", archiveParentNodeRef, ContentModel.ASPECT_ARCHIVED);
// search parameters
SearchParameters params = new SearchParameters();
params.addStore(archiveStoreRef);
params.setLanguage(SearchService.LANGUAGE_LUCENE);
params.setQuery(query);
// params.addSort(ContentModel.PROP_ARCHIVED_DATE.toString(), false);
// get all archived children using a search
ResultSet rs = searchService.query(params);
// done
return rs;
}
/**
* This is the primary restore method that all <code>restore</code> methods fall back on.
* It executes the restore for the node in a separate transaction and attempts to catch
* the known conditions that can be reported back to the client.
*/
public RestoreNodeReport restoreArchivedNode(
final NodeRef archivedNodeRef,
final NodeRef destinationNodeRef,
final QName assocTypeQName,
final QName assocQName)
{
RestoreNodeReport report = new RestoreNodeReport(archivedNodeRef);
report.setTargetParentNodeRef(destinationNodeRef);
try
{
// Transactional wrapper to attempt the restore
TransactionWork<NodeRef> restoreWork = new TransactionWork<NodeRef>()
{
public NodeRef doWork() throws Exception
{
return nodeService.restoreNode(archivedNodeRef, destinationNodeRef, assocTypeQName, assocQName);
}
};
NodeRef newNodeRef = TransactionUtil.executeInNonPropagatingUserTransaction(transactionService, restoreWork);
// success
report.setRestoredNodeRef(newNodeRef);
report.setStatus(RestoreStatus.SUCCESS);
}
catch (InvalidNodeRefException e)
{
report.setCause(e);
NodeRef invalidNodeRef = e.getNodeRef();
if (archivedNodeRef.equals(invalidNodeRef))
{
// not too serious, but the node to archive is missing
report.setStatus(RestoreStatus.FAILURE_INVALID_ARCHIVE_NODE);
}
else if (EqualsHelper.nullSafeEquals(destinationNodeRef, invalidNodeRef))
{
report.setStatus(RestoreStatus.FAILURE_INVALID_PARENT);
}
else
{
// some other invalid node was detected
report.setStatus(RestoreStatus.FAILURE_OTHER);
}
}
// TODO: Catch permission exceptions
catch (Throwable e)
{
report.setCause(e);
report.setStatus(RestoreStatus.FAILURE_OTHER);
}
// done
if (logger.isDebugEnabled())
{
logger.debug("Attempted node restore: "+ report);
}
return report;
}
/** /**
* @see #restoreArchivedNode(NodeRef, NodeRef, QName, QName) * @see #restoreArchivedNode(NodeRef, NodeRef, QName, QName)
*/ */
@@ -58,27 +161,12 @@ public class NodeArchiveServiceImpl implements NodeArchiveService
return restoreArchivedNode(archivedNodeRef, null, null, null); return restoreArchivedNode(archivedNodeRef, null, null, null);
} }
public RestoreNodeReport restoreArchivedNode(
NodeRef archivedNodeRef,
NodeRef destinationNodeRef,
QName assocTypeQName,
QName assocQName)
{
throw new UnsupportedOperationException();
}
/** /**
* @see #restoreArchivedNode(NodeRef, NodeRef, QName, QName) * @see #restoreArchivedNodes(List, NodeRef, QName, QName)
*/ */
public List<RestoreNodeReport> restoreArchivedNodes(List<NodeRef> archivedNodeRefs) public List<RestoreNodeReport> restoreArchivedNodes(List<NodeRef> archivedNodeRefs)
{ {
List<RestoreNodeReport> results = new ArrayList<RestoreNodeReport>(archivedNodeRefs.size()); return restoreArchivedNodes(archivedNodeRefs, null, null, null);
for (NodeRef nodeRef : archivedNodeRefs)
{
RestoreNodeReport result = restoreArchivedNode(nodeRef, null, null, null);
results.add(result);
}
return results;
} }
/** /**
@@ -100,35 +188,96 @@ public class NodeArchiveServiceImpl implements NodeArchiveService
} }
/** /**
* @see #restoreArchivedNode(NodeRef, NodeRef, QName, QName) * @see #restoreAllArchivedNodes(StoreRef, NodeRef, QName, QName)
*/ */
public List<RestoreNodeReport> restoreAllArchivedNodes(StoreRef originalStoreRef) public List<RestoreNodeReport> restoreAllArchivedNodes(StoreRef originalStoreRef)
{ {
throw new UnsupportedOperationException(); return restoreAllArchivedNodes(originalStoreRef, null, null, null);
} }
/**
* Finds the archive location for nodes that were deleted from the given store
* and attempt to restore each node.
*
* @see NodeService#getStoreArchiveNode(StoreRef)
* @see #restoreArchivedNode(NodeRef, NodeRef, QName, QName)
*/
public List<RestoreNodeReport> restoreAllArchivedNodes( public List<RestoreNodeReport> restoreAllArchivedNodes(
StoreRef originalStoreRef, StoreRef originalStoreRef,
NodeRef destinationNodeRef, NodeRef destinationNodeRef,
QName assocTypeQName, QName assocTypeQName,
QName assocQName) QName assocQName)
{ {
throw new UnsupportedOperationException(); // get all archived children using a search
ResultSet rs = getArchivedNodes(originalStoreRef);
// loop through the resultset and attempt to restore all the nodes
List<RestoreNodeReport> results = new ArrayList<RestoreNodeReport>(1000);
for (ResultSetRow row : rs)
{
NodeRef archivedNodeRef = row.getNodeRef();
RestoreNodeReport result = restoreArchivedNode(archivedNodeRef, destinationNodeRef, assocTypeQName, assocQName);
results.add(result);
}
// done
if (logger.isDebugEnabled())
{
logger.debug("Restored " + results.size() + " nodes into store " + originalStoreRef);
}
return results;
} }
public void purgeArchivedNode(NodeRef archivedNodeRef) /**
* This is the primary purge methd that all purge methods fall back on. It isolates the delete
* work in a new transaction.
*/
public void purgeArchivedNode(final NodeRef archivedNodeRef)
{ {
throw new UnsupportedOperationException(); TransactionWork<Object> deleteWork = new TransactionWork<Object>()
{
public Object doWork() throws Exception
{
try
{
nodeService.deleteNode(archivedNodeRef);
}
catch (InvalidNodeRefException e)
{
// ignore
}
return null;
}
};
TransactionUtil.executeInNonPropagatingUserTransaction(transactionService, deleteWork);
} }
/**
* @see #purgeArchivedNode(NodeRef)
*/
public void purgeArchivedNodes(List<NodeRef> archivedNodes) public void purgeArchivedNodes(List<NodeRef> archivedNodes)
{ {
throw new UnsupportedOperationException(); for (NodeRef archivedNodeRef : archivedNodes)
{
purgeArchivedNode(archivedNodeRef);
}
// done
} }
public void purgeAllArchivedNodes(StoreRef originalStoreRef) public void purgeAllArchivedNodes(StoreRef originalStoreRef)
{ {
throw new UnsupportedOperationException(); // get all archived children using a search
ResultSet rs = getArchivedNodes(originalStoreRef);
// loop through the resultset and attempt to restore all the nodes
List<RestoreNodeReport> results = new ArrayList<RestoreNodeReport>(1000);
for (ResultSetRow row : rs)
{
NodeRef archivedNodeRef = row.getNodeRef();
purgeArchivedNode(archivedNodeRef);
}
// done
if (logger.isDebugEnabled())
{
logger.debug("Deleted " + results.size() + " nodes originally in store " + originalStoreRef);
}
} }
} }

View File

@@ -34,6 +34,7 @@ public class RestoreNodeReport implements Serializable
*/ */
public static enum RestoreStatus public static enum RestoreStatus
{ {
/** the operation was a success */
SUCCESS SUCCESS
{ {
@Override @Override
@@ -43,15 +44,23 @@ public class RestoreNodeReport implements Serializable
} }
}, },
/** the node to restore was missing */
FAILURE_INVALID_ARCHIVE_NODE
{
},
/** the destination parent of the restore operation was missing */
FAILURE_INVALID_PARENT FAILURE_INVALID_PARENT
{ {
}, },
/** the permissions required for either reading or writing were invalid */
FAILURE_PERMISSION FAILURE_PERMISSION
{ {
}, },
/** there was an integrity failure after the node was restored */
FAILURE_INTEGRITY FAILURE_INTEGRITY
{ {
}, },
/** the problem was not well-recognized */
FAILURE_OTHER FAILURE_OTHER
{ {
}; };
@@ -72,18 +81,22 @@ public class RestoreNodeReport implements Serializable
private RestoreStatus status; private RestoreStatus status;
private Throwable cause; private Throwable cause;
/* package */ RestoreNodeReport( /* package */ RestoreNodeReport(NodeRef archivedNodeRef)
RestoreStatus status,
NodeRef archivedNodeRef,
NodeRef targetParentNodeRef,
NodeRef restoredNodeRef,
Throwable cause)
{ {
this.status = status;
this.archivedNodeRef = archivedNodeRef; this.archivedNodeRef = archivedNodeRef;
this.targetParentNodeRef = targetParentNodeRef; }
this.restoredNodeRef = restoredNodeRef;
this.cause = cause; @Override
public String toString()
{
StringBuilder sb = new StringBuilder(100);
sb.append("RestoreNodeReport")
.append("[ archived=").append(archivedNodeRef)
.append(", restored=").append(restoredNodeRef)
.append(", parent=").append(targetParentNodeRef)
.append(", status=").append(status)
.append(", err=").append((cause == null ? "<none>" : cause.getMessage()));
return sb.toString();
} }
public NodeRef getArchivedNodeRef() public NodeRef getArchivedNodeRef()
@@ -96,18 +109,38 @@ public class RestoreNodeReport implements Serializable
return targetParentNodeRef; return targetParentNodeRef;
} }
/* package */ void setTargetParentNodeRef(NodeRef targetParentNodeRef)
{
this.targetParentNodeRef = targetParentNodeRef;
}
public NodeRef getRestoredNodeRef() public NodeRef getRestoredNodeRef()
{ {
return restoredNodeRef; return restoredNodeRef;
} }
/* package */ void setRestoredNodeRef(NodeRef restoredNodeRef)
{
this.restoredNodeRef = restoredNodeRef;
}
public RestoreStatus getStatus() public RestoreStatus getStatus()
{ {
return status; return status;
} }
/* package */ void setStatus(RestoreStatus status)
{
this.status = status;
}
public Throwable getCause() public Throwable getCause()
{ {
return cause; return cause;
} }
/* package */ void setCause(Throwable cause)
{
this.cause = cause;
}
} }

View File

@@ -1514,7 +1514,7 @@ public class DbNodeServiceImpl extends AbstractNodeServiceImpl
} }
} }
public NodeRef restoreNode(NodeRef archivedNodeRef, NodeRef targetParentNodeRef, QName assocTypeQName, QName assocQName) public NodeRef restoreNode(NodeRef archivedNodeRef, NodeRef destinationParentNodeRef, QName assocTypeQName, QName assocQName)
{ {
Node archivedNode = getNodeNotNull(archivedNodeRef); Node archivedNode = getNodeNotNull(archivedNodeRef);
Set<QName> aspects = archivedNode.getAspects(); Set<QName> aspects = archivedNode.getAspects();
@@ -1533,10 +1533,10 @@ public class DbNodeServiceImpl extends AbstractNodeServiceImpl
properties.remove(ContentModel.PROP_ARCHIVED_BY); properties.remove(ContentModel.PROP_ARCHIVED_BY);
properties.remove(ContentModel.PROP_ARCHIVED_DATE); properties.remove(ContentModel.PROP_ARCHIVED_DATE);
if (targetParentNodeRef == null) if (destinationParentNodeRef == null)
{ {
// we must restore to the original location // we must restore to the original location
targetParentNodeRef = originalPrimaryParentAssocRef.getParentRef(); destinationParentNodeRef = originalPrimaryParentAssocRef.getParentRef();
} }
// check the associations // check the associations
if (assocTypeQName == null) if (assocTypeQName == null)
@@ -1551,7 +1551,7 @@ public class DbNodeServiceImpl extends AbstractNodeServiceImpl
// move the node to the target parent, which may or may not be the original parent // move the node to the target parent, which may or may not be the original parent
moveNode( moveNode(
archivedNodeRef, archivedNodeRef,
targetParentNodeRef, destinationParentNodeRef,
assocTypeQName, assocTypeQName,
assocQName); assocQName);
@@ -1572,7 +1572,7 @@ public class DbNodeServiceImpl extends AbstractNodeServiceImpl
logger.debug("Restored node: \n" + logger.debug("Restored node: \n" +
" original noderef: " + archivedNodeRef + "\n" + " original noderef: " + archivedNodeRef + "\n" +
" restored noderef: " + restoredNodeRef + "\n" + " restored noderef: " + restoredNodeRef + "\n" +
" new parent: " + targetParentNodeRef); " new parent: " + destinationParentNodeRef);
} }
return restoredNodeRef; return restoredNodeRef;
} }

View File

@@ -109,6 +109,11 @@ public class AuthenticationServiceImpl implements AuthenticationService
throw ae; throw ae;
} }
} }
public boolean authenticationExists(String userName)
{
return authenticationDao.userExists(userName);
}
public String getCurrentUserName() throws AuthenticationException public String getCurrentUserName() throws AuthenticationException
{ {

View File

@@ -180,7 +180,19 @@ public class ChainingAuthenticationServiceImpl implements AuthenticationService
} }
} }
throw new AuthenticationException("Guest authentication not supported"); throw new AuthenticationException("Guest authentication not supported");
}
public boolean authenticationExists(String userName)
{
for (AuthenticationService authService : getUsableAuthenticationServices())
{
if (authService.authenticationExists(userName))
{
return true;
}
}
// it doesn't exist in any of the authentication components
return false;
} }
public String getCurrentUserName() throws AuthenticationException public String getCurrentUserName() throws AuthenticationException

View File

@@ -230,6 +230,11 @@ public class TestAuthenticationServiceImpl implements AuthenticationService
} }
} }
public boolean authenticationExists(String userName)
{
return userNamesAndPasswords.containsKey(userName);
}
public String getCurrentUserName() throws AuthenticationException public String getCurrentUserName() throws AuthenticationException
{ {
Context context = ContextHolder.getContext(); Context context = ContextHolder.getContext();

View File

@@ -494,14 +494,17 @@ public interface NodeService
* set against it. * set against it.
* *
* @param archivedNodeRef the archived node * @param archivedNodeRef the archived node
* @param targetParentNodeRef * @param destinationParentNodeRef the parent to move the node into
* @param assocTypeQName * or <tt>null</tt> to use the original
* @param assocQName * @param assocTypeQName the primary association type name to use in the new location
* or <tt>null</tt> to use the original
* @param assocQName the primary association name to use in the new location
* or <tt>null</tt> to use the original
* @return Returns the reference to the newly created node * @return Returns the reference to the newly created node
*/ */
public NodeRef restoreNode( public NodeRef restoreNode(
NodeRef archivedNodeRef, NodeRef archivedNodeRef,
NodeRef targetParentNodeRef, NodeRef destinationParentNodeRef,
QName assocTypeQName, QName assocTypeQName,
QName assocQName); QName assocQName);
} }

View File

@@ -35,39 +35,41 @@ import org.alfresco.service.namespace.QName;
public interface ResultSetRow public interface ResultSetRow
{ {
/** /**
* Get the values of all available node properties * Get the values of all available node properties. These are only properties
* that were stored in the query results and can vary depending on the query
* language that was used.
* *
* @return * @return Returns all the available node properties
*/ */
public Map<Path, Serializable> getValues(); public Map<Path, Serializable> getValues();
/** /**
* Get a node property by path * Get a node property by path
* *
* @param path * @param path the path to the value required
* @return * @return Returns the value of the property at the given path
*/ */
public Serializable getValue(Path path); public Serializable getValue(Path path);
/** /**
* Get a node value by name * Get a node property value by name
* *
* @param qname * @param qname the property name
* @return * @return Returns the node property for the given name
*/ */
public Serializable getValue(QName qname); public Serializable getValue(QName qname);
/** /**
* The refernce to the node that equates to this row in the result set * The reference to the node that equates to this row in the result set
* *
* @return * @return Returns the reference to the node that makes this result
*/ */
public NodeRef getNodeRef(); public NodeRef getNodeRef();
/** /**
* Get the score for this row in the result set * Get the score for this row in the result set
* *
* @return * @return Returns the score for this row in the resultset
*/ */
public float getScore(); // Score is score + rank + potentially other public float getScore(); // Score is score + rank + potentially other
// stuff // stuff
@@ -75,26 +77,25 @@ public interface ResultSetRow
/** /**
* Get the containing result set * Get the containing result set
* *
* @return * @return Returns the containing resultset
*/ */
public ResultSet getResultSet(); public ResultSet getResultSet();
/** /**
* Return the QName of the node in the context in which it was found. * @return Returns the name of the child association leading down to the
* @return * node represented by this row
*/ */
public QName getQName(); public QName getQName();
/** /**
* Get the position of this row in the containing set. * Get the position of this row in the containing set.
* @return *
* @return Returns the position of this row in the containing resultset
*/ */
public int getIndex(); public int getIndex();
/** /**
* Return the child assoc ref for this row * @return Returns the child assoc ref for this row
* @return
*/ */
public ChildAssociationRef getChildAssocRef(); public ChildAssociationRef getChildAssocRef();

View File

@@ -86,8 +86,8 @@ public interface AuthenticationService
* Carry out an authentication attempt. If successful the user is set to the current user. * Carry out an authentication attempt. If successful the user is set to the current user.
* The current user is a part of the thread context. * The current user is a part of the thread context.
* *
* @param userName * @param userName the username
* @param password * @param password the passowrd
* @throws AuthenticationException * @throws AuthenticationException
*/ */
public void authenticate(String userName, char[] password) throws AuthenticationException; public void authenticate(String userName, char[] password) throws AuthenticationException;
@@ -99,6 +99,14 @@ public interface AuthenticationService
*/ */
public void authenticateAsGuest() throws AuthenticationException; public void authenticateAsGuest() throws AuthenticationException;
/**
* Check if the given authentication exists.
*
* @param userName the username
* @return Returns <tt>true</tt> if the authentication exists
*/
public boolean authenticationExists(String userName);
/** /**
* Get the name of the currently authenticated user. * Get the name of the currently authenticated user.
* *

View File

@@ -48,7 +48,13 @@ public abstract class TestWithUserUtils extends BaseSpringTest
NodeRef rootNodeRef, NodeRef rootNodeRef,
NodeService nodeService, NodeService nodeService,
AuthenticationService authenticationService) AuthenticationService authenticationService)
{ {
// ignore if the user's authentication already exists
if (authenticationService.authenticationExists(userName))
{
// ignore
return;
}
QName children = ContentModel.ASSOC_CHILDREN; QName children = ContentModel.ASSOC_CHILDREN;
QName system = QName.createQName(NamespaceService.SYSTEM_MODEL_1_0_URI, "system"); QName system = QName.createQName(NamespaceService.SYSTEM_MODEL_1_0_URI, "system");
QName container = ContentModel.TYPE_CONTAINER; QName container = ContentModel.TYPE_CONTAINER;
@@ -59,7 +65,7 @@ public abstract class TestWithUserUtils extends BaseSpringTest
HashMap<QName, Serializable> properties = new HashMap<QName, Serializable>(); HashMap<QName, Serializable> properties = new HashMap<QName, Serializable>();
properties.put(ContentModel.PROP_USERNAME, userName); properties.put(ContentModel.PROP_USERNAME, userName);
NodeRef goodUserPerson = nodeService.createNode(typesNodeRef, children, ContentModel.TYPE_PERSON, container, properties).getChildRef(); nodeService.createNode(typesNodeRef, children, ContentModel.TYPE_PERSON, container, properties);
// Create the users // Create the users