|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace Enqueue\Tests\Client\ConsumptionExtension; |
| 4 | + |
| 5 | +use Enqueue\Client\ConsumptionExtension\FlushSpoolProducerExtension; |
| 6 | +use Enqueue\Client\SpoolProducer; |
| 7 | +use Enqueue\Consumption\Context; |
| 8 | +use Enqueue\Consumption\ExtensionInterface; |
| 9 | +use Enqueue\Test\ClassExtensionTrait; |
| 10 | +use PHPUnit\Framework\TestCase; |
| 11 | + |
| 12 | +class FlushSpoolProducerExtensionTest extends TestCase |
| 13 | +{ |
| 14 | + use ClassExtensionTrait; |
| 15 | + |
| 16 | + public function testShouldImplementExtensionInterface() |
| 17 | + { |
| 18 | + $this->assertClassImplements(ExtensionInterface::class, FlushSpoolProducerExtension::class); |
| 19 | + } |
| 20 | + |
| 21 | + public function testCouldBeConstructedWithSpoolProducerAsFirstArgument() |
| 22 | + { |
| 23 | + new FlushSpoolProducerExtension($this->createSpoolProducerMock()); |
| 24 | + } |
| 25 | + |
| 26 | + public function testShouldDoNothingOnStart() |
| 27 | + { |
| 28 | + $producer = $this->createSpoolProducerMock(); |
| 29 | + $producer |
| 30 | + ->expects(self::never()) |
| 31 | + ->method('flush') |
| 32 | + ; |
| 33 | + |
| 34 | + $extension = new FlushSpoolProducerExtension($producer); |
| 35 | + $extension->onStart($this->createContextMock()); |
| 36 | + } |
| 37 | + |
| 38 | + public function testShouldDoNothingOnBeforeReceive() |
| 39 | + { |
| 40 | + $producer = $this->createSpoolProducerMock(); |
| 41 | + $producer |
| 42 | + ->expects(self::never()) |
| 43 | + ->method('flush') |
| 44 | + ; |
| 45 | + |
| 46 | + $extension = new FlushSpoolProducerExtension($producer); |
| 47 | + $extension->onBeforeReceive($this->createContextMock()); |
| 48 | + } |
| 49 | + |
| 50 | + public function testShouldDoNothingOnPreReceived() |
| 51 | + { |
| 52 | + $producer = $this->createSpoolProducerMock(); |
| 53 | + $producer |
| 54 | + ->expects(self::never()) |
| 55 | + ->method('flush') |
| 56 | + ; |
| 57 | + |
| 58 | + $extension = new FlushSpoolProducerExtension($producer); |
| 59 | + $extension->onPreReceived($this->createContextMock()); |
| 60 | + } |
| 61 | + |
| 62 | + public function testShouldDoNothingOnResult() |
| 63 | + { |
| 64 | + $producer = $this->createSpoolProducerMock(); |
| 65 | + $producer |
| 66 | + ->expects(self::never()) |
| 67 | + ->method('flush') |
| 68 | + ; |
| 69 | + |
| 70 | + $extension = new FlushSpoolProducerExtension($producer); |
| 71 | + $extension->onResult($this->createContextMock()); |
| 72 | + } |
| 73 | + |
| 74 | + public function testShouldDoNothingOnIdle() |
| 75 | + { |
| 76 | + $producer = $this->createSpoolProducerMock(); |
| 77 | + $producer |
| 78 | + ->expects(self::never()) |
| 79 | + ->method('flush') |
| 80 | + ; |
| 81 | + |
| 82 | + $extension = new FlushSpoolProducerExtension($producer); |
| 83 | + $extension->onIdle($this->createContextMock()); |
| 84 | + } |
| 85 | + |
| 86 | + public function testShouldFlushSpoolProducerOnInterrupted() |
| 87 | + { |
| 88 | + $producer = $this->createSpoolProducerMock(); |
| 89 | + $producer |
| 90 | + ->expects(self::once()) |
| 91 | + ->method('flush') |
| 92 | + ; |
| 93 | + |
| 94 | + $extension = new FlushSpoolProducerExtension($producer); |
| 95 | + $extension->onInterrupted($this->createContextMock()); |
| 96 | + } |
| 97 | + |
| 98 | + public function testShouldFlushSpoolProducerOnPostReceived() |
| 99 | + { |
| 100 | + $producer = $this->createSpoolProducerMock(); |
| 101 | + $producer |
| 102 | + ->expects(self::once()) |
| 103 | + ->method('flush') |
| 104 | + ; |
| 105 | + |
| 106 | + $extension = new FlushSpoolProducerExtension($producer); |
| 107 | + $extension->onPostReceived($this->createContextMock()); |
| 108 | + } |
| 109 | + |
| 110 | + /** |
| 111 | + * @return \PHPUnit_Framework_MockObject_MockObject|Context |
| 112 | + */ |
| 113 | + private function createContextMock() |
| 114 | + { |
| 115 | + return $this->createMock(Context::class); |
| 116 | + } |
| 117 | + |
| 118 | + /** |
| 119 | + * @return \PHPUnit_Framework_MockObject_MockObject|SpoolProducer |
| 120 | + */ |
| 121 | + private function createSpoolProducerMock() |
| 122 | + { |
| 123 | + return $this->createMock(SpoolProducer::class); |
| 124 | + } |
| 125 | +} |
0 commit comments