| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- <?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_Queue
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /*
- * The adapter test class provides a universal test class for all of the
- * abstract methods.
- *
- * All methods marked not supported are explictly checked for for throwing
- * an exception.
- */
- /** Zend_Queue */
- require_once 'Zend/Queue.php';
- /** Zend_Queue */
- require_once 'Zend/Queue/Message.php';
- /** Zend_Queue_Adapter_Array */
- require_once 'Zend/Queue/Adapter/Array.php';
- /**
- * @category Zend
- * @package Zend_Queue
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Queue
- */
- class Zend_Queue_QueueTest extends PHPUnit_Framework_TestCase
- {
- protected function setUp()
- {
- // Test Zend_Config
- $this->config = array(
- 'name' => 'queue1',
- 'params' => array(),
- );
- $this->queue = new Zend_Queue('array', $this->config);
- }
- protected function tearDown()
- {
- }
- public function testConst()
- {
- $this->assertTrue(is_string(Zend_Queue::TIMEOUT));
- $this->assertTrue(is_integer(Zend_Queue::VISIBILITY_TIMEOUT));
- $this->assertTrue(is_string(Zend_Queue::NAME));
- }
- /**
- * Constructor
- *
- * @param string|Zend_Queue_Adapter_Abstract $adapter
- * @param array $config
- */
- public function testConstruct()
- {
- // Test Zend_Config
- $config = array(
- 'name' => 'queue1',
- 'params' => array(),
- 'adapter' => 'array'
- );
- require_once "Zend/Config.php";
- $zend_config = new Zend_Config($config);
- $obj = new Zend_Queue($config);
- $this->assertTrue($obj instanceof Zend_Queue);
- try {
- $obj = new Zend_Queue('ops');
- $this->fail('Zend_Queue cannot accept a string');
- } catch (Exception $e) {
- $this->assertTrue(true);
- }
- }
- public function test_getOptions()
- {
- $config = $this->queue->getOptions();
- $this->assertTrue(is_array($config));
- $this->assertEquals($this->config['name'], $config['name']);
- }
- public function test_set_getAdapter()
- {
- $adapter = new Zend_Queue_Adapter_Array($this->config);
- $this->assertTrue($this->queue->setAdapter($adapter) instanceof Zend_Queue);
- $this->assertTrue($this->queue->getAdapter($adapter) instanceof Zend_Queue_Adapter_Array);
- }
- public function test_set_getMessageClass()
- {
- $class = 'test';
- $this->assertTrue($this->queue->setMessageClass($class) instanceof Zend_Queue);
- $this->assertEquals($class, $this->queue->getMessageClass());
- }
- public function test_set_getMessageSetClass()
- {
- $class = 'test';
- $this->assertTrue($this->queue->setMessageSetClass($class) instanceof Zend_Queue);
- $this->assertEquals($class, $this->queue->getMessageSetClass());
- }
- public function test_set_getName()
- {
- // $this->assertTrue($this->queue->setName($new) instanceof Zend_Queue);
- $this->assertEquals($this->config['name'], $this->queue->getName());
- }
- public function test_create_deleteQueue()
- {
- // parameter testing
- try {
- $this->queue->createQueue(array());
- $this->fail('createQueue() $name must be a string');
- } catch (Exception $e) {
- $this->assertTrue(true);
- }
- try {
- $this->queue->createQueue('test', 'test');
- $this->fail('createQueue() $timeout must be an integer');
- } catch (Exception $e) {
- $this->assertTrue(true);
- }
- // isExists
- $queue = 'test';
- $new = $this->queue->createQueue($queue);
- $this->assertTrue($new instanceof Zend_Queue);
- $this->assertFalse($this->queue->createQueue($queue));
- $this->assertTrue($new->deleteQueue());
- }
- public function test_send_count_receive_deleteMessage()
- {
- // ------------------------------------ send()
- // parameter verification
- try {
- $this->queue->send(array());
- $this->fail('send() $mesage must be a string');
- } catch (Exception $e) {
- $this->assertTrue(true);
- }
- $message = 'Hello world'; // never gets boring!
- $this->assertTrue($this->queue->send($message) instanceof Zend_Queue_Message);
- // ------------------------------------ count()
- $this->assertEquals($this->queue->count(), 1);
- // ------------------------------------ receive()
- // parameter verification
- try {
- $this->queue->receive(array());
- $this->fail('receive() $maxMessages must be a integer or null');
- } catch (Exception $e) {
- $this->assertTrue(true);
- }
- try {
- $this->queue->receive(1, array());
- $this->fail('receive() $timeout must be a integer or null');
- } catch (Exception $e) {
- $this->assertTrue(true);
- }
- $messages = $this->queue->receive();
- $this->assertTrue($messages instanceof Zend_Queue_Message_Iterator);
- // ------------------------------------ deleteMessage()
- foreach ($messages as $i => $message) {
- $this->assertTrue($this->queue->deleteMessage($message));
- }
- }
- public function test_capabilities()
- {
- $list = $this->queue->getCapabilities();
- $this->assertTrue(is_array($list));
- // these functions must have an boolean answer
- $func = array(
- 'create', 'delete', 'send', 'receive',
- 'deleteMessage', 'getQueues', 'count',
- 'isExists'
- );
- foreach ( array_values($func) as $f ) {
- $this->assertTrue(isset($list[$f]));
- $this->assertTrue(is_bool($list[$f]));
- }
- }
- public function test_isSupported()
- {
- $list = $this->queue->getCapabilities();
- foreach ( $list as $function => $result ) {
- $this->assertTrue(is_bool($result));
- if ( $result ) {
- $this->assertTrue($this->queue->isSupported($function));
- } else {
- $this->assertFalse($this->queue->isSupported($function));
- }
- }
- }
- public function test_getQueues()
- {
- $queues = $this->queue->getQueues();
- $this->assertTrue(is_array($queues));
- $this->assertTrue(in_array($this->config['name'], $queues));
- }
- }
|