protected $_email;
protected $_apiversion = 3;
protected $_params = array();
+ protected $_entity = 'Mailing';
function get_info() {
return array(
$jobs = $this->callAPISuccess('mailing_job', 'get', array('mailing_id' => $result['id']));
$this->assertEquals(1, $jobs['count']);
unset($params['created_id']);// return isn't working on this in getAndCheck so lets not check it for now
- $this->getAndCheck($params, $result['id'], 'mailing');
+ $this->getAndCheck($this->_params, $result['id'], 'mailing');
}
/**
* Test civicrm_mailing_create
*/
public function testMailerDeleteSuccess() {
- $result = $this->callAPISuccess('mailing', 'create', $params, __FUNCTION__, __FILE__);
- $jobs = $this->callAPISuccess('mailing_job', 'delete', array('id' => $result['id']));
- $this->assertAPIDeleted($entity, $result['id']);
+ $result = $this->callAPISuccess($this->_entity, 'create', $this->_params);
+ $jobs = $this->callAPIAndDocument($this->_entity, 'delete', array('id' => $result['id']), __FUNCTION__, __FILE__);
+ $this->assertAPIDeleted($this->_entity, $result['id']);
}
//@ todo tests below here are all failure tests which are not hugely useful - need success tests
/**
* Test civicrm_mailing_event_bounce with wrong params.
+ * Note that tests like this are slightly better than no test but an
+ * api function cannot be considered supported / 'part of the api' without a
+ * success test
*/
public function testMailerBounceWrongParams() {
$params = array(
'body' => 'Body...',
'time_stamp' => '20111109212100',
);
- $result = $this->callAPISuccess('mailing_event', 'bounce', $params);
- $this->assertAPIFailure($result, 'In line ' . __LINE__);
- $this->assertEquals($result['error_message'], 'Queue event could not be found', 'In line ' . __LINE__);
+ $result = $this->callAPIFailure('mailing_event', 'bounce', $params,
+ 'Queue event could not be found');
}
//----------- civicrm_mailing_event_confirm methods -----------
/**
* Test civicrm_mailing_event_confirm with wrong params.
+ * Note that tests like this are slightly better than no test but an
+ * api function cannot be considered supported / 'part of the api' without a
+ * success test
*/
public function testMailerConfirmWrongParams() {
$params = array(
'event_subscribe_id' => '123',
'time_stamp' => '20111111010101',
);
- $result = $this->callAPISuccess('mailing_event', 'confirm', $params);
- $this->assertAPIFailure($result, 'In line ' . __LINE__);
- $this->assertEquals($result['error_message'], 'Confirmation failed', 'In line ' . __LINE__);
+ $result = $this->callAPIFailure('mailing_event', 'confirm', $params,
+ 'Confirmation failed'
+ );
}
//---------- civicrm_mailing_event_reply methods -----------
/**
* Test civicrm_mailing_event_reply with wrong params.
+ *
+ * Note that tests like this are slightly better than no test but an
+ * api function cannot be considered supported / 'part of the api' without a
+ * success test
*/
public function testMailerReplyWrongParams() {
$params = array(
'replyTo' => $this->_email,
'time_stamp' => '20111111010101',
);
- $result = $this->callAPISuccess('mailing_event', 'reply', $params);
- $this->assertAPIFailure($result, 'In line ' . __LINE__);
- $this->assertEquals($result['error_message'], 'Queue event could not be found', 'In line ' . __LINE__);
+ $result = $this->callAPIFailure('mailing_event', 'reply', $params,
+ 'Queue event could not be found'
+ );
}
/**
* Test civicrm_mailing_event_forward with wrong params.
+ * Note that tests like this are slightly better than no test but an
+ * api function cannot be considered supported / 'part of the api' without a
+ * success test
*/
public function testMailerForwardWrongParams() {
$params = array(
'email' => $this->_email,
'time_stamp' => '20111111010101',
);
- $result = $this->callAPISuccess('mailing_event', 'forward', $params);
- $this->assertAPIFailure($result, 'In line ' . __LINE__);
- $this->assertEquals($result['error_message'], 'Queue event could not be found', 'In line ' . __LINE__);
+ $result = $this->callAPIFailure('mailing_event', 'forward', $params,
+ 'Queue event could not be found'
+ );
}