You are here

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

Test that getByAudience adds pagination parameters to the request.

Return value

void

Throws

\Exception Unsuccessful HTTP call.

File

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

Class

GrantsTestMocked
Class GrantsTestMocked.

Namespace

Auth0\Tests\API\Management

Code

public function testThatGrantsGetByAudiencePaginates() {
  $api = new MockManagementApi([
    new Response(200),
  ]);
  $api
    ->call()
    ->grants()
    ->getByAudience('__test_audience__', 1, 2);
  $this
    ->assertContains('page=1', $api
    ->getHistoryQuery());
  $this
    ->assertContains('per_page=2', $api
    ->getHistoryQuery());
}