mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ACE-2564: Merged DEV to HEAD (5.0/Cloud)
85938: ACE-2564: Cloud - No task assignment email notification when a task is created by an External User - Run as primary tenant for user to retrieve fromActualUser email property. Add unit test. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@85988 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -79,6 +79,7 @@ public abstract class AbstractMailActionExecuterTest
|
||||
public static AlfrescoPerson BRITISH_USER = null;
|
||||
public static AlfrescoPerson FRENCH_USER = null;
|
||||
public static AlfrescoPerson AUSTRALIAN_USER = null;
|
||||
public static AlfrescoPerson EXTERNAL_USER = null;
|
||||
|
||||
private static String ALFRESCO_EE_USER = "plainUser";
|
||||
|
||||
@@ -527,4 +528,39 @@ public abstract class AbstractMailActionExecuterTest
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* ACE-2564
|
||||
*/
|
||||
@Test
|
||||
public void testSendEmailByExternalUser() throws IOException, MessagingException
|
||||
{
|
||||
final Serializable recipients = (Serializable) Arrays.asList(BRITISH_USER.getUsername());
|
||||
final String subject = "";
|
||||
final String template = "alfresco/templates/mail/test.txt.ftl";
|
||||
|
||||
AuthenticationUtil.pushAuthentication();
|
||||
AuthenticationUtil.setFullyAuthenticatedUser(EXTERNAL_USER.getUsername());
|
||||
|
||||
MimeMessage message = null;
|
||||
try
|
||||
{
|
||||
final String tenantId = getUsersHomeTenant(BRITISH_USER.getUsername());
|
||||
message = TenantUtil.runAsTenant(new TenantRunAsWork<MimeMessage>()
|
||||
{
|
||||
@Override
|
||||
public MimeMessage doWork() throws Exception
|
||||
{
|
||||
return sendMessage(null, recipients, subject, template);
|
||||
}
|
||||
}, tenantId);
|
||||
|
||||
Assert.assertNotNull(message);
|
||||
Assert.assertEquals("Hello Jan 1, 1970", (String) message.getContent());
|
||||
}
|
||||
finally
|
||||
{
|
||||
AuthenticationUtil.popAuthentication();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user