/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Service
/
BillingPortal
/
Upload File
HOME
<?php namespace Stripe\Service\BillingPortal; /** * @internal * @covers \Stripe\Service\BillingPortal\ConfigurationService */ final class ConfigurationServiceTest extends \Stripe\TestCase { use \Stripe\TestHelper; const TEST_RESOURCE_ID = 'bpc_123'; /** @var \Stripe\StripeClient */ private $client; /** @var ConfigurationService */ private $service; /** * @before */ protected function setUpService() { $this->client = new \Stripe\StripeClient(['api_key' => 'sk_test_123', 'api_base' => MOCK_URL]); $this->service = new ConfigurationService($this->client); } public function testCreate() { $this->expectsRequest( 'post', '/v1/billing_portal/configurations' ); $resource = $this->service->create([ 'business_profile' => [ 'terms_of_service_url' => 'https://example.com/tos', 'privacy_policy_url' => 'https://example.com/privacy', ], 'features' => [ 'customer_update' => [ 'allowed_updates' => ['address'], 'enabled' => true, ], ], ]); static::assertInstanceOf(\Stripe\BillingPortal\Configuration::class, $resource); } public function testUpdate() { $this->expectsRequest( 'post', '/v1/billing_portal/configurations/bpc_xyz' ); $resource = $this->service->update('bpc_xyz', [ 'active' => false, ]); static::assertInstanceOf(\Stripe\BillingPortal\Configuration::class, $resource); } public function testRetrieve() { $this->expectsRequest( 'get', '/v1/billing_portal/configurations/bpc_xyz' ); $resource = $this->service->retrieve('bpc_xyz'); static::assertInstanceOf(\Stripe\BillingPortal\Configuration::class, $resource); } public function testList() { $this->expectsRequest( 'get', '/v1/billing_portal/configurations' ); $resource = $this->service->all(); static::assertInstanceOf(\Stripe\BillingPortal\Configuration::class, $resource->data[0]); } }