mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
26059: ALF-5900 - IMAP creates winmail.dat in attachment folder (Add support for Microsoft Transport Neutral Encapsulation Format.) - added attachment extraction for TNEF documents - goodbye winmail.dat ! 26063: javadoc for imap. 26088: ALF-7408 - addition of commons-net for ftp client library. First test of end to end ftp. Just a simple test of connection now, will be followed by more detailed tests. 26176: ALF-7408 - FTP tests + disabled failing test case for ALF-7618 26180: ALF-7618 - correction of unit test error. 26188: ALF-7618 - added a test of paths 26229: Added back simple '\~.*' pattern 26288: ALF-7676 - Test to stress different user rights. - FTPServerTest.testTwoUserUpdate added for the FTP server. 26304: Corrected spelling name in private class. 26408: addming minimal package infos. 26416: ALF-5082 / ALF-2183 / ALF-4448 - When guessing the mimetype for a file, add the option to supply a ContentReader to enhance the accuracy. Enable this for a few key places that do mimetype guessing, which should avoid issues for files with the wrong extension (either renamed accidently, or for .TMP) 26433: Re-order the mimetype guess step to ensure that the Content Reader is always valid 26440: Added another test for word 2003 save as. 26441: Test resource for ContentDiskDriver 26446: ALF-5082 - Back out a FileFolderService change to mimetype guessing, which had broken things, pending a better way to do it with ContentWriter 26490: Small change for ContentDiskDriverTes.fileExists. Leaky transaction causing problems in automated build. 26497: ContentDiskDriver - commented out two of the problematic leaky transaction tests. 26503: Add new interface methods + documentation for asking a ContentWriter to guess the mimetype and encoding for you. (Code will be migrated from places that currently do this themselves later) 26504: Add an extension interface in the DataModel project for some of the extra ContentReader methods that FileContentReader provides 26505: When ContentWriter.putContent(String) is called with no encoding specified, record what the system default encoding was that was used. (Prevents issues if the system default is ever changed) 26509: When calling Tika to do file detection, if we have a file based reader then give Tika the File rather than an InputStream 26522: More debug logging while debugging ALF-5260 26546: Have one copy of the Tika Config in spring, rather than several places fetching their own copy of the default one (either explicitly or implicitly). 26522: More debug logging while diagnosing ALF-5260 26548: Add another mimetype check - ensures that truncated/corrup container files which can't be fully processed can still get the container type without failure 26549: Implement the mimetype and encoding guessers on ContentWriter (either immediately or as a listener, as required), and update FileFolderServer to make use of this (+test this) 26553: Replace explicit mimetype and encoding guess calls with ContentWriter requests to have the work done 26554: Replace explicit mimetype and encoding guess calls with ContentWriter requests to have the work done 26579: Switch the transformer to use Tika git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28224 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
583 lines
23 KiB
Java
583 lines
23 KiB
Java
/*
|
||
* Copyright (C) 2005-2010 Alfresco Software Limited.
|
||
*
|
||
* This file is part of Alfresco
|
||
*
|
||
* Alfresco is free software: you can redistribute it and/or modify
|
||
* it under the terms of the GNU Lesser General Public License as published by
|
||
* the Free Software Foundation, either version 3 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* Alfresco is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU Lesser General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU Lesser General Public License
|
||
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
||
*/
|
||
package org.alfresco.repo.imap;
|
||
|
||
import java.io.FileInputStream;
|
||
import java.io.IOException;
|
||
import java.io.InputStream;
|
||
import java.io.Serializable;
|
||
import java.util.LinkedList;
|
||
import java.util.List;
|
||
import java.util.Map;
|
||
import java.util.Properties;
|
||
|
||
import javax.mail.Flags;
|
||
import javax.mail.Session;
|
||
import javax.mail.internet.MimeMessage;
|
||
import javax.transaction.UserTransaction;
|
||
|
||
import junit.framework.TestCase;
|
||
|
||
import org.alfresco.error.AlfrescoRuntimeException;
|
||
import org.alfresco.model.ContentModel;
|
||
import org.alfresco.model.ImapModel;
|
||
import org.alfresco.repo.imap.AlfrescoImapConst.ImapViewMode;
|
||
import org.alfresco.repo.importer.ACPImportPackageHandler;
|
||
import org.alfresco.repo.management.subsystems.ChildApplicationContextFactory;
|
||
import org.alfresco.repo.model.filefolder.FileFolderServiceImpl;
|
||
import org.alfresco.repo.node.integrity.IntegrityChecker;
|
||
import org.alfresco.repo.security.authentication.AuthenticationUtil;
|
||
import org.alfresco.repo.security.permissions.AccessDeniedException;
|
||
import org.alfresco.service.ServiceRegistry;
|
||
import org.alfresco.service.cmr.model.FileFolderService;
|
||
import org.alfresco.service.cmr.model.FileInfo;
|
||
import org.alfresco.service.cmr.repository.ContentWriter;
|
||
import org.alfresco.service.cmr.repository.NodeRef;
|
||
import org.alfresco.service.cmr.repository.NodeService;
|
||
import org.alfresco.service.cmr.repository.StoreRef;
|
||
import org.alfresco.service.cmr.search.SearchService;
|
||
import org.alfresco.service.cmr.security.MutableAuthenticationService;
|
||
import org.alfresco.service.cmr.security.PermissionService;
|
||
import org.alfresco.service.cmr.security.PersonService;
|
||
import org.alfresco.service.cmr.view.ImporterService;
|
||
import org.alfresco.service.cmr.view.Location;
|
||
import org.alfresco.service.namespace.NamespaceService;
|
||
import org.alfresco.service.namespace.QName;
|
||
import org.alfresco.service.transaction.TransactionService;
|
||
import org.alfresco.util.ApplicationContextHelper;
|
||
import org.alfresco.util.PropertyMap;
|
||
import org.alfresco.util.config.RepositoryFolderConfigBean;
|
||
import org.springframework.context.ApplicationContext;
|
||
import org.springframework.core.io.ClassPathResource;
|
||
|
||
/**
|
||
* Unit test for ImapServiceImpl
|
||
*/
|
||
public class ImapServiceImplTest extends TestCase
|
||
{
|
||
|
||
private static final String USER_NAME = "admin";
|
||
private static final String USER_PASSWORD = "admin";
|
||
|
||
private static final String TEST_IMAP_FOLDER_NAME = "aaa";
|
||
|
||
private static final String MAILBOX_NAME_A = "mailbox_a";
|
||
private static final String MAILBOX_NAME_B = "mailbox_b";
|
||
private static final String MAILBOX_PATTERN = "mailbox*";
|
||
private static final String FOLDER_PATTERN = "___-___folder*";
|
||
private static final String FILE_PATTERN = "___-___file*";
|
||
|
||
private static ApplicationContext ctx = ApplicationContextHelper.getApplicationContext();
|
||
private TransactionService transactionService;
|
||
private NodeService nodeService;
|
||
private ImporterService importerService;
|
||
private PersonService personService;
|
||
private MutableAuthenticationService authenticationService;
|
||
private PermissionService permissionService;
|
||
private SearchService searchService;
|
||
private NamespaceService namespaceService;
|
||
private FileFolderService fileFolderService;
|
||
|
||
private AlfrescoImapUser user;
|
||
private ImapService imapService;
|
||
private UserTransaction txn;
|
||
|
||
private NodeRef testImapFolderNodeRef;
|
||
private Flags flags;
|
||
|
||
String anotherUserName;
|
||
|
||
|
||
@Override
|
||
public void setUp() throws Exception
|
||
{
|
||
ServiceRegistry serviceRegistry = (ServiceRegistry) ctx.getBean("ServiceRegistry");
|
||
transactionService = serviceRegistry.getTransactionService();
|
||
nodeService = serviceRegistry.getNodeService();
|
||
importerService = serviceRegistry.getImporterService();
|
||
personService = serviceRegistry.getPersonService();
|
||
authenticationService = serviceRegistry.getAuthenticationService();
|
||
permissionService = serviceRegistry.getPermissionService();
|
||
imapService = serviceRegistry.getImapService();
|
||
searchService = serviceRegistry.getSearchService();
|
||
namespaceService = serviceRegistry.getNamespaceService();
|
||
fileFolderService = serviceRegistry.getFileFolderService();
|
||
|
||
|
||
flags = new Flags();
|
||
flags.add(Flags.Flag.SEEN);
|
||
flags.add(Flags.Flag.FLAGGED);
|
||
flags.add(Flags.Flag.ANSWERED);
|
||
flags.add(Flags.Flag.DELETED);
|
||
|
||
// start the transaction
|
||
txn = transactionService.getUserTransaction();
|
||
txn.begin();
|
||
authenticationService.authenticate(USER_NAME, USER_PASSWORD.toCharArray());
|
||
|
||
// downgrade integrity
|
||
IntegrityChecker.setWarnInTransaction();
|
||
|
||
anotherUserName = "user" + System.currentTimeMillis();
|
||
|
||
PropertyMap testUser = new PropertyMap();
|
||
testUser.put(ContentModel.PROP_USERNAME, anotherUserName);
|
||
testUser.put(ContentModel.PROP_FIRSTNAME, anotherUserName);
|
||
testUser.put(ContentModel.PROP_LASTNAME, anotherUserName);
|
||
testUser.put(ContentModel.PROP_EMAIL, anotherUserName + "@alfresco.com");
|
||
testUser.put(ContentModel.PROP_JOBTITLE, "jobTitle");
|
||
|
||
personService.createPerson(testUser);
|
||
|
||
// create the ACEGI Authentication instance for the new user
|
||
authenticationService.createAuthentication(anotherUserName, anotherUserName.toCharArray());
|
||
|
||
user = new AlfrescoImapUser(anotherUserName + "@alfresco.com", anotherUserName, anotherUserName);
|
||
|
||
String storePath = "workspace://SpacesStore";
|
||
String companyHomePathInStore = "/app:company_home";
|
||
|
||
StoreRef storeRef = new StoreRef(storePath);
|
||
|
||
NodeRef storeRootNodeRef = nodeService.getRootNode(storeRef);
|
||
|
||
List<NodeRef> nodeRefs = searchService.selectNodes(storeRootNodeRef, companyHomePathInStore, null, namespaceService, false);
|
||
NodeRef companyHomeNodeRef = nodeRefs.get(0);
|
||
|
||
|
||
|
||
ChildApplicationContextFactory imap = (ChildApplicationContextFactory) ctx.getBean("imap");
|
||
ApplicationContext imapCtx = imap.getApplicationContext();
|
||
ImapServiceImpl imapServiceImpl = (ImapServiceImpl)imapCtx.getBean("imapService");
|
||
|
||
// Creating IMAP test folder for IMAP root
|
||
LinkedList<String> folders = new LinkedList<String>();
|
||
folders.add(TEST_IMAP_FOLDER_NAME);
|
||
FileFolderServiceImpl.makeFolders(fileFolderService, companyHomeNodeRef, folders, ContentModel.TYPE_FOLDER);
|
||
|
||
// Setting IMAP root
|
||
RepositoryFolderConfigBean imapHome = new RepositoryFolderConfigBean();
|
||
imapHome.setStore(storePath);
|
||
imapHome.setRootPath(companyHomePathInStore);
|
||
imapHome.setFolderPath(TEST_IMAP_FOLDER_NAME);
|
||
imapServiceImpl.setImapHome(imapHome);
|
||
|
||
// Starting IMAP
|
||
imapServiceImpl.startup();
|
||
|
||
nodeRefs = searchService.selectNodes(storeRootNodeRef,
|
||
companyHomePathInStore + "/" + NamespaceService.CONTENT_MODEL_PREFIX + ":" + TEST_IMAP_FOLDER_NAME,
|
||
null,
|
||
namespaceService,
|
||
false);
|
||
testImapFolderNodeRef = nodeRefs.get(0);
|
||
|
||
|
||
/*
|
||
* Importing test folders:
|
||
*
|
||
* Test folder contains: "___-___folder_a"
|
||
*
|
||
* "___-___folder_a" contains: "___-___folder_a_a",
|
||
* "___-___file_a",
|
||
* "Message_485.eml" (this is IMAP Message)
|
||
*
|
||
* "___-___folder_a_a" contains: "____-____file_a_a"
|
||
*
|
||
*/
|
||
importInternal("imap/imapservice_test_folder_a.acp", testImapFolderNodeRef);
|
||
|
||
reauthenticate(anotherUserName, anotherUserName);
|
||
}
|
||
|
||
public void tearDown() throws Exception
|
||
{
|
||
try
|
||
{
|
||
txn.rollback();
|
||
}
|
||
catch (Throwable e)
|
||
{
|
||
e.printStackTrace();
|
||
}
|
||
}
|
||
|
||
private void importInternal(String acpName, NodeRef space)
|
||
throws IOException
|
||
{
|
||
ClassPathResource acpResource = new ClassPathResource(acpName);
|
||
ACPImportPackageHandler acpHandler = new ACPImportPackageHandler(acpResource.getFile(), null);
|
||
Location importLocation = new Location(space);
|
||
importerService.importView(acpHandler, importLocation, null, null);
|
||
}
|
||
|
||
private boolean checkMailbox(AlfrescoImapUser user, String mailboxName)
|
||
{
|
||
AlfrescoImapFolder mailFolder = (AlfrescoImapFolder)imapService.getFolder(user, mailboxName);
|
||
|
||
if (mailFolder.getFolderInfo() == null)
|
||
{
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
|
||
private boolean checkSubscribedMailbox(AlfrescoImapUser user, String mailboxName)
|
||
{
|
||
List<AlfrescoImapFolder> aifs = imapService.listSubscribedMailboxes(user, mailboxName);
|
||
boolean present = false;
|
||
for (AlfrescoImapFolder aif : aifs)
|
||
{
|
||
if (aif.getName().equals(mailboxName))
|
||
{
|
||
present = true;
|
||
break;
|
||
}
|
||
}
|
||
return present;
|
||
}
|
||
|
||
private void reauthenticate(String name, String password)
|
||
{
|
||
authenticationService.invalidateTicket(authenticationService.getCurrentTicket());
|
||
authenticationService.clearCurrentSecurityContext();
|
||
authenticationService.authenticate(name, password.toCharArray());
|
||
}
|
||
|
||
public void testGetFolder() throws Exception
|
||
{
|
||
imapService.createMailbox(user, MAILBOX_NAME_A);
|
||
assertTrue(checkMailbox(user, MAILBOX_NAME_A));
|
||
}
|
||
|
||
public void testListMailbox() throws Exception
|
||
{
|
||
imapService.createMailbox(user, MAILBOX_NAME_A);
|
||
imapService.createMailbox(user, MAILBOX_NAME_B);
|
||
List<AlfrescoImapFolder> mf = imapService.listMailboxes(user, MAILBOX_PATTERN);
|
||
assertEquals(2, mf.size());
|
||
|
||
boolean foundA = false;
|
||
boolean foundB = false;
|
||
|
||
for(AlfrescoImapFolder folder : mf)
|
||
{
|
||
if(MAILBOX_NAME_A.equals(folder.getName()))
|
||
{
|
||
foundA = true;
|
||
}
|
||
if(MAILBOX_NAME_B.equals(folder.getName()))
|
||
{
|
||
foundB = true;
|
||
}
|
||
}
|
||
|
||
assertTrue("folder A found", foundA);
|
||
assertTrue("folder B found", foundB);
|
||
|
||
mf = imapService.listMailboxes(user, MAILBOX_PATTERN);
|
||
assertEquals("can't repeat the listing of folders", 2, mf.size());
|
||
|
||
mf = imapService.listMailboxes(user, MAILBOX_PATTERN);
|
||
assertEquals("can't repeat the listing of folders", 2, mf.size());
|
||
|
||
/**
|
||
* The new mailboxes should be subscribed?
|
||
*/
|
||
List<AlfrescoImapFolder> aif = imapService.listSubscribedMailboxes(user, MAILBOX_PATTERN);
|
||
assertEquals("not subscribed to two mailboxes", 2, aif.size());
|
||
|
||
/**
|
||
* Unsubscribe to one of the mailboxes.
|
||
*/
|
||
imapService.unsubscribe(user, MAILBOX_NAME_B);
|
||
List<AlfrescoImapFolder> aif2 = imapService.listSubscribedMailboxes(user, MAILBOX_PATTERN);
|
||
assertEquals("not subscribed to one mailbox", 1, aif2.size());
|
||
}
|
||
|
||
public void testListSubscribedMailbox() throws Exception
|
||
{
|
||
imapService.createMailbox(user, MAILBOX_NAME_A);
|
||
imapService.createMailbox(user, MAILBOX_NAME_B);
|
||
imapService.subscribe(user, MAILBOX_NAME_A);
|
||
imapService.subscribe(user, MAILBOX_NAME_B);
|
||
List<AlfrescoImapFolder> aif = imapService.listSubscribedMailboxes(user, MAILBOX_PATTERN);
|
||
assertEquals(aif.size(), 2);
|
||
|
||
assertTrue("Can't subscribe mailbox A", checkSubscribedMailbox(user, MAILBOX_NAME_A));
|
||
assertTrue("Can't subscribe mailbox B", checkSubscribedMailbox(user, MAILBOX_NAME_B));
|
||
}
|
||
|
||
public void testCreateMailbox() throws Exception
|
||
{
|
||
imapService.createMailbox(user, MAILBOX_NAME_A);
|
||
assertTrue("Mailbox isn't created", checkMailbox(user, MAILBOX_NAME_A));
|
||
}
|
||
|
||
public void testDuplicateMailboxes() throws Exception
|
||
{
|
||
imapService.createMailbox(user, MAILBOX_NAME_A);
|
||
try
|
||
{
|
||
imapService.createMailbox(user, MAILBOX_NAME_A);
|
||
fail("Duplicate Mailbox was created");
|
||
}
|
||
catch (AlfrescoRuntimeException e)
|
||
{
|
||
// expected
|
||
}
|
||
|
||
}
|
||
|
||
public void testRenameMailbox() throws Exception
|
||
{
|
||
imapService.createMailbox(user, MAILBOX_NAME_A);
|
||
imapService.renameMailbox(user, MAILBOX_NAME_A, MAILBOX_NAME_B);
|
||
assertFalse("Can't rename mailbox", checkMailbox(user, MAILBOX_NAME_A));
|
||
assertTrue("Can't rename mailbox", checkMailbox(user, MAILBOX_NAME_B));
|
||
}
|
||
|
||
public void testRenameMailboxDuplicate() throws Exception
|
||
{
|
||
imapService.createMailbox(user, MAILBOX_NAME_A);
|
||
imapService.createMailbox(user, MAILBOX_NAME_B);
|
||
try
|
||
{
|
||
imapService.renameMailbox(user, MAILBOX_NAME_A, MAILBOX_NAME_B);
|
||
fail("Mailbox was renamed to existing one but shouldn't");
|
||
}
|
||
catch (AlfrescoRuntimeException e)
|
||
{
|
||
// expected
|
||
}
|
||
}
|
||
|
||
public void testDeleteMailbox() throws Exception
|
||
{
|
||
imapService.createMailbox(user, MAILBOX_NAME_B);
|
||
imapService.deleteMailbox(user, MAILBOX_NAME_B);
|
||
assertFalse("Can't delete mailbox", checkMailbox(user, MAILBOX_NAME_B));
|
||
}
|
||
|
||
// public void testSearchFoldersInArchive() throws Exception
|
||
// {
|
||
// List<FileInfo> fi = imapService.searchFolders(testImapFolderNodeRef, FOLDER_PATTERN, true, ImapViewMode.ARCHIVE);
|
||
// assertNotNull("Can't find folders in Archive Mode", fi);
|
||
// assertEquals("Can't find folders in Archive Mode", fi.size(), 2);
|
||
//
|
||
// fi = imapService.searchFolders(testImapFolderNodeRef, FOLDER_PATTERN, false, ImapViewMode.ARCHIVE);
|
||
// assertNotNull("Can't find folders in Archive Mode", fi);
|
||
// assertEquals("Can't find folders in Archive Mode", fi.size(), 1);
|
||
// }
|
||
//
|
||
// public void testSearchFoldersInVirtual() throws Exception
|
||
// {
|
||
// List<FileInfo> fi = imapService.searchFolders(testImapFolderNodeRef, FOLDER_PATTERN, true, ImapViewMode.VIRTUAL);
|
||
// assertNotNull("Can't find folders in Virtual Mode", fi);
|
||
// assertEquals("Can't find folders in Virtual Mode", fi.size(), 2);
|
||
//
|
||
// fi = imapService.searchFolders(testImapFolderNodeRef, FOLDER_PATTERN, false, ImapViewMode.VIRTUAL);
|
||
// assertNotNull("Can't find folders in Virtual Mode", fi);
|
||
// assertEquals("Can't find folders in Virtual Mode", fi.size(), 1);
|
||
// }
|
||
//
|
||
// public void testSearchFoldersInMixed() throws Exception
|
||
// {
|
||
// List<FileInfo> fi = imapService.searchFolders(testImapFolderNodeRef, FOLDER_PATTERN, true, ImapViewMode.MIXED);
|
||
// assertNotNull("Can't find folders in Mixed Mode", fi);
|
||
// assertEquals("Can't find folders in Mixed Mode", fi.size(), 2);
|
||
//
|
||
// fi = imapService.searchFolders(testImapFolderNodeRef, FOLDER_PATTERN, false, ImapViewMode.MIXED);
|
||
// assertNotNull("Can't find folders in Mixed Mode", fi);
|
||
// assertEquals("Can't find folders in Mixed Mode", fi.size(), 1);
|
||
// }
|
||
|
||
// public void testSearchFiles() throws Exception
|
||
// {
|
||
// List<FileInfo> fi = imapService.searchFiles(testImapFolderNodeRef, FILE_PATTERN, true);
|
||
// assertNotNull(fi);
|
||
// assertTrue(fi.size() > 0);
|
||
// }
|
||
//
|
||
// public void testSearchMails() throws Exception
|
||
// {
|
||
// List<FileInfo> fi = imapService.searchMails(testImapFolderNodeRef, ImapViewMode.MIXED);
|
||
// assertNotNull(fi);
|
||
// assertTrue(fi.size() > 0);
|
||
// }
|
||
|
||
public void testSubscribe() throws Exception
|
||
{
|
||
imapService.createMailbox(user, MAILBOX_NAME_A);
|
||
|
||
imapService.subscribe(user, MAILBOX_NAME_A);
|
||
assertTrue("Can't subscribe mailbox", checkSubscribedMailbox(user, MAILBOX_NAME_A));
|
||
}
|
||
|
||
public void testUnsubscribe() throws Exception
|
||
{
|
||
imapService.createMailbox(user, MAILBOX_NAME_A);
|
||
imapService.subscribe(user, MAILBOX_NAME_A);
|
||
imapService.unsubscribe(user, MAILBOX_NAME_A);
|
||
// TODO MER 21/05/2010 : line below looks like a bug to me.
|
||
assertFalse("Can't unsubscribe mailbox", checkSubscribedMailbox(user, MAILBOX_NAME_A));
|
||
}
|
||
|
||
private void setFlags(FileInfo messageFileInfo) throws Exception
|
||
{
|
||
imapService.setFlags(messageFileInfo, flags, true);
|
||
NodeRef messageNodeRef = messageFileInfo.getNodeRef();
|
||
Map<QName, Serializable> props = nodeService.getProperties(messageNodeRef);
|
||
|
||
assertTrue("Can't set SEEN flag", props.containsKey(ImapModel.PROP_FLAG_SEEN));
|
||
assertTrue("Can't set FLAGGED flag", props.containsKey(ImapModel.PROP_FLAG_FLAGGED));
|
||
assertTrue("Can't set ANSWERED flag", props.containsKey(ImapModel.PROP_FLAG_ANSWERED));
|
||
assertTrue("Can't set DELETED flag", props.containsKey(ImapModel.PROP_FLAG_DELETED));
|
||
}
|
||
|
||
public void testSetFlags() throws Exception
|
||
{
|
||
List<FileInfo> fis = imapService.searchMails(testImapFolderNodeRef, ImapViewMode.ARCHIVE);
|
||
if (fis != null && fis.size() > 0)
|
||
{
|
||
FileInfo messageFileInfo = fis.get(0);
|
||
try
|
||
{
|
||
setFlags(messageFileInfo);
|
||
fail("Can't set flags");
|
||
}
|
||
catch (Exception e)
|
||
{
|
||
if (e instanceof AccessDeniedException)
|
||
{
|
||
// expected
|
||
}
|
||
else
|
||
{
|
||
throw e;
|
||
}
|
||
}
|
||
|
||
reauthenticate(USER_NAME, USER_PASSWORD);
|
||
|
||
permissionService.setPermission(testImapFolderNodeRef, anotherUserName, PermissionService.WRITE, true);
|
||
|
||
reauthenticate(anotherUserName, anotherUserName);
|
||
|
||
setFlags(messageFileInfo);
|
||
}
|
||
}
|
||
|
||
public void testSetFlag() throws Exception
|
||
{
|
||
List<FileInfo> fis = imapService.searchMails(testImapFolderNodeRef, ImapViewMode.ARCHIVE);
|
||
if (fis != null && fis.size() > 0)
|
||
{
|
||
FileInfo messageFileInfo = fis.get(0);
|
||
|
||
reauthenticate(USER_NAME, USER_PASSWORD);
|
||
|
||
permissionService.setPermission(testImapFolderNodeRef, anotherUserName, PermissionService.WRITE, true);
|
||
|
||
reauthenticate(anotherUserName, anotherUserName);
|
||
|
||
imapService.setFlag(messageFileInfo, Flags.Flag.RECENT, true);
|
||
|
||
Serializable prop = nodeService.getProperty(messageFileInfo.getNodeRef(), ImapModel.PROP_FLAG_RECENT);
|
||
assertNotNull("Can't set RECENT flag", prop);
|
||
}
|
||
}
|
||
|
||
public void testGetFlags() throws Exception
|
||
{
|
||
List<FileInfo> fis = imapService.searchMails(testImapFolderNodeRef, ImapViewMode.ARCHIVE);
|
||
if (fis != null && fis.size() > 0)
|
||
{
|
||
FileInfo messageFileInfo = fis.get(0);
|
||
|
||
reauthenticate(USER_NAME, USER_PASSWORD);
|
||
|
||
permissionService.setPermission(testImapFolderNodeRef, anotherUserName, PermissionService.WRITE, true);
|
||
|
||
imapService.setFlags(messageFileInfo, flags, true);
|
||
|
||
reauthenticate(anotherUserName, anotherUserName);
|
||
|
||
Flags fl = imapService.getFlags(messageFileInfo);
|
||
assertTrue(fl.contains(flags));
|
||
}
|
||
}
|
||
|
||
public void testRenameAccentedMailbox() throws Exception
|
||
{
|
||
String MAILBOX_ACCENTED_NAME_A = "H<EFBFBD>tel";
|
||
String MAILBOX_ACCENTED_NAME_B = "H<EFBFBD>telXX";
|
||
|
||
imapService.createMailbox(user, MAILBOX_ACCENTED_NAME_A);
|
||
imapService.deleteMailbox(user, MAILBOX_ACCENTED_NAME_A);
|
||
|
||
imapService.createMailbox(user, MAILBOX_ACCENTED_NAME_A);
|
||
imapService.renameMailbox(user, MAILBOX_ACCENTED_NAME_A, MAILBOX_ACCENTED_NAME_B);
|
||
assertFalse("Can't rename mailbox", checkMailbox(user, MAILBOX_ACCENTED_NAME_A));
|
||
assertTrue("Can't rename mailbox", checkMailbox(user, MAILBOX_ACCENTED_NAME_B));
|
||
imapService.deleteMailbox(user, MAILBOX_ACCENTED_NAME_B);
|
||
}
|
||
|
||
/**
|
||
* Test attachment extraction with a TNEF message
|
||
* @throws Exception
|
||
*/
|
||
public void testAttachmentExtraction() throws Exception
|
||
{
|
||
AuthenticationUtil.setRunAsUserSystem();
|
||
/**
|
||
* Load a TNEF message
|
||
*/
|
||
ClassPathResource fileResource = new ClassPathResource("imap/test-tnef-message.eml");
|
||
assertNotNull("unable to find test resource test-tnef-message.eml", fileResource);
|
||
InputStream is = new FileInputStream(fileResource.getFile());
|
||
MimeMessage message = new MimeMessage(Session.getDefaultInstance(new Properties()), is);
|
||
|
||
/**
|
||
* Create a test node containing the message
|
||
*/
|
||
String storePath = "workspace://SpacesStore";
|
||
String companyHomePathInStore = "/app:company_home";
|
||
StoreRef storeRef = new StoreRef(storePath);
|
||
NodeRef storeRootNodeRef = nodeService.getRootNode(storeRef);
|
||
|
||
List<NodeRef> nodeRefs = searchService.selectNodes(storeRootNodeRef, companyHomePathInStore, null, namespaceService, false);
|
||
NodeRef companyHomeNodeRef = nodeRefs.get(0);
|
||
|
||
FileInfo f1 = fileFolderService.create(companyHomeNodeRef, "ImapServiceImplTest", ContentModel.TYPE_FOLDER);
|
||
FileInfo d2 = fileFolderService.create(f1.getNodeRef(), "ImapServiceImplTest", ContentModel.TYPE_FOLDER);
|
||
FileInfo f2 = fileFolderService.create(f1.getNodeRef(), "test-tnef-message.eml", ContentModel.TYPE_CONTENT);
|
||
|
||
ContentWriter writer = fileFolderService.getWriter(f2.getNodeRef());
|
||
writer.putContent(new FileInputStream(fileResource.getFile()));
|
||
|
||
NodeRef folder = imapService.extractAttachments(f1.getNodeRef(), f2.getNodeRef(), message);
|
||
assertNotNull(folder);
|
||
|
||
List<FileInfo> files = fileFolderService.listFiles(folder);
|
||
assertTrue("three files not found", files.size() == 3);
|
||
|
||
}
|
||
}
|