/**
* Create a completed mailing (e.g when importing from a provider).
+ *
+ * @throws \CRM_Core_Exception
*/
public function testMailerCreateCompleted() {
$this->_params['body_html'] = 'I am completed so it does not matter if there is an opt out link since I have already been sent by another system';
* The `template_options` field should be treated a JSON object.
*
* This test will create, read, and update the field.
+ *
+ * @throws \CRM_Core_Exception
*/
public function testMailerCreateTemplateOptions() {
// 1. Create mailing with template_options.
/**
* The Mailing.create API supports magic properties "groups[include,enclude]" and "mailings[include,exclude]".
* Make sure these work
+ *
+ * @throws \CRM_Core_Exception
*/
public function testMagicGroups_create_update() {
// BEGIN SAMPLE DATA
/**
* Test if Mailing recipients include duplicate OR on_hold emails
+ *
+ * @throws \CRM_Core_Exception
*/
public function testMailerPreviewRecipientsDeduplicateAndOnholdEmails() {
// BEGIN SAMPLE DATA
* @param array $submitParams
* @param null|string $expectedFailure
* @param int $expectedJobCount
+ *
* @dataProvider submitProvider
+ * @throws \CRM_Core_Exception
*/
public function testMailerSubmit($useLogin, $createParams, $submitParams, $expectedFailure, $expectedJobCount) {
if ($useLogin) {
$this->createLoggedInUser();
}
- if (isset($createParams['footer_id']) && $createParams['footer_id'] == '%FOOTER%') {
+ if (isset($createParams['footer_id']) && $createParams['footer_id'] === '%FOOTER%') {
$createParams['footer_id'] = $this->footer['id'];
}
/**
* Test unsubscribe list contains correct groups
* when include = 'previous mailing'
+ *
+ * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
*/
public function testUnsubscribeGroupList() {
// Create set of groups and add a contact to both of them.
'entity_id' => $mail['id'],
'group_type' => 'Include',
];
- $mailingGroup = $this->callAPISuccess('MailingGroup', 'create', $mgParams);
+ $this->callAPISuccess('MailingGroup', 'create', $mgParams);
//CRM-20431 - Delete group id that matches first mailing id.
$this->callAPISuccess('Group', 'delete', ['id' => $this->_groupID]);
$jobId = CRM_Core_DAO::getFieldValue('CRM_Mailing_DAO_MailingJob', $mail2['id'], 'id', 'mailing_id');
$this->assertArrayHasKey('id', $result['values'][0]['children'][0]);
}
+ /**
+ * Test clone function.
+ *
+ * @throws \CRM_Core_Exception
+ */
public function testClone() {
// BEGIN SAMPLE DATA
$groupIDs['inc'] = $this->groupCreate(['name' => 'Example include group', 'title' => 'Example include group']);
/**
* Test to make sure that if the event queue hashes have been archived,
* we can still have working click-trough URLs working (CRM-17959).
+ *
+ * @throws \CRM_Core_Exception
*/
public function testUrlWithMissingTrackingHash() {
$mail = $this->callAPISuccess('mailing', 'create', $this->_params + ['scheduled_date' => 'now'], __FUNCTION__, __FILE__);
}
}
+ /**
+ * Test that api Mailing.update_email_resetdate does not throw a core error.
+ *
+ * @throws \CRM_Core_Exception
+ */
+ public function testUpdateEmailResetdate() {
+ $this->callAPISuccess('Mailing', 'update_email_resetdate', []);
+ }
+
}