Viewing file: IdentityTest.php (3.66 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Srmklive\PayPal\Tests\Unit\Client;
use GuzzleHttp\Utils; use PHPUnit\Framework\TestCase; use Srmklive\PayPal\Tests\MockClientClasses; use Srmklive\PayPal\Tests\MockRequestPayloads; use Srmklive\PayPal\Tests\MockResponsePayloads;
class IdentityTest extends TestCase { use MockClientClasses; use MockRequestPayloads; use MockResponsePayloads;
/** @test */ public function it_can_user_profile_details() { $expectedResponse = $this->mockShowProfileInfoResponse();
$expectedEndpoint = 'https://api-m.sandbox.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1'; $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_create_merchant_applications() { $expectedResponse = $this->mockCreateMerchantApplicationResponse();
$expectedEndpoint = 'https://api-m.sandbox.paypal.com/v1/identity/applications'; $expectedParams = [ 'headers' => [ 'Accept' => 'application/json', 'Accept-Language' => 'en_US', 'Authorization' => 'Bearer some-token', ], 'json' => $this->mockCreateMerchantApplicationParams(), ];
$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_set_account_properties() { $expectedResponse = '';
$params = $this->mockSetAccountPropertiesParams(); $params['account_property'] = 'BRAINTREE_MERCHANT';
$expectedEndpoint = 'https://api-m.sandbox.paypal.com/v1/identity/account-settings'; $expectedParams = [ 'headers' => [ 'Accept' => 'application/json', 'Accept-Language' => 'en_US', 'Authorization' => 'Bearer some-token', ], 'json' => $params, ];
$mockHttpClient = $this->mock_http_request(Utils::jsonEncode($expectedResponse), $expectedEndpoint, $expectedParams, 'post');
$this->assertEquals($expectedResponse, Utils::jsonDecode($mockHttpClient->post($expectedEndpoint, $expectedParams)->getBody())); }
/** @test */ public function it_can_disable_account_properties() { $expectedResponse = '';
$params = [ 'account_property' => 'BRAINTREE_MERCHANT', ];
$expectedEndpoint = 'https://api-m.sandbox.paypal.com/v1/identity/account-settings/deactivate'; $expectedParams = [ 'headers' => [ 'Accept' => 'application/json', 'Accept-Language' => 'en_US', 'Authorization' => 'Bearer some-token', ], 'json' => $params, ];
$mockHttpClient = $this->mock_http_request(Utils::jsonEncode($expectedResponse), $expectedEndpoint, $expectedParams, 'post');
$this->assertEquals($expectedResponse, Utils::jsonDecode($mockHttpClient->post($expectedEndpoint, $expectedParams)->getBody())); } }
|