use of org.alfresco.service.transaction.TransactionService in project alfresco-remote-api by Alfresco.
the class AbstractContextTest method setUp.
@SuppressWarnings("unchecked")
@Before
public void setUp() throws Exception {
Map<String, Object> entityResourceBeans = applicationContext.getBeansWithAnnotation(EntityResource.class);
Map<String, Object> relationResourceBeans = applicationContext.getBeansWithAnnotation(RelationshipResource.class);
locator.setDictionary(ResourceDictionaryBuilder.build(entityResourceBeans.values(), relationResourceBeans.values()));
AbstractResourceWebScript executor = (AbstractResourceWebScript) applicationContext.getBean("executorOfGets");
AbstractResourceWebScript postExecutor = (AbstractResourceWebScript) applicationContext.getBean("executorOfPost");
AbstractResourceWebScript putExecutor = (AbstractResourceWebScript) applicationContext.getBean("executorOfPut");
AbstractResourceWebScript deleteExecutor = (AbstractResourceWebScript) applicationContext.getBean("executorOfDelete");
// Mock transaction service
TransactionService transerv = mock(TransactionService.class);
RetryingTransactionHelper tHelper = mock(RetryingTransactionHelper.class);
when(transerv.getRetryingTransactionHelper()).thenReturn(tHelper);
when(tHelper.doInTransaction(any(RetryingTransactionHelper.RetryingTransactionCallback.class), anyBoolean(), anyBoolean())).thenAnswer(new Answer<Object>() {
@SuppressWarnings("rawtypes")
@Override
public Object answer(InvocationOnMock invocation) throws Throwable {
Object[] args = invocation.getArguments();
RetryingTransactionHelper.RetryingTransactionCallback cb = (RetryingTransactionHelper.RetryingTransactionCallback) args[0];
return cb.execute();
}
});
executor.setTransactionService(transerv);
postExecutor.setTransactionService(transerv);
putExecutor.setTransactionService(transerv);
deleteExecutor.setTransactionService(transerv);
}
use of org.alfresco.service.transaction.TransactionService in project alfresco-remote-api by Alfresco.
the class TestEnterpriseAtomPubTCK method setup.
@Before
public void setup() throws Exception {
JettyComponent jetty = getTestFixture().getJettyComponent();
final SearchService searchService = (SearchService) jetty.getApplicationContext().getBean("searchService");
;
final NodeService nodeService = (NodeService) jetty.getApplicationContext().getBean("nodeService");
final FileFolderService fileFolderService = (FileFolderService) jetty.getApplicationContext().getBean("fileFolderService");
final NamespaceService namespaceService = (NamespaceService) jetty.getApplicationContext().getBean("namespaceService");
final TransactionService transactionService = (TransactionService) jetty.getApplicationContext().getBean("transactionService");
final String name = "abc" + System.currentTimeMillis();
transactionService.getRetryingTransactionHelper().doInTransaction(new RetryingTransactionCallback<Void>() {
@Override
public Void execute() throws Throwable {
AuthenticationUtil.setFullyAuthenticatedUser(AuthenticationUtil.getAdminUserName());
Repository repositoryHelper = (Repository) jetty.getApplicationContext().getBean("repositoryHelper");
NodeRef companyHome = repositoryHelper.getCompanyHome();
fileFolderService.create(companyHome, name, ContentModel.TYPE_FOLDER).getNodeRef();
return null;
}
}, false, true);
int port = jetty.getPort();
Map<String, String> cmisParameters = new HashMap<String, String>();
cmisParameters.put(TestParameters.DEFAULT_RELATIONSHIP_TYPE, "R:cm:replaces");
cmisParameters.put(TestParameters.DEFAULT_TEST_FOLDER_PARENT, "/" + name);
clientContext = new OpenCMISClientContext(BindingType.ATOMPUB, MessageFormat.format(CMIS_URL, "localhost", String.valueOf(port), "alfresco"), "admin", "admin", cmisParameters, jetty.getApplicationContext());
overrideVersionableAspectProperties(jetty.getApplicationContext());
}
Aggregations