You are here

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

Test that an add permissions call throws an exception if the user ID is missing.

Return value

void

Throws

\Exception Should not be thrown in this test.

File

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

Class

UsersMockedTest
Class UsersMockedTest.

Namespace

Auth0\Tests\API\Management

Code

public function testThatAddPermissionsThrowsExceptionIfUserIdIsMissing() {
  $api = new MockManagementApi();
  try {
    $api
      ->call()
      ->users()
      ->addPermissions('', []);
    $caught_message = '';
  } catch (EmptyOrInvalidParameterException $e) {
    $caught_message = $e
      ->getMessage();
  }
  $this
    ->assertContains('Empty or invalid user_id', $caught_message);
}