-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #204 from kevin-dutra/203-too-many-in-queue-item
#203 Too many messages per deletion queue item
- Loading branch information
Showing
2 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?php | ||
|
||
namespace Drupal\Tests\message\Unit\Plugin\MessagePurge; | ||
|
||
use Drupal\Core\Entity\Query\QueryInterface; | ||
use Drupal\Core\Queue\QueueInterface; | ||
use Drupal\message\MessagePurgeInterface; | ||
use Drupal\message\Plugin\MessagePurge\Days; | ||
use Drupal\Tests\UnitTestCase; | ||
use Prophecy\Argument; | ||
use Symfony\Component\HttpFoundation\RequestStack; | ||
|
||
/** | ||
* Unit tests for the days purge plugin. | ||
* | ||
* @coversDefaultClass \Drupal\message\Plugin\MessagePurge\Days | ||
* | ||
* @group Message | ||
*/ | ||
class DaysTest extends UnitTestCase { | ||
|
||
/** | ||
* Test processing zero message. | ||
* | ||
* @covers ::process | ||
*/ | ||
public function testProcessNone() { | ||
$query = $this->prophesize(QueryInterface::class)->reveal(); | ||
$request_stack = $this->prophesize(RequestStack::class)->reveal(); | ||
$queue = $this->prophesize(QueueInterface::class); | ||
$queue->createItem(Argument::any())->shouldNotBeCalled(); | ||
$plugin = new Days([], 'days', [], $query, $queue->reveal(), $request_stack); | ||
$plugin->process([]); | ||
} | ||
|
||
/** | ||
* Tests processing more than defined queue item limit. | ||
* | ||
* @covers ::process | ||
*/ | ||
public function testProcess() { | ||
$query = $this->prophesize(QueryInterface::class)->reveal(); | ||
$request_stack = $this->prophesize(RequestStack::class)->reveal(); | ||
$queue = $this->prophesize(QueueInterface::class); | ||
$queue->createItem(Argument::size(MessagePurgeInterface::MESSAGE_DELETE_SIZE))->shouldBeCalledTimes(1); | ||
$queue->createItem(Argument::size(1))->shouldBeCalledTimes(1); | ||
$plugin = new Days([], 'days', [], $query, $queue->reveal(), $request_stack); | ||
|
||
$messages = range(1, MessagePurgeInterface::MESSAGE_DELETE_SIZE + 1); | ||
$plugin->process($messages); | ||
} | ||
|
||
} |