File manager - Edit - /usr/local/prospamfilter/vendor/codeception/codeception/tests/unit/Codeception/Module/BeanstalkdTest.php
Back
<?php use Codeception\Util\Stub; use Pheanstalk\Exception\ConnectionException; class BeanstalkdTest extends \PHPUnit_Framework_TestCase { protected $config = array( 'type' => 'beanstalkq', 'host' => 'localhost' ); /** * @var \Codeception\Module\Queue */ protected $module = null; public function setUp() { $this->module = new \Codeception\Module\Queue(make_container()); $this->module->_setConfig($this->config); $this->module->_before(Stub::makeEmpty('\Codeception\TestInterface')); try { $this->module->clearQueue('default'); } catch (ConnectionException $e) { $this->markTestSkipped("Beanstalk is not running"); } } /** @test */ public function flow() { $this->module->addMessageToQueue('hello world - ' . date('d-m-y'), 'default'); $this->module->clearQueue('default'); $this->module->seeQueueExists('default'); $this->module->dontSeeQueueExists('fake_queue'); $this->module->seeEmptyQueue('default'); $this->module->addMessageToQueue('hello world - ' . date('d-m-y'), 'default'); $this->module->dontSeeEmptyQueue('default'); $this->module->seeQueueHasTotalCount('default', 2); $this->module->seeQueueHasCurrentCount('default', 1); $this->module->dontSeeQueueHasCurrentCount('default', 9999); $this->module->grabQueues(); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings