JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "PreApprovalPlanClientITTest.php"

Full Path: /var/www/laravel_filter/vendor/mercadopago/dx-php/tests/MercadoPago/Client/Integration/PreApprovalPlan/PreApprovalPlanClientITTest.php
File size: 4.44 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace MercadoPago\Tests\Client\Integration\PreApprovalPlan;

use MercadoPago\Client\Common\RequestOptions;
use MercadoPago\Client\PreApprovalPlan\PreApprovalPlanClient;
use MercadoPago\Exceptions\MPApiException;
use MercadoPago\MercadoPagoConfig;
use MercadoPago\Net\MPSearchRequest;
use PHPUnit\Framework\TestCase;

/**
 * PreApprovalPlanClient integration tests.
 */
final class PreApprovalPlanClientITTest extends TestCase
{
    public static function setUpBeforeClass(): void
    {
        MercadoPagoConfig::setAccessToken(getenv("ACCESS_TOKEN"));
    }

    public function testCreateSuccess(): void
    {
        $client = new PreApprovalPlanClient();
        $plan = $client->create($this->createRequest());
        $this->assertNotNull($plan->id);
    }

    public function testCreateWithRequestOptionsFailure(): void
    {
        $this->expectException(MPApiException::class);
        $client = new PreApprovalPlanClient();
        $request = $this->createRequest();
        $request_options = new RequestOptions();
        $request_options->setAccessToken("invalid_access_token");
        $client->create($request, $request_options);
    }

    public function testGetSuccess(): void
    {
        $client = new PreApprovalPlanClient();
        $created_plan = $client->create($this->createRequest());
        $plan = $client->get($created_plan->id);
        $this->assertNotNull($plan->id);
        $this->assertNotNull($plan->init_point);
    }

    public function testGetWithRequestOptionsFailure(): void
    {
        $this->expectException(MPApiException::class);
        $client = new PreApprovalPlanClient();
        $created_plan = $client->create($this->createRequest());
        $request_options = new RequestOptions();
        $request_options->setAccessToken("invalid_access_token");
        $client->get($created_plan->id, $request_options);
    }

    public function testUpdateSuccess(): void
    {
        $client = new PreApprovalPlanClient();
        $created_plan = $client->create($this->createRequest());
        $plan = $client->update($created_plan->id, $this->updateRequest());
        $this->assertSame("reason", $plan->reason);
    }

    public function testUpdateWithRequestOptionsFailure(): void
    {
        $this->expectException(MPApiException::class);
        $client = new PreApprovalPlanClient();
        $created_plan = $client->create($this->createRequest());
        $request_options = new RequestOptions();
        $request_options->setAccessToken("invalid_access_token");
        $client->update($created_plan->id, $this->updateRequest(), $request_options);
    }

    public function testSearchSuccess(): void
    {
        $client = new PreApprovalPlanClient();

        $request = $this->createRequest();
        $client->create($request);

        sleep(3);
        $search_request = new MPSearchRequest(1, 0, ["back_url" => "https://www.yoursite.com"]);
        $search_result = $client->search($search_request);
        $this->assertSame(1, $search_result->paging->limit);
        $this->assertSame(1, count($search_result->results));
        $this->assertNotNull($search_result->results[0]->id);
    }

    public function testSearchWithRequestOptionsFailure(): void
    {
        $this->expectException(MPApiException::class);
        $client = new PreApprovalPlanClient();
        $created_preapproval = $client->create($this->createRequest());
        $search_request = new MPSearchRequest(1, 0, ["id" => $created_preapproval->id]);
        $request_options = new RequestOptions();
        $request_options->setAccessToken("invalid_access_token");
        $client->search($search_request, $request_options);
    }

    private function createRequest(): array
    {
        $request = [
            "reason" => "Reason for the plan.",
            "auto_recurring" => array(
                "frequency" => 1,
                "frequency_type" => "months",
                "repetitions" => 12,
                "billing_day" => 10,
                "billing_day_proportional" => true,
                "free_trial" => array(
                    "frequency" => 1,
                    "frequency_type" => "months"
                ),
                "transaction_amount" => 10,
                "currency_id" => "BRL"
            ),
            "back_url" => "https://www.yoursite.com"
        ];
        return $request;
    }

    private function updateRequest(): array
    {
        $request = [
            "reason" => "reason",
        ];
        return $request;
    }
}