You are here

public function UsersMockedTest::testThatAddRolesRequestIsFormattedProperly in Auth0 Single Sign On 8.2

Test that an add roles call is formatted properly.

Return value

void

Throws

\Exception Should not be thrown in this test.

File

vendor/auth0/auth0-php/tests/API/Management/UsersMockedTest.php, line 704

Class

UsersMockedTest
Class UsersMockedTest.

Namespace

Auth0\Tests\API\Management

Code

public function testThatAddRolesRequestIsFormattedProperly() {
  $api = new MockManagementApi([
    new Response(200, self::$headers),
  ]);
  $api
    ->call()
    ->users()
    ->addRoles('__test_user_id__', [
    '__test_role_id__',
  ]);
  $this
    ->assertEquals('POST', $api
    ->getHistoryMethod());
  $this
    ->assertEquals('https://api.test.local/api/v2/users/__test_user_id__/roles', $api
    ->getHistoryUrl());
  $headers = $api
    ->getHistoryHeaders();
  $this
    ->assertEquals('Bearer __api_token__', $headers['Authorization'][0]);
  $this
    ->assertEquals('application/json', $headers['Content-Type'][0]);
  $this
    ->assertEquals(self::$expectedTelemetry, $headers['Auth0-Client'][0]);
  $body = $api
    ->getHistoryBody();
  $this
    ->assertArrayHasKey('roles', $body);
  $this
    ->assertCount(1, $body['roles']);
  $this
    ->assertEquals('__test_role_id__', $body['roles'][0]);
}