134 lines
5.0 KiB
PHP
134 lines
5.0 KiB
PHP
<?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 WebHooksTest extends TestCase
|
|
{
|
|
use MockClientClasses;
|
|
use MockRequestPayloads;
|
|
use MockResponsePayloads;
|
|
|
|
#[Test]
|
|
public function it_can_create_a_web_hook(): void
|
|
{
|
|
$expectedResponse = $this->mockCreateWebHookResponse();
|
|
|
|
$expectedEndpoint = 'https://api-m.sandbox.paypal.com/v1/notifications/webhooks';
|
|
$expectedParams = [
|
|
'headers' => [
|
|
'Accept' => 'application/json',
|
|
'Accept-Language' => 'en_US',
|
|
'Authorization' => 'Bearer some-token',
|
|
],
|
|
'json' => $this->mockCreateWebHookParams(),
|
|
];
|
|
|
|
$mockHttpClient = $this->mock_http_request(Utils::jsonEncode($expectedResponse), $expectedEndpoint, $expectedParams, 'post');
|
|
|
|
$this->assertEquals($expectedResponse, Utils::jsonDecode($mockHttpClient->post($expectedEndpoint, $expectedParams)->getBody(), true));
|
|
}
|
|
|
|
#[Test]
|
|
public function it_can_list_web_hooks(): void
|
|
{
|
|
$expectedResponse = $this->mockListWebHookResponse();
|
|
|
|
$expectedEndpoint = 'https://api-m.sandbox.paypal.com/v1/notifications/webhooks';
|
|
$expectedParams = [
|
|
'headers' => [
|
|
'Accept' => 'application/json',
|
|
'Accept-Language' => 'en_US',
|
|
'Authorization' => 'Bearer some-token',
|
|
],
|
|
];
|
|
|
|
$mockHttpClient = $this->mock_http_request(Utils::jsonEncode($expectedResponse), $expectedEndpoint, $expectedParams, 'get');
|
|
|
|
$this->assertEquals($expectedResponse, Utils::jsonDecode($mockHttpClient->get($expectedEndpoint, $expectedParams)->getBody(), true));
|
|
}
|
|
|
|
#[Test]
|
|
public function it_can_delete_a_web_hook(): void
|
|
{
|
|
$expectedResponse = '';
|
|
|
|
$expectedEndpoint = 'https://api-m.sandbox.paypal.com/v1/notifications/webhooks/5GP028458E2496506';
|
|
$expectedParams = [
|
|
'headers' => [
|
|
'Accept' => 'application/json',
|
|
'Accept-Language' => 'en_US',
|
|
'Authorization' => 'Bearer some-token',
|
|
],
|
|
];
|
|
|
|
$mockHttpClient = $this->mock_http_request(Utils::jsonEncode($expectedResponse), $expectedEndpoint, $expectedParams, 'delete');
|
|
|
|
$this->assertEquals($expectedResponse, Utils::jsonDecode($mockHttpClient->delete($expectedEndpoint, $expectedParams)->getBody(), true));
|
|
}
|
|
|
|
#[Test]
|
|
public function it_can_update_a_web_hook(): void
|
|
{
|
|
$expectedResponse = $this->mockUpdateWebHookResponse();
|
|
|
|
$expectedEndpoint = 'https://api-m.sandbox.paypal.com/v1/notifications/webhooks/0EH40505U7160970P';
|
|
$expectedParams = [
|
|
'headers' => [
|
|
'Accept' => 'application/json',
|
|
'Accept-Language' => 'en_US',
|
|
'Authorization' => 'Bearer some-token',
|
|
],
|
|
'json' => $this->mockUpdateWebHookParams(),
|
|
];
|
|
|
|
$mockHttpClient = $this->mock_http_request(Utils::jsonEncode($expectedResponse), $expectedEndpoint, $expectedParams, 'patch');
|
|
|
|
$this->assertEquals($expectedResponse, Utils::jsonDecode($mockHttpClient->patch($expectedEndpoint, $expectedParams)->getBody(), true));
|
|
}
|
|
|
|
#[Test]
|
|
public function it_can_show_details_for_a_web_hook(): void
|
|
{
|
|
$expectedResponse = $this->mockGetWebHookResponse();
|
|
|
|
$expectedEndpoint = 'https://api-m.sandbox.paypal.com/v1/notifications/webhooks/0EH40505U7160970P';
|
|
$expectedParams = [
|
|
'headers' => [
|
|
'Accept' => 'application/json',
|
|
'Accept-Language' => 'en_US',
|
|
'Authorization' => 'Bearer some-token',
|
|
],
|
|
];
|
|
|
|
$mockHttpClient = $this->mock_http_request(Utils::jsonEncode($expectedResponse), $expectedEndpoint, $expectedParams, 'get');
|
|
|
|
$this->assertEquals($expectedResponse, Utils::jsonDecode($mockHttpClient->get($expectedEndpoint, $expectedParams)->getBody(), true));
|
|
}
|
|
|
|
#[Test]
|
|
public function it_can_list_web_hooks_events(): void
|
|
{
|
|
$expectedResponse = $this->mockListWebHookEventsResponse();
|
|
|
|
$expectedEndpoint = 'https://api-m.sandbox.paypal.com/v1/notifications/webhooks/0EH40505U7160970P';
|
|
$expectedParams = [
|
|
'headers' => [
|
|
'Accept' => 'application/json',
|
|
'Accept-Language' => 'en_US',
|
|
'Authorization' => 'Bearer some-token',
|
|
],
|
|
];
|
|
|
|
$mockHttpClient = $this->mock_http_request(Utils::jsonEncode($expectedResponse), $expectedEndpoint, $expectedParams, 'get');
|
|
|
|
$this->assertEquals($expectedResponse, Utils::jsonDecode($mockHttpClient->get($expectedEndpoint, $expectedParams)->getBody(), true));
|
|
}
|
|
}
|