| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Srmklive\PayPal\Tests\Unit\Client;
- use GuzzleHttp\Utils;
- use PHPUnit\Framework\Attributes\Test;
- use PHPUnit\Framework\TestCase;
- use Srmklive\PayPal\Tests\MockClientClasses;
- use Srmklive\PayPal\Tests\MockRequestPayloads;
- use Srmklive\PayPal\Tests\MockResponsePayloads;
- class WebHooksVerificationTest extends TestCase
- {
- use MockClientClasses;
- use MockRequestPayloads;
- use MockResponsePayloads;
- #[Test]
- public function it_can_verify_web_hook_signature(): void
- {
- $expectedResponse = $this->mockVerifyWebHookSignatureResponse();
- $expectedEndpoint = 'https://api-m.sandbox.paypal.com/v1/notifications/webhooks-event-types';
- $expectedParams = [
- 'headers' => [
- 'Accept' => 'application/json',
- 'Accept-Language' => 'en_US',
- 'Authorization' => 'Bearer some-token',
- ],
- 'json' => $this->mockVerifyWebHookSignatureParams(),
- ];
- $mockHttpClient = $this->mock_http_request(Utils::jsonEncode($expectedResponse), $expectedEndpoint, $expectedParams, 'post');
- $this->assertEquals($expectedResponse, Utils::jsonDecode($mockHttpClient->post($expectedEndpoint, $expectedParams)->getBody(), true));
- }
- }
|