INFRA-132 - tests/ - PHPStorm cleanup
[civicrm-core.git] / tests / phpunit / api / v3 / JobProcessMailingTest.php
CommitLineData
07c09ae4
EM
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
07c09ae4
EM
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 and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28/**
29 * File for the CiviCRM APIv3 job functions
30 *
31 * @package CiviCRM_APIv3
32 * @subpackage API_Job
33 *
34 * @copyright CiviCRM LLC (c) 2004-2014
35 * @version $Id: Job.php 30879 2010-11-22 15:45:55Z shot $
36 *
37 */
38require_once 'CiviTest/CiviUnitTestCase.php';
39//@todo - why doesn't class loader find these (I tried renaming)
40require_once 'CiviTest/CiviMailUtils.php';
92915c55 41
07c09ae4
EM
42/**
43 * Class api_v3_JobTest
44 */
45class api_v3_JobProcessMailingTest extends CiviUnitTestCase {
46 protected $_apiversion = 3;
47
48 public $DBResetRequired = FALSE;
49 public $_entity = 'Job';
50 public $_params = array();
51 private $_groupID;
52 private $_email;
53
54 /**
55 * @var CiviMailUtils
56 */
57 private $_mut;
58
00be9182 59 public function setUp() {
07c09ae4 60 parent::setUp();
e24a5794 61 $this->useTransaction();
97b7d4a0 62 CRM_Mailing_BAO_MailingJob::$mailsProcessed = 0; // DGW
07c09ae4
EM
63 $this->_groupID = $this->groupCreate();
64 $this->_email = 'test@test.test';
65 $this->_params = array(
66 'subject' => 'Accidents in cars cause children',
67 'body_text' => 'BEWARE children need regular infusions of toys',
68 'name' => 'mailing name',
69 'created_id' => 1,
70 'groups' => array('include' => array($this->_groupID)),
71 );
481a74f4 72 $this->_mut = new CiviMailUtils($this, TRUE);
07c09ae4
EM
73 $this->callAPISuccess('mail_settings', 'get', array('api.mail_settings.create' => array('domain' => 'chaos.org')));
74 }
75
76 /**
07c09ae4 77 */
00be9182 78 public function tearDown() {
07c09ae4 79 $this->_mut->stop();
6c6e6187 80 // $this->quickCleanup(array('civicrm_mailing', 'civicrm_mailing_job', 'civicrm_contact'));
07c09ae4 81 CRM_Utils_Hook::singleton()->reset();
97b7d4a0 82 CRM_Mailing_BAO_MailingJob::$mailsProcessed = 0; // DGW
07c09ae4
EM
83 parent::tearDown();
84
85 }
86
87 /**
88 * Check mailing is sent
89 */
00be9182 90 public function testProcessMailing() {
07c09ae4
EM
91 $this->createContactsInGroup(10, $this->_groupID);
92 CRM_Core_Config::singleton()->mailerBatchLimit = 2;
93 $this->callAPISuccess('mailing', 'create', $this->_params);
94 $this->callAPISuccess('job', 'process_mailing', array());
95 $this->_mut->assertRecipients($this->getRecipients(1, 2));
96 }
97
98 /**
e16033b4
TO
99 * @param int $count
100 * @param int $groupID
07c09ae4 101 */
00be9182 102 public function createContactsInGroup($count, $groupID) {
481a74f4 103 for ($i = 1; $i <= $count; $i++) {
07c09ae4 104 $contactID = $this->individualCreate(array('first_name' => $count, 'email' => 'mail' . $i . '@nul.com'));
92915c55
TO
105 $this->callAPISuccess('group_contact', 'create', array(
106 'contact_id' => $contactID,
107 'group_id' => $groupID,
108 'status' => 'Added'
109 ));
07c09ae4
EM
110 }
111 }
112
113 /**
e16033b4
TO
114 * @param int $start
115 * @param int $count
07c09ae4
EM
116 *
117 * @return array
118 */
00be9182 119 public function getRecipients($start, $count) {
07c09ae4 120 $recipients = array();
481a74f4 121 for ($i = $start; $i < ($start + $count); $i++) {
07c09ae4
EM
122 $recipients[][0] = 'mail' . $i . '@nul.com';
123 }
124 return $recipients;
125 }
126}