returnResponse(true);
$this->_response = new Zend_Controller_Response_Http();
Application::$front->setResponse($this->_response);
$users = new Users_Model_Users();
$this->_user = $users->createRow();
$this->_user->id = 23;
$this->_user->role = Users_Model_User::ROLE_ADMIN;
$this->_user->username = 'testadmin';
Zend_Registry::set('user', $this->_user);
}
public function testIndexGuestUserAction()
{
$this->_user->role = Users_Model_User::ROLE_GUEST;
Application::$front->setRequest(new TestRequest('/messageusers'));
try {
Application::dispatch();
} catch (Monkeys_AccessDeniedException $e) {
$this->assertTrue(true);
return;
}
$this->fail('Expected Monkeys_AccessDeniedException was not raised');
}
public function testIndexRegisteredUserAction()
{
$this->_user->role = Users_Model_User::ROLE_REGISTERED;
Application::$front->setRequest(new TestRequest('/messageusers'));
try {
Application::dispatch();
} catch (Monkeys_AccessDeniedException $e) {
$this->assertTrue(true);
return;
}
$this->fail('Expected Monkeys_AccessDeniedException was not raised');
}
public function testIndexAction()
{
Application::$front->setRequest(new TestRequest('/messageusers'));
Application::dispatch();
$this->assertContains('', $this->_response->getBody());
}
public function testSaveActionWithEmptySubject()
{
$_POST = array(
'messageType' => 'rich',
'subject' => '',
'cc' => '',
'bodyPlain' => '',
'bodyHTML' => 'Hello world',
);
Application::$front->setRequest(new TestRequest('/messageusers/send'));
Application::dispatch();
$this->assertContains('Value is required and can\'t be empty', $this->_response->getBody());
}
public function testSaveActionWithBadCC()
{
$_POST = array(
'messageType' => 'rich',
'subject' => 'whateva',
'cc' => 'asdfdf',
'bodyPlain' => '',
'bodyHTML' => 'Hello world',
);
Application::$front->setRequest(new TestRequest('/messageusers/send'));
Application::dispatch();
$this->assertContains('CC field must be a comma-separated list of valid E-mails', $this->_response->getBody());
}
public function testSaveGuestUser()
{
$this->_user->role = Users_Model_User::ROLE_GUEST;
Application::$front->setRequest(new TestRequest('/messageusers/send'));
try {
Application::dispatch();
} catch (Monkeys_AccessDeniedException $e) {
$this->assertTrue(true);
return;
}
$this->fail('Expected Monkeys_AccessDeniedException was not raised');
}
public function testSaveRegisteredUser()
{
$this->_user->role = Users_Model_User::ROLE_REGISTERED;
Application::$front->setRequest(new TestRequest('/messageusers/send'));
try {
Application::dispatch();
} catch (Monkeys_AccessDeniedException $e) {
$this->assertTrue(true);
return;
}
$this->fail('Expected Monkeys_AccessDeniedException was not raised');
}
public function testSaveSuccessfull()
{
$_POST = array(
'messageType' => 'rich',
'subject' => 'whateva',
'cc' => 'one@mailinator.com, two@mailinator.com',
'bodyPlain' => '',
'bodyHTML' => 'Hello world',
);
Application::$front->setRequest(new TestRequest('/messageusers/send'));
Application::$mockLogger->events = array();
try {
Application::dispatch();
} catch (Zend_Controller_Response_Exception $e) {
// I still don't know how to avoid the "headers already sent" problem here...
}
$lastLog = array_pop(Application::$mockLogger->events);
$this->assertEquals("redirected to ''", $lastLog['message']);
}
}