| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?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_Message_Test */
- require_once 'MessageTestClass.php';
- /** Base Adapter test class */
- require_once dirname(__FILE__) . '/AdapterTest.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_Adapter_ArrayTest extends Zend_Queue_Adapter_AdapterTest
- {
- /**
- * getAdapterName() is an method to help make AdapterTest work with any
- * new adapters
- *
- * You must overload this method
- *
- * @return string
- */
- public function getAdapterName()
- {
- return 'Array';
- }
- /**
- * getAdapterName() is an method to help make AdapterTest work with any
- * new adapters
- *
- * You may overload this method. The default return is
- * 'Zend_Queue_Adapter_' . $this->getAdapterName()
- *
- * @return string
- */
- public function getAdapterFullName()
- {
- return 'Zend_Queue_Adapter_' . $this->getAdapterName();
- }
- public function getTestConfig()
- {
- return array('driverOptions' => array());
- }
- // test the constants
- public function testConst()
- {
- $this->markTestSkipped('no constants to test');
- }
- // extra non standard tests
- public function test_magic()
- {
- $queue = $this->createQueue(__FUNCTION__);
- $adapter = $queue->getAdapter();
- $this->assertTrue(is_array($adapter->__sleep()));
- $data = serialize($adapter);
- $new = unserialize($data);
- $this->assertEquals($new->getData(), $adapter->getData());
- }
- public function test_get_setData()
- {
- $queue = $this->createQueue(__FUNCTION__);
- $adapter = $queue->getAdapter();
- $data = array('test' => 1);
- $adapter->setData($data);
- $got = $adapter->getData();
- $this->assertEquals($data['test'], $got['test']);
- }
-
- /**
- * @group ZF-7650
- */
- public function testReceiveWillRetrieveZeroItems()
- {
- // Zend_Queue_Adapter_Array
- $queue = new Zend_Queue('Array');
- $queue2 = $queue->createQueue('queue');
- $queue->send('My Test Message 1');
- $queue->send('My Test Message 2');
- $messages = $queue->receive(0);
- $this->assertEquals(0, count($messages));
- }
- }
|