You are here

public function GrantsTestMocked::testThatGrantsGetByClientId in Auth0 Single Sign On 8.2

Test that getByClientId adds a client_id to the request.

Return value

void

Throws

\Exception Unsuccessful HTTP call.

File

vendor/auth0/auth0-php/tests/API/Management/GrantsMockedTest.php, line 131

Class

GrantsTestMocked
Class GrantsTestMocked.

Namespace

Auth0\Tests\API\Management

Code

public function testThatGrantsGetByClientId() {
  $api = new MockManagementApi([
    new Response(200),
  ]);
  $api
    ->call()
    ->grants()
    ->getByClientId('__test_client_id__');
  $this
    ->assertStringStartsWith('https://api.test.local/api/v2/grants', $api
    ->getHistoryUrl());
  $this
    ->assertEquals('client_id=__test_client_id__', $api
    ->getHistoryQuery());
}