/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Service
/
Upload File
HOME
<?php namespace Stripe\Service; /** * @internal * @covers \Stripe\Service\ProductService */ final class ProductServiceTest extends \Stripe\TestCase { use \Stripe\TestHelper; const TEST_RESOURCE_ID = 'prod_123'; /** @var \Stripe\StripeClient */ private $client; /** @var ProductService */ private $service; /** * @before */ protected function setUpService() { $this->client = new \Stripe\StripeClient(['api_key' => 'sk_test_123', 'api_base' => MOCK_URL]); $this->service = new ProductService($this->client); } public function testAll() { $this->expectsRequest( 'get', '/v1/products' ); $resources = $this->service->all(); static::compatAssertIsArray($resources->data); static::assertInstanceOf(\Stripe\Product::class, $resources->data[0]); } public function testCreate() { $this->expectsRequest( 'post', '/v1/products' ); $resource = $this->service->create([ 'name' => 'name', ]); static::assertInstanceOf(\Stripe\Product::class, $resource); } public function testDelete() { $this->expectsRequest( 'delete', '/v1/products/' . self::TEST_RESOURCE_ID ); $resource = $this->service->delete(self::TEST_RESOURCE_ID); static::assertInstanceOf(\Stripe\Product::class, $resource); } public function testRetrieve() { $this->expectsRequest( 'get', '/v1/products/' . self::TEST_RESOURCE_ID ); $resource = $this->service->retrieve(self::TEST_RESOURCE_ID); static::assertInstanceOf(\Stripe\Product::class, $resource); } public function testUpdate() { $this->expectsRequest( 'post', '/v1/products/' . self::TEST_RESOURCE_ID ); $resource = $this->service->update(self::TEST_RESOURCE_ID, [ 'metadata' => ['key' => 'value'], ]); static::assertInstanceOf(\Stripe\Product::class, $resource); } }