在Alfresco。如何创建临时文件进行测试?

时间:2016-08-17 03:21:13

标签: java junit transactions alfresco

我的想法是在测试中创建一个文件然后消除它,但我的代码失败

我的代码:

 @RunWith(RemoteTestRunner.class)
 @Remote(runnerClass=SpringJUnit4ClassRunner.class)
 @ContextConfiguration("classpath:alfresco/application-context.xml")
 public class FooTest {
   private static final String ADMIN_USER_NAME = "admin";

   @Autowired
   @Qualifier("NodeService")
   protected NodeService nodeService;

   @Autowired
   private FileFolderService fileFolderService;

   @Autowired
   protected Repository repositoryHelper;

   @Test
   public void testCreateTempFile() {
     AuthenticationUtil.setFullyAuthenticatedUser(ADMIN_USER_NAME);

     NodeRef root = repositoryHelper.getSharedHome();

     // create the node
     // this line throw an exception
     FileInfo fileInfo = fileFolderService.create(root,
       "foo.txt", ContentModel.PROP_CONTENT);
     ...
   }
 }

出现以下错误:

  

org.alfresco.error.AlfrescoRuntimeException:07170002交易必须   处于活动状态并且需要同步:线程[main,5,main] at   org.alfresco.util.transaction.TransactionSupportUtil.registerSynchronizations(TransactionSupportUtil.java:188)

交易如何运作?我该如何激活它?

3 个答案:

答案 0 :(得分:4)

为了使用临时文件,alfresco提供了一个实用程序类

<强> org.alfresco.util.TempFileProvider

它具有允许您创建临时文件和目录的所有API。

如果您广泛使用临时文件,您甚至可以考虑使用此utility,它允许您定期清除临时文件。

答案 1 :(得分:2)

您是否尝试过使用@Transactional注释?

@Test
@Transactional
public void testCreateTempFile() {
....

这可以解决您的问题。

答案 2 :(得分:1)

我找到了解决方案:

RetryingTransactionHelper transactionHelper = transactionService.getRetryingTransactionHelper();
final String filename =  "TestSite" + System.currentTimeMillis();

NodeRef noderef = transactionHelper.doInTransaction(new RetryingTransactionCallback<NodeRef>() {
    public NodeRef execute() throws Throwable {
      final NodeRef parent = repositoryHelper.getCompanyHome();
      FileInfo fileInfo = fileFolderService.create(parent, filename, ContentModel.PROP_CONTENT);
      NodeRef node = fileInfo.getNodeRef();

      ContentWriter writer = contentService.getWriter(node, ContentModel.PROP_CONTENT, true);
      writer.setMimetype(MimetypeMap.MIMETYPE_TEXT_PLAIN);
      writer.setEncoding("UTF-8");
      writer.putContent(content);
      return node;
    }
});

在Junit中必须使用事务来创建文件。