assertFalse($task->canRetry(1, new \Exception())); $request = new Request('POST', 'http://localhost'); $this->assertTrue($task->canRetry(4, new ConnectException('', $request))); $this->assertTrue($task->canRetry(4, new ServerException('', $request))); $this->assertFalse($task->canRetry(5, new ConnectException('', $request))); $this->assertFalse($task->canRetry(5, new ServerException('', $request))); } public function testExecuteSuccessDelivery() { $this->response = new Response(); $task = $this->createMockedTask(); $task->type = 'account.edit'; $task->url = 'http://localhost:81/webhooks/ely'; $task->payloads = [ 'key' => 'value', 'another' => 'value', ]; $task->execute(mock(Queue::class)); /** @var Request $request */ $request = $this->historyContainer[0]['request']; $this->assertSame('http://localhost:81/webhooks/ely', (string)$request->getUri()); $this->assertStringStartsWith('Account-Ely-Hookshot/', $request->getHeaders()['User-Agent'][0]); $this->assertSame('account.edit', $request->getHeaders()['X-Ely-Accounts-Event'][0]); $this->assertSame('application/x-www-form-urlencoded', $request->getHeaders()['Content-Type'][0]); $this->assertArrayNotHasKey('X-Hub-Signature', $request->getHeaders()); $this->assertSame('key=value&another=value', (string)$request->getBody()); } public function testExecuteSuccessDeliveryWithSignature() { $this->response = new Response(); $task = $this->createMockedTask(); $task->type = 'account.edit'; $task->url = 'http://localhost:81/webhooks/ely'; $task->secret = 'secret'; $task->payloads = [ 'key' => 'value', 'another' => 'value', ]; $task->execute(mock(Queue::class)); /** @var Request $request */ $request = $this->historyContainer[0]['request']; $this->assertSame('http://localhost:81/webhooks/ely', (string)$request->getUri()); $this->assertStringStartsWith('Account-Ely-Hookshot/', $request->getHeaders()['User-Agent'][0]); $this->assertSame('account.edit', $request->getHeaders()['X-Ely-Accounts-Event'][0]); $this->assertSame('application/x-www-form-urlencoded', $request->getHeaders()['Content-Type'][0]); $this->assertSame('sha1=3c0b1eef564b2d3a5e9c0f2a8302b1b42b3d4784', $request->getHeaders()['X-Hub-Signature'][0]); $this->assertSame('key=value&another=value', (string)$request->getBody()); } public function testExecuteHandleClientException() { $this->response = new Response(403); $task = $this->createMockedTask(); $task->type = 'account.edit'; $task->url = 'http://localhost:81/webhooks/ely'; $task->secret = 'secret'; $task->payloads = [ 'key' => 'value', 'another' => 'value', ]; $task->execute(mock(Queue::class)); } public function testExecuteUnhandledException() { $this->expectException(ServerException::class); $this->response = new Response(502); $task = $this->createMockedTask(); $task->type = 'account.edit'; $task->url = 'http://localhost:81/webhooks/ely'; $task->secret = 'secret'; $task->payloads = [ 'key' => 'value', 'another' => 'value', ]; $task->execute(mock(Queue::class)); } private function createMockedTask(): DeliveryWebHook { $container = &$this->historyContainer; $response = $this->response; return new class($container, $response) extends DeliveryWebHook { private $historyContainer; private $response; public function __construct(array &$historyContainer, $response) { $this->historyContainer = &$historyContainer; $this->response = $response; } protected function createStack(): HandlerStack { $stack = parent::createStack(); $stack->setHandler(new MockHandler([$this->response])); $stack->push(Middleware::history($this->historyContainer)); return $stack; } }; } }