/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Service
/
Terminal
/
Upload File
HOME
<?php namespace Stripe\Service\Terminal; /** * @internal * @covers \Stripe\Service\Terminal\LocationService */ final class LocationServiceTest extends \Stripe\TestCase { use \Stripe\TestHelper; const TEST_RESOURCE_ID = 'tml_123'; /** @var \Stripe\StripeClient */ private $client; /** @var LocationService */ private $service; /** * @before */ protected function setUpService() { $this->client = new \Stripe\StripeClient(['api_key' => 'sk_test_123', 'api_base' => MOCK_URL]); $this->service = new LocationService($this->client); } public function testAll() { $this->expectsRequest( 'get', '/v1/terminal/locations' ); $resources = $this->service->all(); static::compatAssertIsArray($resources->data); static::assertInstanceOf(\Stripe\Terminal\Location::class, $resources->data[0]); } public function testCreate() { $this->expectsRequest( 'post', '/v1/terminal/locations', [ 'display_name' => 'name', 'address' => [ 'line1' => 'line1', 'country' => 'US', 'state' => 'CA', 'postal_code' => '12345', 'city' => 'San Francisco', ], ] ); $resource = $this->service->create( [ 'display_name' => 'name', 'address' => [ 'line1' => 'line1', 'country' => 'US', 'state' => 'CA', 'postal_code' => '12345', 'city' => 'San Francisco', ], ] ); static::assertInstanceOf(\Stripe\Terminal\Location::class, $resource); } public function testDelete() { $this->expectsRequest( 'delete', '/v1/terminal/locations/' . self::TEST_RESOURCE_ID ); $resource = $this->service->delete(self::TEST_RESOURCE_ID); static::assertInstanceOf(\Stripe\Terminal\Location::class, $resource); } public function testRetrieve() { $this->expectsRequest( 'get', '/v1/terminal/locations/' . self::TEST_RESOURCE_ID ); $resource = $this->service->retrieve(self::TEST_RESOURCE_ID); static::assertInstanceOf(\Stripe\Terminal\Location::class, $resource); } public function testUpdate() { $this->expectsRequest( 'post', '/v1/terminal/locations/' . self::TEST_RESOURCE_ID ); $resource = $this->service->update(self::TEST_RESOURCE_ID, [ 'metadata' => ['key' => 'value'], ]); static::assertInstanceOf(\Stripe\Terminal\Location::class, $resource); } }