Fixes to replication job status handling:

- success, error and cancelled states now correctly reported
- source and target reports now correctly provided for each of above

Changes:
- deprecated TransferService interface, replaced by TransferService2
  - introduces new sync transfer methods
  - new TransferServiceImpl2 class, old TransferServiceImpl delegates to new class
- sync transfer now returns TransferEndEvent
- sync transfer now raises TransferFailureException
- success, error and cancelled events are now end events (raised after report events)
- transfer client handling refactored to support cancel and errors appropriately
  - converted to event loop with polling of server status for all states
  - cancel request may now end with success or error (depending on when cancel requested)
  - extract transfer errors from server
  - only raise exception for errors (cancelled now returns)
  - source and destination reports written for all states
- Added TransferEndEvent interface for end events - reports attached to end event
- replication service fixed to record source and dest reports in error case
- action service fixed to record cancelled state

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@22390 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2010-09-10 14:00:05 +00:00
parent 82955f3ae2
commit 35b2b7a122
25 changed files with 2176 additions and 1492 deletions

View File

@@ -18,8 +18,12 @@
*/
package org.alfresco.repo.transfer;
import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;
import static org.mockito.Matchers.any;
import static org.mockito.Mockito.atLeastOnce;
import static org.mockito.Mockito.doAnswer;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import java.io.File;
import java.io.OutputStream;
@@ -55,7 +59,7 @@ import org.alfresco.service.cmr.transfer.TransferEventSendingSnapshot;
import org.alfresco.service.cmr.transfer.TransferEventSuccess;
import org.alfresco.service.cmr.transfer.TransferException;
import org.alfresco.service.cmr.transfer.TransferProgress;
import org.alfresco.service.cmr.transfer.TransferService;
import org.alfresco.service.cmr.transfer.TransferService2;
import org.alfresco.service.cmr.transfer.TransferTarget;
import org.alfresco.service.cmr.transfer.TransferEvent.TransferState;
import org.alfresco.service.cmr.transfer.TransferProgress.Status;
@@ -74,10 +78,10 @@ public class TransferServiceCallbackTest extends TestCase
private static final String TRANSFER_TARGET_NAME = "TransferServiceImplUnitTest";
private ApplicationContext applicationContext;
private TransferServiceImpl transferServiceImpl;
private TransferServiceImpl2 transferServiceImpl;
private AuthenticationComponent authenticationComponent;
private TransferTransmitter mockedTransferTransmitter;
private TransferService transferService;
private TransferService2 transferService;
private TransactionService transactionService;
private UserTransaction tx;
private Repository repository;
@@ -103,7 +107,7 @@ public class TransferServiceCallbackTest extends TestCase
applicationContext = ApplicationContextHelper.getApplicationContext();
// Get the required services
transferServiceImpl = (TransferServiceImpl) this.applicationContext.getBean("transferService");
transferServiceImpl = (TransferServiceImpl2) this.applicationContext.getBean("transferService2");
transferService = transferServiceImpl;
authenticationComponent = (AuthenticationComponent) applicationContext.getBean("authenticationComponent");
transactionService = (TransactionService) applicationContext.getBean("transactionComponent");
@@ -266,6 +270,14 @@ public class TransferServiceCallbackTest extends TestCase
event.setTransferState(TransferState.COMMITTING);
expectedEvents.add(event);
event = new TransferEventReport();
event.setTransferState(TransferState.COMMITTING);
expectedEvents.add(event);
event = new TransferEventReport();
event.setTransferState(TransferState.COMMITTING);
expectedEvents.add(event);
event = new TransferEventEndState();
event.setTransferState(TransferState.COMMITTING);
expectedEvents.add(event);
@@ -278,12 +290,6 @@ public class TransferServiceCallbackTest extends TestCase
event.setTransferState(TransferState.SUCCESS);
expectedEvents.add(event);
event = new TransferEventReport();
expectedEvents.add(event);
event = new TransferEventReport();
expectedEvents.add(event);
verifyCallback(expectedEvents);
}
@@ -443,6 +449,14 @@ public class TransferServiceCallbackTest extends TestCase
event.setTransferState(TransferState.START);
expectedEvents.add(event);
event = new TransferEventReport();
event.setTransferState(TransferState.START);
expectedEvents.add(event);
event = new TransferEventReport();
event.setTransferState(TransferState.START);
expectedEvents.add(event);
event = new TransferEventEndState();
event.setTransferState(TransferState.START);
expectedEvents.add(event);
@@ -450,15 +464,12 @@ public class TransferServiceCallbackTest extends TestCase
event = new TransferEventEnterState();
event.setTransferState(TransferState.ERROR);
expectedEvents.add(event);
event = new TransferEventError();
event.setTransferState(TransferState.ERROR);
((TransferEventError)event).setException(ex);
expectedEvents.add(event);
event = new TransferEventReport();
expectedEvents.add(event);
verifyCallback(expectedEvents);
}
}