You are here

public function ClientsTest::testThatDeleteRequestIsFormedProperly in Auth0 Single Sign On 8.2

Throws

\Exception

File

vendor/auth0/auth0-php/tests/API/Management/ClientsTest.php, line 116

Class

ClientsTest
Class ClientsTest

Namespace

Auth0\Tests\API\Management

Code

public function testThatDeleteRequestIsFormedProperly() {
  $api = new MockManagementApi([
    new Response(200, self::$headers),
  ]);
  $api
    ->call()
    ->clients()
    ->delete('__test_id__');
  $this
    ->assertEquals('DELETE', $api
    ->getHistoryMethod());
  $this
    ->assertEquals('https://api.test.local/api/v2/clients/__test_id__', $api
    ->getHistoryUrl());
  $headers = $api
    ->getHistoryHeaders();
  $this
    ->assertEquals('Bearer __api_token__', $headers['Authorization'][0]);
  $this
    ->assertEquals(self::$expectedTelemetry, $headers['Auth0-Client'][0]);
}