Skip to content

Commit

Permalink
CRM-18756: Test for CRM-17959 (URL Tracking when mailing queue hashes…
Browse files Browse the repository at this point in the history
… are deleted.).
  • Loading branch information
mlutfy committed Jun 8, 2016
1 parent 795136f commit b4fb973
Showing 1 changed file with 32 additions and 3 deletions.
35 changes: 32 additions & 3 deletions tests/phpunit/api/v3/MailingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public function setUp() {
$this->_email = 'test@test.test';
$this->_params = array(
'subject' => 'Hello {contact.display_name}',
'body_text' => "This is {contact.display_name}.\n{domain.address}{action.optOutUrl}",
'body_html' => "<p>This is {contact.display_name}.</p><p>{domain.address}{action.optOutUrl}</p>",
'body_text' => "This is {contact.display_name}.\nhttps://civicrm.org\n{domain.address}{action.optOutUrl}",
'body_html' => "<p>This is {contact.display_name}.</p><p><a href='https://civicrm.org/'>CiviCRM.org</a></p><p>{domain.address}{action.optOutUrl}</p>",
'name' => 'mailing name',
'created_id' => $this->_contactID,
'header_id' => '',
Expand Down Expand Up @@ -658,6 +658,35 @@ public function createDraftMailing($params = array()) {
return $createResult['id'];
}

//----------- civicrm_mailing_create ----------
/**
* Test to make sure that if the event queue hashes have been archived,
* we can still have working click-trough URLs working (CRM-17959).
*/
public function testUrlWithMissingTrackingHash() {
$mail = $this->callAPIAndDocument('mailing', 'create', $this->_params + array('scheduled_date' => 'now'), __FUNCTION__, __FILE__);
$jobs = $this->callAPISuccess('mailing_job', 'get', array('mailing_id' => $mail['id']));
$this->assertEquals(1, $jobs['count']);

$params = array('mailing_id' => $mail['id'], 'test_email' => 'alice@example.org', 'test_group' => NULL);
$deliveredInfo = $this->callAPISuccess($this->_entity, 'send_test', $params);

$sql = "SELECT turl.id as url_id, turl.url, q.id as queue_id
FROM civicrm_mailing_trackable_url as turl
INNER JOIN civicrm_mailing_job as j ON turl.mailing_id = j.mailing_id
INNER JOIN civicrm_mailing_event_queue q ON j.id = q.job_id
ORDER BY turl.id DESC LIMIT 1";

$dao = CRM_Core_DAO::executeQuery($sql);
$this->assertTrue($dao->fetch());

$url = CRM_Mailing_Event_BAO_TrackableURLOpen::track($dao->queue_id, $dao->url_id);
$this->assertContains('https://civicrm.org', $url);

// Now delete the event queue hashes and see if the tracking still works.
CRM_Core_DAO::executeQuery('DELETE FROM civicrm_mailing_event_queue');

$url = CRM_Mailing_Event_BAO_TrackableURLOpen::track($dao->queue_id, $dao->url_id);
$this->assertContains('https://civicrm.org', $url);
}

}

0 comments on commit b4fb973

Please sign in to comment.