Merge pull request #3251 from agh1/empowered-by
[civicrm-core.git] / tests / phpunit / WebTest / Mailing / SpoolTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License along with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 */
26
27 require_once 'CiviTest/CiviSeleniumTestCase.php';
28 require_once 'CiviTest/CiviMailUtils.php';
29 require_once 'ezc/Base/src/ezc_bootstrap.php';
30 require_once 'ezc/autoload/mail_autoload.php';
31 class WebTest_Mailing_SpoolTest extends CiviSeleniumTestCase {
32
33 protected function setUp() {
34 parent::setUp();
35 }
36
37 function testSpooledMailing() {
38
39 $this->webtestLogin();
40
41 // Start spooling mail
42 $mut = new CiviMailUtils($this, true);
43
44 // Add a contact
45 $fname = substr(sha1(rand()), 0, 6);
46 $lname = substr(sha1(rand()), 0, 6);
47 $email = $this->webtestAddContact($fname, $lname, TRUE);
48
49 // Get the contact id of the newly added contact
50 $cid = $this->urlArg('cid');
51
52 // Send an email to the added contact
53 $this->openCiviPage("activity/email/add", "action=add&reset=1&cid={$cid}&selectedChild=activity&atype=3");
54 $this->type('subject', 'test spool');
55 $this->fillRichTextField('html_message', 'Unit tests keep children safe.');
56 $this->click("_qf_Email_upload");
57
58 // Retrieve an ezc mail object version of the email
59 $msg = $mut->getMostRecentEmail('ezc');
60
61 $this->assertNotEmpty($msg, 'Mail message empty or not found.');
62 $this->assertEquals($msg->subject, 'test spool');
63 // should really walk through the 'to' array, but this is legal according to the docs
64 $this->assertContains($email, implode(';', $msg->to), 'Recipient incorrect.');
65
66 $context = new ezcMailPartWalkContext(array(get_class($this), 'mailWalkCallback'));
67 $msg->walkParts($context, $msg);
68
69 /*
70 * Now try a regular activity with cc to assignee
71 */
72 $this->WebtestAddActivity();
73 $msg = $mut->getMostRecentEmail('raw');
74 $this->assertNotEmpty($msg, 'Mail message empty or not found.');
75 $this->assertContains('Subject: This is subject of test activity', $msg, 'Subject of email is wrong.');
76
77 $mut->stop();
78 }
79
80 public static function mailWalkCallback($context, $mailPart) {
81 if ($mailPart instanceof ezcMailText) {
82 self::assertEquals($mailPart->subType, 'html');
83 self::assertContains('Unit tests keep children safe', $mailPart->generateBody());
84 }
85
86 $disp = $mailPart->contentDisposition;
87 if ($disp) {
88
89 }
90 }
91 }