You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Controller/_files/HelperFlashMessengerControl...

78 lines
2.3 KiB
PHP

<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Controller
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: HelperFlashMessengerController.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
require_once 'Zend/Controller/Action.php';
/**
* Mock file for testbed
*
* @category Zend
* @package Zend_Controller
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class HelperFlashMessengerController extends Zend_Controller_Action
{
/**
* Test Function for indexAction
*
* @return void
*/
public function indexAction()
{
$flashmessenger = $this->_helper->FlashMessenger;
$this->getResponse()->appendBody(get_class($flashmessenger));
$messages = $flashmessenger->getCurrentMessages();
if (count($messages) === 0) {
$this->getResponse()->appendBody('1');
}
$flashmessenger->addMessage('My message');
$messages = $flashmessenger->getCurrentMessages();
if (implode('', $messages) === 'My message') {
$this->getResponse()->appendBody('2');
}
if ($flashmessenger->count() === 0) {
$this->getResponse()->appendBody('3');
}
if ($flashmessenger->hasMessages() === false) {
$this->getResponse()->appendBody('4');
}
if ($flashmessenger->getRequest() === $this->getRequest()) {
$this->getResponse()->appendBody('5');
}
if ($flashmessenger->getResponse() === $this->getResponse()) {
$this->getResponse()->appendBody('6');
}
}
}