/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Service
/
Identity
/
Upload File
HOME
<?php namespace Stripe\Service\Identity; /** * @internal * @covers \Stripe\Service\Identity\VerificationSessionService */ final class VerificationSessionServiceTest extends \Stripe\TestCase { use \Stripe\TestHelper; const TEST_RESOURCE_ID = 'vs_123'; /** @var \Stripe\StripeClient */ private $client; /** @var VerificationSessionService */ private $service; /** * @before */ protected function setUpService() { $this->client = new \Stripe\StripeClient(['api_key' => 'sk_test_123', 'api_base' => MOCK_URL]); $this->service = new VerificationSessionService($this->client); } public function testAll() { $this->expectsRequest( 'get', '/v1/identity/verification_sessions' ); $resources = $this->service->all(); static::compatAssertIsArray($resources->data); static::assertInstanceOf(\Stripe\Identity\VerificationSession::class, $resources->data[0]); } public function testCreate() { $this->expectsRequest( 'post', '/v1/identity/verification_sessions' ); $resource = $this->service->create([ 'type' => 'id_number', ]); static::assertInstanceOf(\Stripe\Identity\VerificationSession::class, $resource); } public function testUpdate() { $this->expectsRequest( 'post', '/v1/identity/verification_sessions/' . self::TEST_RESOURCE_ID ); $resource = $this->service->update(self::TEST_RESOURCE_ID, [ 'metadata' => ['key' => 'value'], ]); static::assertInstanceOf(\Stripe\Identity\VerificationSession::class, $resource); } public function testCancel() { $this->expectsRequest( 'post', '/v1/identity/verification_sessions/' . self::TEST_RESOURCE_ID . '/cancel' ); $resource = $this->service->cancel(self::TEST_RESOURCE_ID); static::assertInstanceOf(\Stripe\Identity\VerificationSession::class, $resource); } public function testRedact() { $this->expectsRequest( 'post', '/v1/identity/verification_sessions/' . self::TEST_RESOURCE_ID . '/redact' ); $resource = $this->service->redact(self::TEST_RESOURCE_ID); static::assertInstanceOf(\Stripe\Identity\VerificationSession::class, $resource); } }