You are here

trait RequestHelperTrait in Simple OAuth (OAuth2) & OpenID Connect 5.x

Same name and namespace in other branches
  1. 8.4 tests/src/Functional/RequestHelperTrait.php \Drupal\Tests\simple_oauth\Functional\RequestHelperTrait
  2. 8.2 tests/src/Functional/RequestHelperTrait.php \Drupal\Tests\simple_oauth\Functional\RequestHelperTrait
  3. 8.3 tests/src/Functional/RequestHelperTrait.php \Drupal\Tests\simple_oauth\Functional\RequestHelperTrait

Hierarchy

File

tests/src/Functional/RequestHelperTrait.php, line 11

Namespace

Drupal\Tests\simple_oauth\Functional
View source
trait RequestHelperTrait {

  /**
   * POST a request.
   *
   * The base methods do not provide a non-form submission POST method.
   *
   * @see https://www.drupal.org/project/drupal/issues/2908589#comment-12258839
   *
   * @param \Drupal\Core\Url $url
   *   The URL.
   * @param array $data
   *   The data to send.
   * @param array $options
   *   Optional options to pass to client.
   *
   * @return \Psr\Http\Message\ResponseInterface
   *   The response.
   */
  protected function post(Url $url, array $data, array $options = []) {
    $post_url = $this
      ->getAbsoluteUrl($url
      ->toString());
    $session = $this
      ->getSession();
    $session
      ->setCookie('SIMPLETEST_USER_AGENT', drupal_generate_test_ua($this->databasePrefix));
    return $this
      ->getHttpClient()
      ->request('POST', $post_url, [
      'form_params' => $data,
      'http_errors' => FALSE,
    ] + $options);
  }

  /**
   * GET a resource, with options.
   *
   * @param \Drupal\Core\Url $url
   * @param array $options
   *
   * @return mixed
   */
  protected function get(Url $url, $options = []) {
    $options += [
      RequestOptions::HTTP_ERRORS => FALSE,
    ];
    $session = $this
      ->getSession();
    $get_url = $this
      ->getAbsoluteUrl($url
      ->toString());
    $session
      ->setCookie('SIMPLETEST_USER_AGENT', drupal_generate_test_ua($this->databasePrefix));
    return $this
      ->getHttpClient()
      ->get($get_url, $options);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
RequestHelperTrait::get protected function GET a resource, with options.
RequestHelperTrait::post protected function POST a request.