Файл: concrete5.7.5.6/concrete/vendor/zendframework/zend-queue/tests/ZendQueue/Adapter/ActivemqTest.php
Строк: 71
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Queue
*/
namespace ZendQueueTestAdapter;
use ZendQueueAdapter;
/*
* 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.
*/
/**
* @category Zend
* @package Zend_Queue
* @subpackage UnitTests
* @group Zend_Queue
*/
class ActivemqTest extends AdapterTest
{
public function setUp()
{
if (
!defined('TESTS_ZEND_QUEUE_ACTIVEMQ_ENABLED') ||
!constant('TESTS_ZEND_QUEUE_ACTIVEMQ_ENABLED')
) {
$this->markTestSkipped('Zend_Queue ActiveMQ adapter tests are not enabled');
}
}
/**
* getAdapterName() is an method to help make AdapterTest work with any
* new adapters
*
* You must overload this method
*
* @return string
*/
public function getAdapterName()
{
return 'Activemq';
}
public function getTestConfig()
{
$driverOptions = array();
if (defined('TESTS_ZEND_QUEUE_ACTIVEMQ_HOST')) {
$driverOptions['host'] = TESTS_ZEND_QUEUE_APACHEMQ_HOST;
}
if (defined('TESTS_ZEND_QUEUE_ACTIVEMQ_PORT')) {
$driverOptions['port'] = TESTS_ZEND_QUEUE_APACHEMQ_PORT;
}
if (defined('TESTS_ZEND_QUEUE_ACTIVEMQ_SCHEME')) {
$driverOptions['scheme'] = TESTS_ZEND_QUEUE_APACHEMQ_SCHEME;
}
return array('driverOptions' => $driverOptions);
}
/**
* Stomped requires specific name types
*/
public function createQueueName($name)
{
return '/temp-queue/' . $name;
}
public function testConst()
{
$this->assertTrue(is_string(AdapterActivemq::DEFAULT_SCHEME));
$this->assertTrue(is_string(AdapterActivemq::DEFAULT_HOST));
$this->assertTrue(is_integer(AdapterActivemq::DEFAULT_PORT));
}
}