| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- namespace Feature;
- namespace Srmklive\PayPal\Tests\Feature;
- use Carbon\Carbon;
- use PHPUnit\Framework\Attributes\Test;
- use PHPUnit\Framework\TestCase;
- use Srmklive\PayPal\Services\PayPal as PayPalClient;
- use Srmklive\PayPal\Tests\MockClientClasses;
- use Srmklive\PayPal\Tests\MockRequestPayloads;
- use Srmklive\PayPal\Tests\MockResponsePayloads;
- class AdapterExperienceContextTest extends TestCase
- {
- use MockClientClasses;
- use MockRequestPayloads;
- use MockResponsePayloads;
- /** @var string */
- protected static string $access_token = '';
- /** @var PayPalClient */
- protected PayPalClient $client;
- protected function setUp(): void
- {
- $this->client = new PayPalClient($this->getApiCredentials());
- $this->client->setClient(
- $this->mock_http_client(
- $this->mockAccessTokenResponse()
- )
- );
- $response = $this->client->getAccessToken();
- self::$access_token = $response['access_token'];
- parent::setUp();
- }
- #[Test]
- public function it_can_set_payment_experience_context_before_performing_api_call(): void
- {
- $this->client->setAccessToken([
- 'access_token' => self::$access_token,
- 'token_type' => 'Bearer',
- ]);
- $start_date = Carbon::now()->addDay()->toDateString();
- $this->client = $this->client->setReturnAndCancelUrl('https://example.com/paypal-success', 'https://example.com/paypal-cancel')
- ->setBrandName('Test Brand')
- ->addProductById('PROD-XYAB12ABSB7868434')
- ->addBillingPlanById('P-5ML4271244454362WXNWU5NQ');
- $this->client->setClient(
- $this->mock_http_client(
- $this->mockCreateSubscriptionResponse()
- )
- );
- $response = $this->client->setupSubscription('John Doe', 'john@example.com', $start_date);
- $this->assertNotEmpty($response);
- $this->assertArrayHasKey('id', $response);
- $this->assertArrayHasKey('plan_id', $response);
- }
- }
|