/**
  * @param string[] $query
  *
  * @return string|null
  */
 protected function getUri(array $query = [])
 {
     return !empty($query) ? PHPUnitUtility::getUri() . '?' . http_build_query($query, null, '&') : PHPUnitUtility::getUri();
 }
Пример #2
0
<?php

/*
 * This file is part of the Http Adapter package.
 *
 * (c) Eric GELOEN <*****@*****.**>
 *
 * For the full copyright and license information, please read the LICENSE
 * file that was distributed with this source code.
 */
require_once __DIR__ . '/../src/PHPUnitUtility.php';
use Http\Client\Tests\PHPUnitUtility;
$file = fopen(PHPUnitUtility::getFile(true, 'php-http-adapter.log'), 'c');
flock($file, LOCK_EX);
ftruncate($file, 0);
$serverError = isset($_GET['server_error']) ? $_GET['server_error'] : false;
$clientError = isset($_GET['client_error']) ? $_GET['client_error'] : false;
$delay = isset($_GET['delay']) ? $_GET['delay'] : 0;
$redirect = isset($_GET['redirect']) ? $_GET['redirect'] : false;
if ($serverError) {
    header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, 500);
}
if ($clientError) {
    header($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request', true, 400);
}
if ($delay > 0) {
    usleep($delay * 1000000);
}
if ($redirect) {
    header($_SERVER['SERVER_PROTOCOL'] . ' 302 Found', true, 302);
    header('Location: http://' . $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME']);