getAdapterName() * * @return string */ public function getAdapterFullName() { return 'Zend_Queue_Adapter_' . $this->getAdapterName(); } public function getTestConfig() { $driverOptions = array(); if (defined('TESTS_ZEND_QUEUE_DB')) { require_once 'Zend/Json.php'; $driverOptions = Zend_Json::decode(TESTS_ZEND_QUEUE_DB); } return array( 'options' => array(Zend_Db_Select::FOR_UPDATE => true), 'driverOptions' => $driverOptions, ); } // test the constants public function testConst() { $this->markTestSkipped('no constants to test'); } // additional non-standard tests public function test_constructor2() { try { $config = $this->getTestConfig(); /** * @see Zend_Db_Select */ require_once 'Zend/Db/Select.php'; $config['options'][Zend_Db_Select::FOR_UPDATE] = array(); $queue = $this->createQueue(__FUNCTION__, $config); $this->fail('FOR_UPDATE accepted an array'); } catch (Exception $e) { $this->assertTrue(true, 'FOR_UPDATE cannot be an array'); } foreach (array('host', 'username', 'password', 'dbname') as $i => $arg) { try { $config = $this->getTestConfig(); unset($config['driverOptions'][$arg]); $queue = $this->createQueue(__FUNCTION__, $config); $this->fail("$arg is required but was missing."); } catch (Exception $e) { $this->assertTrue(true, $arg . ' is required.'); } } } }