/**
  * Creates a test scenario in which 2 users send each other e-mails
  * to create a conversation. It does the following steps:
  * 1 - User 1 logs in and sends an e-mail;
  * 2 - User 2 logs in and replies the e-mail back to user 1;
  * 3 - User 1 logs in again and re-replies the e-mail back to user 2.
  * At the end of this procedures, there will be the following situation:
  * a) System will be at the login screen and
  * b) User 2 will have a 2 message conversation in his Inbox folder.
  *
  * @param ExpressoLiteTest $test The test case that will create the scenario
  * @param stdObj $params A object containing all the necessary parameters for this scenario.
  * This object must have the following fields.
  * "user1" => login for first user,
  * "password1" => password for first user,
  * "user2" => login for second user,
  * "password1" => password for second user,
  * "mail2" => e-mail address for the second user,
  * "subject" => subject of the e-mails of the conversation
  * "content" => content of the e-mails of the conversation
  */
 public static function create2MessageConversation(ExpressoLiteTest $test, $params)
 {
     //testStart - part one
     $test->doLogin($params->user1, $params->password1);
     $mailPage = new MailPage($test);
     $mailPage->sendMail(array($params->mail2), $params->subject, $params->content);
     $mailPage->clickLogout();
     // Second user
     $test->doLogin($params->user2, $params->password2);
     $mailPage->waitForEmailToArrive($params->subject);
     $mailPage->clickOnHeadlineBySubject($params->subject);
     $widgetMessages = $mailPage->getWidgetMessages();
     $messageUnit = $widgetMessages->getSingleMessageUnitInConversation();
     $messageUnit->clickMenuOptionReply();
     $widgetCompose = $mailPage->getWidgetCompose();
     $widgetCompose->typeMessageBodyBeforeSignature('Reply Content: ' . $params->content);
     $widgetCompose->clickSendMailButton();
     $widgetCompose->waitForAjaxAndAnimations();
     $mailPage->clickLayoutBackButton();
     $mailPage->clickLogout();
     // Re-login of sender
     $test->doLogin($params->user1, $params->password1);
     $reSubject = 'Re: ' . $params->subject;
     $mailPage->waitForEmailToArrive($reSubject);
     $mailPage->clickOnHeadlineBySubject($reSubject);
     $widgetMessages = $mailPage->getWidgetMessages();
     $messageUnit = $widgetMessages->getSingleMessageUnitInConversation();
     $messageUnit->clickMenuOptionReply();
     $widgetCompose = $mailPage->getWidgetCompose();
     $widgetCompose->typeMessageBodyBeforeSignature('Reply of Reply Content: ' . $params->content);
     $widgetCompose->clickSendMailButton();
     $widgetCompose->waitForAjaxAndAnimations();
     $mailPage->clickLayoutBackButton();
     $mailPage->clickLogout();
 }
 /**
  * Overview:
  *
  * This test opens a conversation, selects option "Marcar conversa como lida"
  * in the conversation menu, and then checks if the message was really marked
  * as read.
  *
  * - CTV3-1058
  *   http://comunidadeexpresso.serpro.gov.br/testlink/linkto.php?tprojectPrefix=CTV3&item=testcase&id=CTV3-1058
  */
 public function test_CTV3_1058_MarkReadThreadMail()
 {
     //load test data
     $SENDER_LOGIN = $this->getGlobalValue('user.1.login');
     $SENDER_PASSWORD = $this->getGlobalValue('user.1.password');
     $RECIPIENT_LOGIN = $this->getGlobalValue('user.2.login');
     $RECIPIENT_PASSWORD = $this->getGlobalValue('user.2.password');
     $RECIPIENT_MAIL = $this->getGlobalValue('user.2.email');
     $MAIL_SUBJECT = $this->getTestValue('mail.subject');
     $ORIGINAL_MAIL_CONTENT = $this->getTestValue('original.mail.content');
     TestScenarios::create2MessageConversation($this, (object) array('user1' => $SENDER_LOGIN, 'password1' => $SENDER_PASSWORD, 'user2' => $RECIPIENT_LOGIN, 'password2' => $RECIPIENT_PASSWORD, 'mail2' => $RECIPIENT_MAIL, 'subject' => $MAIL_SUBJECT, 'content' => $ORIGINAL_MAIL_CONTENT));
     $this->doLogin($RECIPIENT_LOGIN, $RECIPIENT_PASSWORD);
     $mailPage = new MailPage($this);
     $mailPage->waitForEmailToArrive($MAIL_SUBJECT);
     $mailPage->clickOnHeadlineBySubject($MAIL_SUBJECT);
     $this->waitForAjaxAndAnimations();
     $widgetMessages = $mailPage->getWidgetMessages();
     $widgetMessages->clickSubjectMenuOptionMarkUnread();
     $mailPage->clickOnHeadlineBySubject($MAIL_SUBJECT);
     $this->waitForAjaxAndAnimations();
     $widgetMessages = $mailPage->getWidgetMessages();
     $widgetMessages->clickSubjectMenuOptionMarkRead();
     $this->waitForAjaxAndAnimations();
     $mailPage->clickOnHeadlineBySubject($MAIL_SUBJECT);
     $headlinesEntry = $mailPage->getHeadlinesEntryBySubject($MAIL_SUBJECT);
     $this->assertEquals(HeadlinesEntry::READ_STATUS, $headlinesEntry->getReadStatus(), 'The message was marked as "Read", but it was not changed');
     $widgetMessages->clickSubjectMenuOptionMarkRead();
     $this->assertAlertTextEquals('Nenhuma mensagem a ser marcada como  lida.', 'System did not show message indicating no message tobe marked as read');
     $this->dismissAlert();
 }
 /**
  * Overview:
  *
  * This tests moves an opened conversation to folder "Modelo", and then
  * checks if the message is no longer present in the Inbox folder, but is
  * present in the target folder.
  *
  * - CTV3-1020
  *   http://comunidadeexpresso.serpro.gov.br/testlink/linkto.php?tprojectPrefix=CTV3&item=testcase&id=CTV3-1020
  *
  */
 public function test_CTV3_1020_Move_Thread_Mail()
 {
     //load test data
     $SENDER_LOGIN = $this->getGlobalValue('user.1.login');
     $SENDER_PASSWORD = $this->getGlobalValue('user.1.password');
     $RECIPIENT_LOGIN = $this->getGlobalValue('user.2.login');
     $RECIPIENT_PASSWORD = $this->getGlobalValue('user.2.password');
     $RECIPIENT_MAIL = $this->getGlobalValue('user.2.email');
     $MAIL_SUBJECT = $this->getTestValue('mail.subject');
     $ORIGINAL_MAIL_CONTENT = $this->getTestValue('original.mail.content');
     TestScenarios::create2MessageConversation($this, (object) array('user1' => $SENDER_LOGIN, 'password1' => $SENDER_PASSWORD, 'user2' => $RECIPIENT_LOGIN, 'password2' => $RECIPIENT_PASSWORD, 'mail2' => $RECIPIENT_MAIL, 'subject' => $MAIL_SUBJECT, 'content' => $ORIGINAL_MAIL_CONTENT));
     $this->doLogin($RECIPIENT_LOGIN, $RECIPIENT_PASSWORD);
     $mailPage = new MailPage($this);
     $mailPage->waitForEmailToArrive($MAIL_SUBJECT);
     $mailPage->clickOnHeadlineBySubject($MAIL_SUBJECT);
     $this->waitForAjaxAndAnimations();
     $widgetMessages = $mailPage->getWidgetMessages();
     $widgetMessages->clickSubjectMenuOptionMove("Modelos");
     $this->waitForAjaxAndAnimations();
     $headlinesEntry = $mailPage->getHeadlinesEntryBySubject($MAIL_SUBJECT);
     $this->assertNull($headlinesEntry, 'Mail was moved, but it was not removed from headlines listing');
     $mailPage->clickOnFolderByName('Modelos');
     $this->waitForAjaxAndAnimations();
     $headlinesEntry = $mailPage->getHeadlinesEntryBySubject($MAIL_SUBJECT);
     $this->assertNotNull($headlinesEntry, 'Mail was moved, but could not be found in the Modelos folder');
     $messages = $widgetMessages->getArrayOfMessageUnitsCurrentConversation();
     $this->assertEquals(2, count($messages), 'Conversation has less messages after it was moved to another folder');
 }
 /**
  * Overview:
  * - This opens a message and then clicks the "Marcar como não lida" options
  *   of the message menu. After that, checks if the message was really marked
  *   as unread and then checks if the system shows the correct message if
  *   the user tries mark them as unread for a second time
  *
  * - CTV3-754
  *   http://comunidadeexpresso.serpro.gov.br/testlink/linkto.php?tprojectPrefix=CTV3&item=testcase&id=CTV3-754
  *
  */
 public function test_CTV3_754_MarkUnreadMail()
 {
     $mailPage = new MailPage($this);
     //load test data
     $MAIL_RECIPENT = $this->getGlobalValue('user.1.email');
     $MAIL_SUBJECT = $this->getTestValue('mail.subject');
     //testStart
     $mailPage->sendMail(array($MAIL_RECIPENT), $MAIL_SUBJECT, 'Marcando como não lido');
     $this->waitForAjaxAndAnimations();
     $mailPage->clickRefreshButton();
     $mailPage->waitForEmailToArrive($MAIL_SUBJECT);
     $mailPage->clickOnHeadlineBySubject($MAIL_SUBJECT);
     $widgetMessages = $mailPage->getWidgetMessages();
     $widgetMessages->getSingleMessageUnitInConversation();
     $mailPage->clickLayoutBackButton();
     $this->waitForAjaxAndAnimations();
     $headlinesEntry = $mailPage->getHeadlinesEntryBySubject($MAIL_SUBJECT);
     $headlinesEntry->toggleCheckbox();
     $mailPage->clickMenuOptionMarkUnread();
     $this->waitForAjaxAndAnimations();
     $headlinesEntry = $mailPage->getHeadlinesEntryBySubject($MAIL_SUBJECT);
     $this->assertEquals(HeadlinesEntry::UNREAD_STATUS, $headlinesEntry->getReadStatus(), 'The message was marked as "Unread", but it was not changed');
     $headlinesEntry->toggleCheckbox();
     $mailPage->clickMenuOptionMarkUnread();
     $this->assertAlertTextEquals('Nenhuma mensagem a ser marcada como não lida.', 'System did not show message indicating no message tobe marked as unread');
     $this->acceptAlert();
 }
 public function test_CTV3_845_Send_Draft()
 {
     $USER_LOGIN = $this->getGlobalValue('user.1.login');
     $USER_PASSWORD = $this->getGlobalValue('user.1.password');
     $RECIPIENT_1_MAIL = $this->getGlobalValue('user.2.email');
     $MAIL_SUBJECT = $this->getTestValue('mail.subject');
     $MAIL_CONTENT = $this->getTestValue('mail.content');
     TestScenarios::createMessageDraft($this, (object) array('senderLogin' => $USER_LOGIN, 'senderPassword' => $USER_PASSWORD, 'recipentMail' => $RECIPIENT_1_MAIL, 'subject' => $MAIL_SUBJECT, 'content' => $MAIL_CONTENT));
     $this->doLogin($USER_LOGIN, $USER_PASSWORD);
     $mailPage = new MailPage($this);
     $mailPage->clickOnFolderByName('Rascunhos');
     $mailPage->clickOnHeadlineBySubject($MAIL_SUBJECT);
     $this->waitForAjaxAndAnimations();
     $widgetCompose = $mailPage->getWidgetCompose();
     $widgetCompose->clickSendMailButton();
     $this->waitForAjaxAndAnimations();
     $this->assertFalse($widgetCompose->isDisplayed(), 'Compose draft window should have been closed, but it is still visible');
     $headlinesEntry = $mailPage->getHeadlinesEntryBySubject($MAIL_SUBJECT);
     $this->assertNull($headlinesEntry, "A mail with subject {$MAIL_SUBJECT} was not sent, but it could be found on Draft folder");
     $mailPage->clickOnFolderByName('Enviados');
     $headlinesEntry = $mailPage->getHeadlinesEntryBySubject($MAIL_SUBJECT);
     $this->assertNotNull($headlinesEntry, "A mail with subject {$MAIL_SUBJECT} was sent, but it could not be found on Sent folder");
 }
 /**
  * Checks the forward e-mail feature. In this test, user 1 sends an e-mail
  * to user 2, who forward to user 3
  *
  * CTV3-758
  * http://comunidadeexpresso.serpro.gov.br/testlink/linkto.php?tprojectPrefix=CTV3&item=testcase&id=CTV3-758
  */
 public function test_CTV3_758_SendReceiveFowardOpenMail()
 {
     //load test data
     $USER_1_LOGIN = $this->getGlobalValue('user.1.login');
     $USER_1_PASSWORD = $this->getGlobalValue('user.1.password');
     $USER_2_LOGIN = $this->getGlobalValue('user.2.login');
     $USER_2_PASSWORD = $this->getGlobalValue('user.2.password');
     $USER_2_MAIL = $this->getGlobalValue('user.2.email');
     $USER_3_LOGIN = $this->getGlobalValue('user.3.login');
     $USER_3_PASSWORD = $this->getGlobalValue('user.3.password');
     $USER_3_MAIL = $this->getGlobalValue('user.3.email');
     $USER_3_BADGE = $this->getGlobalValue('user.3.badge');
     $MAIL_SUBJECT = $this->getTestValue('mail.subject');
     $ORIGINAL_MAIL_CONTENT = $this->getTestValue('original.mail.content');
     $FORWARD_MAIL_CONTENT = $this->getTestValue('forward.mail.content');
     //testStart
     $loginPage = new LoginPage($this);
     $loginPage->doLogin($USER_1_LOGIN, $USER_1_PASSWORD);
     $mailPage = new MailPage($this);
     $mailPage->sendMail(array($USER_2_MAIL), $MAIL_SUBJECT, $ORIGINAL_MAIL_CONTENT);
     $mailPage->clickLogout();
     $loginPage->doLogin($USER_2_LOGIN, $USER_2_PASSWORD);
     $mailPage->waitForEmailToArrive($MAIL_SUBJECT);
     $mailPage->clickOnHeadlineBySubject($MAIL_SUBJECT);
     $widgetMessages = $mailPage->getWidgetMessages();
     $messageUnit = $widgetMessages->getSingleMessageUnitInConversation();
     $messageUnit->clickMenuOptionForward();
     $widgetCompose = $mailPage->getWidgetCompose();
     $FORWARD_SUBJECT = 'Fwd: ' . $MAIL_SUBJECT;
     $widgetCompose->clickOnRecipientField();
     $widgetCompose->type($USER_3_MAIL);
     $widgetCompose->typeEnter();
     $widgetCompose->typeMessageBodyBeforeSignature($FORWARD_MAIL_CONTENT);
     $this->assertEquals(array($USER_3_BADGE), $widgetCompose->getArrayOfCurrentBadges(), 'Forward window did not show the expected recipient');
     $this->assertEquals($FORWARD_SUBJECT, $widgetCompose->getSubject(), 'Forward window did not the expected subject');
     $this->assertContains($ORIGINAL_MAIL_CONTENT, $widgetCompose->getMessageBodyText());
     $widgetCompose->clickSendMailButton();
     $this->waitForAjaxAndAnimations();
     $mailPage->clickLayoutBackButton();
     $this->waitForAjaxAndAnimations();
     $mailPage->clickLogout();
     $loginPage->doLogin($USER_3_LOGIN, $USER_3_PASSWORD);
     $mailPage = new MailPage($this);
     $mailPage->waitForEmailToArrive($FORWARD_SUBJECT);
     $mailPage->clickOnHeadlineBySubject($FORWARD_SUBJECT);
     $widgetMessages = $mailPage->getWidgetMessages();
     $messageUnit = $widgetMessages->getSingleMessageUnitInConversation();
     $this->assertContains($FORWARD_MAIL_CONTENT, $messageUnit->getContent(), 'The forwarded message content was not found in the forward body');
     $this->assertTrue($messageUnit->hasShowQuoteButton(), 'The forwarded message did not show the Show Quote button');
     $messageUnit->clickShowQuoteButton();
     $this->assertContains($ORIGINAL_MAIL_CONTENT, $messageUnit->getQuoteText(), 'The original message content was not found in the mail quote section');
 }
 /**
  * Description:
  *
  * - This test checks the messages within a conversation are being displayed
  *   correctly. It checks if the conversation has the right number of messages
  *   and if the messages contents are correct.
  *
  * - CTV3-1048
  *   http://comunidadeexpresso.serpro.gov.br/testlink/linkto.php?tprojectPrefix=CTV3&item=testcase&id=CTV3-1048
  *
  */
 public function test_CTV3_1048_ReadThreadMail()
 {
     //load test data
     $USER_1_LOGIN = $this->getGlobalValue('user.1.login');
     $USER_1_PASSWORD = $this->getGlobalValue('user.1.password');
     $USER_2_LOGIN = $this->getGlobalValue('user.2.login');
     $USER_2_PASSWORD = $this->getGlobalValue('user.2.password');
     $USER_2_MAIL = $this->getGlobalValue('user.2.email');
     $MAIL_SUBJECT = $this->getTestValue('mail.subject');
     $ORIGINAL_MAIL_CONTENT = $this->getTestValue('original.mail.content');
     $REPLY_SECOND_MAIL_CONTENT = $this->getTestValue('reply.second.mail.content');
     TestScenarios::create2MessageConversation($this, (object) array('user1' => $USER_1_LOGIN, 'password1' => $USER_1_PASSWORD, 'user2' => $USER_2_LOGIN, 'password2' => $USER_2_PASSWORD, 'mail2' => $USER_2_MAIL, 'subject' => $MAIL_SUBJECT, 'content' => $ORIGINAL_MAIL_CONTENT));
     $this->doLogin($USER_2_LOGIN, $USER_2_PASSWORD);
     $mailPage = new MailPage($this);
     $mailPage->waitForEmailToArrive($MAIL_SUBJECT);
     $mailPage->clickOnHeadlineBySubject($MAIL_SUBJECT);
     $widgetMessages = $mailPage->getWidgetMessages();
     $messages = $widgetMessages->getArrayOfMessageUnitsCurrentConversation();
     $this->assertEquals(2, count($messages), 'The number of messages within the conversation does not match what was expected');
     $firstMessage = $messages[0];
     $this->assertFalse($firstMessage->isMessageExpanded(), 'The first message within the conversation was opened, but it shoud have been closed');
     $firstMessage->clickMessageTop();
     $this->assertTrue($firstMessage->isMessageExpanded(), 'The first message in the conversation should have been opened after it was clicked, but it is still closed');
     $this->assertContains($ORIGINAL_MAIL_CONTENT, $firstMessage->getContent(), 'The first message content differs from the expected');
     $secondMessage = $messages[1];
     $this->assertTrue($secondMessage->isMessageExpanded(), 'The second message within the conversation should be opened by default, but it was closed');
     $this->assertContains($REPLY_SECOND_MAIL_CONTENT, $secondMessage->getContent(), 'The second message content differs from the expected');
 }
 /**
  * Overview:
  *
  * - This test checks the deletion of a conversation containing several
  *   e-mails. After creating a conversations, it selects the
  *   "Apagar conversa" option in the subjects menu and then checks if the
  *   trash folder contains the removed message
  *
  * - CTV3-1017
  *   http://comunidadeexpresso.serpro.gov.br/testlink/linkto.php?tprojectPrefix=CTV3&item=testcase&id=CTV3-1017
  */
 public function test_CTV3_1017_Delete_Open_Thread_Mail()
 {
     $USER_1_LOGIN = $this->getGlobalValue('user.1.login');
     $USER_1_PASSWORD = $this->getGlobalValue('user.1.password');
     $USER_2_LOGIN = $this->getGlobalValue('user.2.login');
     $USER_2_PASSWORD = $this->getGlobalValue('user.2.password');
     $USER_2_MAIL = $this->getGlobalValue('user.2.email');
     $MAIL_SUBJECT = $this->getTestValue('mail.subject');
     $MAIL_CONTENT = $this->getTestValue('mail.content');
     TestScenarios::create2MessageConversation($this, (object) array('user1' => $USER_1_LOGIN, 'password1' => $USER_1_PASSWORD, 'user2' => $USER_2_LOGIN, 'password2' => $USER_2_PASSWORD, 'mail2' => $USER_2_MAIL, 'subject' => $MAIL_SUBJECT, 'content' => $MAIL_CONTENT));
     $this->doLogin($USER_2_LOGIN, $USER_2_PASSWORD);
     $mailPage = new MailPage($this);
     $mailPage->waitForEmailToArrive($MAIL_SUBJECT);
     $mailPage->clickOnHeadlineBySubject($MAIL_SUBJECT);
     $widgetMessages = $mailPage->getWidgetMessages();
     $widgetMessages->clickSubjectMenuOptionDelete();
     $this->waitForAjaxAndAnimations();
     $headlinesEntry = $mailPage->getHeadlinesEntryBySubject($MAIL_SUBJECT);
     $this->assertNull($headlinesEntry, 'Mail was deleted, but it was not removed from headlines listing');
     $mailPage->clickOnFolderByName('Lixeira');
     $this->waitForAjaxAndAnimations();
     $headlinesEntry = $mailPage->getHeadlinesEntryBySubject($MAIL_SUBJECT);
     $this->assertNotNull($headlinesEntry, 'Mail was deleted, but could not be found in the trash bin');
 }
 /**
  * Tests sending a simple e-mail,with cc and checking if the e-mail composition
  * screen opens and close as expected. Also checks if the recipients copy receives
  * the e-mail.
  *
  *   CTV3-1052
  *   http://comunidadeexpresso.serpro.gov.br/testlink/linkto.php?tprojectPrefix=CTV3&item=testcase&id=CTV3-1052
  */
 public function test_CTV3_1052_Send_Bcc_Mail()
 {
     $mailPage = new MailPage($this);
     //load test data
     $MAIL_BCC_RECIPIENT = $this->getGlobalValue('user.2.email');
     $MAIL_SENDER = $this->getGlobalValue('user.2.email');
     $MAIL_SUBJECT = $this->getTestValue('mail.subject');
     $MAIL_CONTENT = $this->getTestValue('mail.content');
     //testStart
     $mailPage->clickWriteEmailButton();
     $widgetCompose = $mailPage->getWidgetCompose();
     $this->assertTrue($widgetCompose->isDisplayed(), 'Compose Window should be displayed, but it is not');
     $widgetCompose->clickOnBccToggleButton();
     $this->waitForAjaxAndAnimations();
     $widgetCompose->type($MAIL_BCC_RECIPIENT);
     $widgetCompose->typeEnter();
     $widgetCompose->typeSubject($MAIL_SUBJECT);
     $widgetCompose->typeMessageBodyBeforeSignature($MAIL_CONTENT);
     $widgetCompose->clickSendMailButton();
     $this->waitForAjaxAndAnimations();
     $this->assertFalse($widgetCompose->isDisplayed(), 'Compose Window should have been closed, but it is still visible');
     $mailPage->clickRefreshButton();
     $this->waitForAjaxAndAnimations();
     $mailPage->waitForEmailToArrive($MAIL_SUBJECT);
     $headlinesEntry = $mailPage->clickOnHeadlineBySubject($MAIL_SUBJECT);
     $widgetMessages = $mailPage->getWidgetMessages();
     $messageUnit = $widgetMessages->getSingleMessageUnitInConversation();
     $this->assertContains('(ninguém)', $messageUnit->getToAddresses(), 'The to address content differs from the expected');
     $this->assertFalse($messageUnit->isBccAddressesDisplayed(), 'Bcc tag should not have been displayed, but it was');
     $mailPage->clickLayoutBackButton();
     $this->waitForAjaxAndAnimations();
     $mailPage->clickOnFolderByName('Enviados');
     $this->waitForAjaxAndAnimations();
     $headlinesEntry = $mailPage->getHeadlinesEntryBySubject($MAIL_SUBJECT);
     $this->assertNotNull($headlinesEntry, "A mail with subject {$MAIL_SUBJECT} was sent, but it could not be found on Sent folder");
     $headlinesEntry->click();
     $this->waitForAjaxAndAnimations();
     $widgetMessages = $mailPage->getWidgetMessages();
     $messageUnit = $widgetMessages->getSingleMessageUnitInConversation();
     $this->assertContains('(ninguém)', $messageUnit->getToAddresses(), 'The to address content differs from the expected');
     $this->assertEquals("({$MAIL_SENDER})", $messageUnit->getFromMail(), 'Message sender mail does not match');
     $this->assertContains("{$MAIL_SENDER}", $messageUnit->getBccAddresses(), 'Message bcc recipient mail does not match');
 }